[
  {
    "path": ".dockerignore",
    "content": "Dockerfile\n.dockerignore\n.gitignore\n.git\n"
  },
  {
    "path": ".gitignore",
    "content": "target\n.cache\n.classpath\n.project\n.settings\nengmalt.linear.mco\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: scala\nscala:\n  - \"2.9.2\"\njdk:\n  - oraclejdk7\n  - openjdk7\n"
  },
  {
    "path": "Dockerfile",
    "content": "FROM maven:3.5.2-jdk-7\n\nWORKDIR /stage\n\nCOPY ./ /stage/\nRUN curl http://www.maltparser.org/mco/english_parser/engmalt.linear-1.7.mco > /stage/engmalt.linear-1.7.mco\nRUN mvn clean package\n\nCMD [\"java\", \"-Xmx512m\", \"-jar\", \"ollie-app-1.0.1-SNAPSHOT.jar\"]\n"
  },
  {
    "path": "LICENSE",
    "content": "Ollie Software License Agreement\n \nOllie Software\n(C) 2011-2012, University of Washington.  All rights reserved.\nUS patent number 7,877,343 and 12/970,155 patent pending\n \nThe University of Washington (UW), Professor Mausam, Michael Schmitz, Robert\nBart, and Stephen Soderland, (Developers) give permission for you and your\nlaboratory (University) to use Ollie. Ollie is a system that extracts\nrelational triples from text. Ollie is protected by a United States copyright\nand patents. The National Science Foundation supported work on Ollie. Under\nUniversity of Washington's patents 7,877,343 (issued) and 12/970,155 (patent\npending), the UW grants to you the non-exclusive right to use patent claims\npracticed by the University of Washington's Ollie software solely for\nnon-commercial purposes and as long as you comply with the terms of this Ollie\nSoftware License Agreement.  UW and the Developers allow you to copy and modify\nOllie for non-commercial purposes, and to distribute modifications through\nGitHub or directly to the University of Washington, on the following\nconditions:\n\n \n1.  Ollie is not used for any commercial purposes, or as part of a system\nwhich has commercial purposes.\n\n \n2.  Any software derived from Ollie must carry prominent notices stating that\nyou modified it along with the date modified.  The derivative must also carry\nprominent notices stating that it is released under this Ollie Software\nLicense Agreement\n \nIf you wish to obtain Ollie or to obtain any patent rights for any commercial\npurposes, you will need to contact the University of Washington to see if\nrights are available and to negotiate a commercial license and pay a fee. This\nincludes, but is not limited to, using Ollie to provide services to outside\nparties for a fee. In that case please contact:\n \n    UW Center for Commercialization \n    University of Washington\n    4311 11th Ave. NE,\n    Suite 500 Seattle, WA 98105-4608\n\n    Phone: (206) 543-3970\n    Email: license@u.washington.edu\n\n \n3. You retain in Ollie and any modifications to Ollie, the copyright,\ntrademark, patent or other notices pertaining to Ollie as provided by UW.\n\n \n4. You provide the Developers with feedback on the use of the Ollie software\nin your research, and that the Developers and UW are permitted to use any\ninformation you provide in making changes to the Ollie software. All bug\nreports and technical questions shall be sent to: afader@cs.washington.edu.\nModifications may be communicated through GitHub pull requests at:\n\n    https://github.com/knowitall/\n\n \n5. You acknowledge that the Developers, UW and its licensees may develop\nmodifications to Ollie that may be substantially similar to your modifications\nof Ollie, and that the Developers, UW and its licensees shall not be\nconstrained in any way by you in UW's or its licensees' use or management of\nsuch modifications. You acknowledge the right of the Developers and UW to\nprepare and publish modifications to Ollie that may be substantially similar\nor functionally equivalent to your modifications and improvements, and if you\nobtain patent protection for any modification or improvement to Ollie you\nagree not to allege or enjoin infringement of your patent by the Developers,\nthe UW or by any of UW's licensees obtaining modifications or improvements to\nOllie from the University of Washington or the Developers.\n\n \n6. If utilization of the Ollie software results in outcomes which will be\npublished, please specify the version of Ollie you used and cite the UW\nDevelopers.\n\n  @inproceedings{ollie-emnlp12,\n      author = {Mausam and Michael Schmitz and Robert Bart and \n          Stephen Soderland and Oren Etzioni},\n      title = {Open Language Learning for Information Extraction},\n      booktitle = {Proceedings of Conference on Empirical Methods in \n          Natural Language Processing and Computational Natural \n          Language Learning (EMNLP-CONLL)},\n      year = {2012}\n  }\n\n \n7. Any risk associated with using the Ollie software at your organization is\nwith you and your organization. Ollie is experimental in nature and is made\navailable as a research courtesy \"AS IS,\" without obligation by UW to provide\naccompanying services or support.\n\n \nUW AND THE AUTHORS EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES REGARDING THE \nSOFTWARE, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES \nPERTAINING TO MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.\n"
  },
  {
    "path": "README.md",
    "content": "# Ollie\n\nOllie is a program that automatically identifies and extracts binary\nrelationships from English sentences.  Ollie is designed for Web-scale\ninformation extraction, where target relations are not specified in advance.\n\nOllie is our second-generation information extraction system .  Whereas <a\nhref=\"http://reverb.cs.washington.edu/\">ReVerb</a> operates on flat sequences\nof tokens, Ollie works with the tree-like (graph with only small cycles)\nrepresentation using Stanford's compression of the dependencies.  This allows\nOllie to capture expression that ReVerb misses, such as long-range relations.\n\nOllie also captures context that modifies a binary relation.  Presently Ollie\nhandles attribution (He said/she believes) and enabling conditions (if X\nthen).\n\n## Quick Start\n\n### Docker\n\nYou can now run Ollie with a single Docker command.\n\n```\ndocker run -it schmmd/ollie:latest\n```\n\nTo configure Ollie, you can drop into a bash shell with `docker run -it schmmd/ollie:latest /bin/bash` \nand run Ollie from the command line.\n\n### Local Machine\n\nIf you want to run Ollie on a small amount of text without modifying the source\ncode, you can use an executable file that can be run from the command line.\nPlease note that Ollie was built using Scala 2.9 and so it requires Java 7.\nFollow these steps to get started:\n\n1.  Download the latest Ollie binary from\n    http://knowitall.cs.washington.edu/ollie/ollie-app-latest.jar.\n\n2.  Download the linear English MaltParser model (engmalt.linear-1.7.mco) from\n    http://www.maltparser.org/mco/english_parser/engmalt.html\n    and place it in the same directory as Ollie.\n\n3.  Run `java -Xmx512m -jar ollie-app-latest.jar yourfile.txt`.  The input file\n    should contain one sentence per line unless `--split` is specified.  Omit\n    the input file for an interactive console.\n\n## Examples\n\n### Enabling Condition\n\nAn enabling condition is a condition that needs to be met for the extraction to\nbe true.  Certain words demark an enabling condition, such as \"if\" and \"when\".\nOllie captures enabling conditions if they are present.\n\n    sentence: If I slept past noon, I'd be late for work.\n    extraction: (I; 'd be late for; work)[enabler=If I slept past noon]\n\n### Attribution\n\nAn attribution clause specifies an entity that asserted an extraction and a\nverb that specifies the expression.  Ollie captures attributions if they are\npresent.\n\n    sentence: Some people say Barack Obama was not born in the United States.\n    extraction: (Barack Obama; was not born in; the United States)[attrib=Some people say]\n\n    sentence: Early astronomers believe that the earth is the center of the universe.\n    extraction: (the earth; is the center of; the universe)[attrib=Early astronomers believe]\n\n### Relational noun\n\nSome relations are expressed without verbs.  Ollie can capture these as well as\nverb-mediated relations.\n\n    sentence: Microsoft co-founder Bill Gates spoke at a conference on Monday.\n    extraction: (Bill Gates; be co-founder of; Microsoft)\n\n\n### N-ary extractions\n\nOften times similar relations will specify different aspects of the same event.\nSince Ollie captures long-range relations it can capture N-ary extractions by\ncollapsing extractions where the relation phrase only differs by the\npreposition.\n\n    sentence: I learned that the 2012 Sasquatch music festival is scheduled for May 25th until May 28th.\n    extraction: (the 2012 Sasquatch music festival; is scheduled for; May 25th)\n    extraction: (the 2012 Sasquatch music festival; is scheduled until; May 28th)\n    nary: (the 2012 Sasquatch music festival; is scheduled; [for May 25th; to May 28th])\n\n## Building\n\nBuilding Ollie from source requires Apache Maven (<http://maven.apache.org>).\nFirst, clone or download the Ollie source from GitHub.  Run this command in the\ntop-level source folder to download the required dependencies, compile, and\ncreate a single jar file.\n\n    mvn clean package\n\nThe compiled class files will be put in the base directory.  The single\nexecutable jar file will be written to `ollie-app-VERSION.jar` where `VERSION`\nis the version number.\n\n## Command Line Interface\n\nOnce you have built Ollie, you can run it from the command line.\n\n    java -Xmx512m -jar ollie-app-VERSION.jar yourfile.txt\n\nOmit the input file for an interactive console.\n\nOllie takes sentences, one-per-line as input or splits text into sentences if\n`--split` is specified.  Run Ollie with `--usage` to see full usage.\n\nThe Ollie command line tool has a few output formats.  The output format is\nspecified by `--output-format` and a valid format:\n\n1. The `interactive` format that is meant to be easily human readable.\n2. The `tabbed` format is mean to be easily parsable.  A header will be output\n   as the first row to label the columns.\n3. `tabbedsingle` is similar to `tabbed` but the extraction is output as (arg1; relation;\n   arg2) in a single column.\n4. The `serialized` is meant to be fully deserialized into an\n   `OllieExtractionInstance` class.\n\n## Graphical Interface\n\nOllie works ontop of a subcomponent called OpenParse.  The distinction is\nlargely technical; OpenParse does not handle attribution and enabling condition\nand uses a coarser confidence metric.  You can use a GUI application to\nvisualize the OpenParse extractions in a parse tree.  To use it, you will need\nto have [graphviz](http://www.graphviz.org/) installed.  You can run the GUI\nwith:\n\n    java -Xms512M -Xmx1g -cp ollie-app-VERSION.jar edu.knowitall.openparse.OpenParseGui\n\nBy default, this application will look for graphviz's `dot` program at\n`/usr/bin/dot`.  You can specify a location with the `--graphviz` parameter.\n\nYou can try out your own models with `Options->Load Model...`.  To see an\nexample model, look at `openparse.model` in `src/main/resources`. Your model\nmay have one or more patterns in it.  If you want to see pattern matches\n(without node expansion) instead of triple extractions, you can choose to show\nthe raw match with `Options->Raw Matches`.  This will allow you to use patterns\nthat do not capture an arg1, rel, and arg2.\n\n## Parsers\n\nOllie is packaged to use Malt Parser, one of the fastest dependency parsers\navailable.  You will need the model file (`engmalt.linear-1.7.mco`) in the\ndirectory the application is run from or you will need to specify its location\nwith the `--malt-model` parameter.  Malt Parser models are available online.\n\n  http://www.maltparser.org/mco/english_parser/engmalt.html\n\nOllie works with any other parser in the `nlptools` project.  For example, it\nis easy to swap out Malt for Stanford's parser.  Stanford's parser is not a\npart of the Ollie distribution by default because of licensing conflicts, but\nthe Stanford parser was used as the execution parser for the results in the\npaper.  Malt Parser was used to bootstrap the patterns.  We are interested\nin Clear parser as an alternative, but it's not a trivial change because Clear\nuses a slightly different dependency representation.\n\n## Using Eclipse\n\nTo modify the Ollie source code in Eclipse, use the [M2Eclipse\nplugin](http://www.sonatype.org/m2eclipse/) along with\n[ScalaIDE](http://scala-ide.org/).  You can then import the project using \nthe following.\n\n    File > Import > Existing Maven Projects\n\n## Including Ollie as a Dependency\n\nAdd the following as a Maven dependency.\n\n    <groupId>edu.washington.cs.knowitall.ollie</groupId>\n    <artifactId>ollie-core_2.9.2</artifactId>\n    <version>[1.0.0, )</version>\n\nThe 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).\n\n`ollie-core` does not include a way to parse sentences.  You will need to use a\nparser supplied by the [nlptools](https://github.com/knowitall/nlptools)\nproject.  The source for for `ollie-app` is an excellent example of a project\nusing `ollie-core` as a dependency.  `ollie-app` supplies a parser from\n[nlptools](https://github.com/knowitall/nlptools).\n\nThere is an example project that uses Ollie in the `example` folder of the\nsource distribution.\n\n## Training the Confidence Function\n\nWhile Ollie comes with a trained confidence function, it is possible to retrain\nthe confidence function.  First, you need to run Ollie over a set of sentences\nand store the output in the *serialized* format.\n\n    echo \"Michael rolled down the hill.\" | java -jar ollie-app-1.0.0-SNAPSHOT.jar --serialized --output toannotate.tsv\n\nNext you need to annotate the extractions.  Modify the output file and\n**change** the first column to a binary annotation--`1` for correct and `0` for\nwrong.  Your final file will look similar to `ollie/data/training.tsv`.  Now\nrun the logistic regression trainer.\n\n    java -cp ollie-app-1.0.0-SNAPSHOT.jar edu.washington.cs.knowitall.ollie.confidence.train.TrainOllieConfidence toannotate.tsv\n\n## Concurrency\n\nWhen operating at web scale, parallelism is essential.  While the base Ollie\nextractor is immutable and thread safe, the parser may not be thread safe.  I\ndo not know whether Malt parser is thread safe.\n\n## FAQ\n\n1.  How fast is Ollie?\n\n    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).\n\n## Contact\n\nTo contact the UW about Ollie, email knowit-ollie@cs.washington.edu.\n\n## Citing Ollie\nIf you use Ollie in your academic work, please cite Ollie with the following \nBibTeX citation:\n\n    @inproceedings{ollie-emnlp12,\n      author = {Mausam and Michael Schmitz and Robert Bart and Stephen Soderland and Oren Etzioni},\n      title = {Open Language Learning for Information Extraction},\n      booktitle = {Proceedings of Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CONLL)},\n      year = {2012}\n    }\n"
  },
  {
    "path": "app/pom.xml",
    "content": "<?xml version=\"1.0\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <groupId>edu.washington.cs.knowitall.ollie</groupId>\n  <artifactId>ollie-app</artifactId>\n  <name>ollie-app</name>\n  <version>1.0.1-SNAPSHOT</version>\n  <parent>\n    <groupId>edu.washington.cs.knowitall</groupId>\n    <artifactId>knowitall-oss</artifactId>\n    <version>1.0.2</version>\n  </parent>\n  <properties>\n    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n    <nlptools.version>2.4.0</nlptools.version>\n  </properties>\n  <dependencies>\n    <dependency>\n      <groupId>org.scala-lang</groupId>\n      <artifactId>scala-swing</artifactId>\n      <version>2.9.2</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.ollie</groupId>\n      <artifactId>ollie-core_2.9.2</artifactId>\n      <version>1.0.2</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-parse-malt_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-parse-stanford_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-sentence-opennlp_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>junit</groupId>\n      <artifactId>junit</artifactId>\n      <version>4.11</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>batik</groupId>\n      <artifactId>batik-swing</artifactId>\n      <version>1.6-1</version>\n    </dependency>\n    <dependency>\n      <groupId>org.specs2</groupId>\n      <artifactId>specs2_2.9.2</artifactId>\n      <version>1.12.3</version>\n      <scope>test</scope>\n    </dependency>\n    <!-- Logging -->\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-classic</artifactId>\n      <version>1.0.9</version>\n    </dependency>\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-core</artifactId>\n      <version>1.0.9</version>\n    </dependency>\n  </dependencies>\n  <build>\n    <sourceDirectory>src/main/scala</sourceDirectory>\n    <testSourceDirectory>src/test/scala</testSourceDirectory>\n    <!-- build scala code -->\n    <plugins>\n      <plugin>\n        <groupId>net.alchim31.maven</groupId>\n        <artifactId>scala-maven-plugin</artifactId>\n        <version>3.1.1</version>\n        <configuration>\n          <args>\n            <arg>-deprecation</arg>\n            <arg>-unchecked</arg>\n          </args>\n        </configuration>\n        <executions>\n          <execution>\n            <goals>\n              <goal>compile</goal>\n              <goal>testCompile</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n      <plugin>\n        <artifactId>maven-assembly-plugin</artifactId>\n        <configuration>\n          <outputDirectory>${project.build.directory}/../..</outputDirectory>\n          <appendAssemblyId>false</appendAssemblyId>\n          <archive>\n            <manifest>\n              <mainClass>edu.knowitall.ollie.OllieCli</mainClass>\n            </manifest>\n          </archive>\n        </configuration>\n        <executions>\n          <execution>\n            <id>distro-assembly</id>\n            <phase>package</phase>\n            <goals>\n              <goal>single</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "app/src/main/resources/logback.xml",
    "content": "<?xml version=\"1.0\"?>\n<configuration>\n  <appender name=\"STDOUT\" class=\"ch.qos.logback.core.ConsoleAppender\">\n    <!-- encoders are assigned the type\n         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->\n    <encoder>\n      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>\n    </encoder>\n  </appender>\n  <root level=\"info\">\n    <appender-ref ref=\"STDOUT\"/>\n  </root>\n</configuration>\n"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/ollie/OllieCli.scala",
    "content": "package edu.knowitall.ollie;\n\nimport java.io.File\nimport java.io.PrintWriter\nimport java.io.OutputStreamWriter\nimport java.nio.charset.MalformedInputException\nimport scala.io.Source\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.ollie.confidence.OllieConfidenceFunction\nimport edu.knowitall.openparse.OpenParse\nimport edu.knowitall.tool.parse.MaltParser\nimport scopt.OptionParser\nimport edu.knowitall.tool.segment.Segmenter\nimport edu.knowitall.common.Timing\nimport edu.knowitall.tool.sentence.OpenNlpSentencer\nimport java.text.DecimalFormat\nimport java.net.URL\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.ollie.confidence.OllieFeatureSet\n\n/**\n  * An entry point to use Ollie on the command line.\n  */\nobject OllieCli {\n  /** A definition of command line arguments. */\n  abstract class Settings {\n    def inputFiles: Option[Seq[File]]\n    def outputFile: Option[File]\n\n    def encoding: String\n\n    def modelUrl: URL\n    def confidenceModelUrl: Option[URL]\n    def confidenceThreshold: Double\n    def openparseConfidenceThreshold: Double\n\n    def maltModelFile: Option[File]\n\n    def parseInput: Boolean\n    def splitInput: Boolean\n    def outputFormat: OutputFormat\n    def parallel: Boolean\n    def invincible: Boolean\n  }\n\n  sealed abstract class OutputFormat {\n    def header: Option[String]\n    def format(conf: Double, extr: OllieExtractionInstance): String\n  }\n  object OutputFormat {\n    val confFormatter = new DecimalFormat(\"#.###\")\n    def parse(format: String): OutputFormat = {\n      format.toLowerCase match {\n        case \"interactive\" => InteractiveFormat\n        case \"tabbed\" => TabbedFormat\n        case \"tabbedsingle\" => TabbedSingleColumnFormat\n        case \"serialized\" => SerializedFormat\n      }\n    }\n  }\n  case object InteractiveFormat extends OutputFormat {\n    def header = None\n    def format(conf: Double, inst: OllieExtractionInstance): String =\n      OutputFormat.confFormatter.format(conf) + \": \" + inst.extr\n  }\n  case object TabbedFormat extends OutputFormat {\n    def headers = Seq(\"confidence\", \"arg1\", \"rel\", \"arg2\", \"enabler\", \"attribution\", \"text\", \"pattern\", \"dependencies\")\n    def header = Some(headers.mkString(\"\\t\"))\n    def format(conf: Double, inst: OllieExtractionInstance): String =\n      Iterable(OutputFormat.confFormatter.format(conf),\n        inst.extr.arg1.text,\n        inst.extr.rel.text,\n        inst.extr.arg2.text,\n        inst.extr.enabler.map(_.text),\n        inst.extr.attribution.map(_.text),\n        inst.sent.text,\n        inst.pat,\n        inst.sent.serialize).mkString(\"\\t\")\n  }\n  case object TabbedSingleColumnFormat extends OutputFormat {\n    def headers = Seq(\"confidence\", \"extraction\", \"enabler\", \"attribution\", \"text\", \"pattern\", \"dependencies\")\n    def header = Some(headers.mkString(\"\\t\"))\n    def format(conf: Double, inst: OllieExtractionInstance): String =\n      Iterable(OutputFormat.confFormatter.format(conf),\n        inst.extr.toString,\n        inst.extr.enabler.map(_.text),\n        inst.extr.attribution.map(_.text),\n        inst.sent.text,\n        inst.pat,\n        inst.sent.serialize).mkString(\"\\t\")\n  }\n  case object SerializedFormat extends OutputFormat {\n    def header = None\n    def format(conf: Double, inst: OllieExtractionInstance): String =\n      OutputFormat.confFormatter.format(conf) + \"\\t\" + inst.extr.toString + \"\\t\" + inst.tabSerialize\n  }\n\n  /** Size to group for parallelism. */\n  private val CHUNK_SIZE = 10000\n\n  def main(args: Array[String]): Unit = {\n    object settings extends Settings {\n      var inputFiles: Option[Seq[File]] = None\n      var outputFile: Option[File] = None\n\n      var encoding: String = \"UTF-8\"\n\n      var modelUrl: URL = OpenParse.defaultModelUrl\n      var confidenceModelUrl: Option[URL] = Some(OllieConfidenceFunction.defaultModelUrl)\n      var confidenceThreshold: Double = 0.0\n      var openparseConfidenceThreshold: Double = 0.005\n\n      var maltModelFile: Option[File] = None\n\n      var parseInput: Boolean = true\n      var splitInput: Boolean = false\n      var outputFormat: OutputFormat = InteractiveFormat\n      var parallel: Boolean = false\n      var invincible: Boolean = false\n\n      var showUsage: Boolean = false\n    }\n\n    // define the argument parser\n    val argumentParser = new OptionParser(\"ollie\") {\n      arglistOpt(\"<file>\", \"input text file (one sentence per line unless --split is specified)\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + file)\n        settings.inputFiles = Some(settings.inputFiles.getOrElse(Vector.empty) :+ file)\n      })\n\n      opt(Some(\"o\"), \"output\", \"<file>\", \"output file (otherwise stdout)\", { path: String =>\n        settings.outputFile = Some(new File(path))\n      })\n\n      opt(Some(\"e\"), \"encoding\", \"<encoding>\", \"character encoding (UTF8 by default)\", { encoding: String =>\n        settings.encoding = encoding\n      })\n\n      opt(Some(\"m\"), \"model\", \"<file>\", \"model file\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.modelUrl = file.toURI.toURL\n      })\n\n      opt(Some(\"c\"), \"confidence model\", \"<file>\", \"model file\", { path: String =>\n        if (path equalsIgnoreCase \"None\") {\n          settings.confidenceModelUrl = None\n        } else {\n          val file = new File(path)\n          require(file.exists, \"file does not exist: \" + path)\n          settings.confidenceModelUrl = Some(file.toURI.toURL)\n        }\n      })\n\n      opt(None, \"malt-model\", \"<file>\", \"malt model file\", { path: String =>\n        settings.maltModelFile = Some(new File(path))\n      })\n\n      opt(\"h\", \"help\", \"usage information\", { settings.showUsage = true })\n\n      doubleOpt(Some(\"t\"), \"threshold\", \"<double>\", \"confidence threshold for Ollie extractor\", { t: Double =>\n        settings.confidenceThreshold = t\n      })\n\n      doubleOpt(None, \"openparse-threshold\", \"<double>\", \"confidence threshold for OpenParse component\", { t: Double =>\n        settings.openparseConfidenceThreshold = t\n      })\n\n      opt(\"p\", \"parallel\", \"execute in parallel\", { settings.parallel = true })\n      opt(\"s\", \"split\", \"split text into sentences\", { settings.splitInput = true })\n      opt(\"dependencies\", \"input is serialized dependency graphs (don't parse)\", { settings.parseInput = false })\n      opt(\"output-format\", \"specify output format from {interactive, tabbed, tabbedsingle, serialized}\", { s: String => settings.outputFormat = OutputFormat.parse(s) })\n      opt(\"ignore-errors\", \"ignore errors\", { settings.invincible = true })\n      opt(\"usage\", \"this usage message\", { settings.showUsage = true })\n    }\n\n    if (argumentParser.parse(args)) {\n      require(!(settings.splitInput && !settings.parseInput), \"options 'split' and 'dependencies' are not compatible.\")\n      if (settings.showUsage) {\n        println()\n        println(\"Ollie takes sentences as input, one per line.\")\n        println(\"The response is \\\"confidence: extraction\\\", one extraction per line.\")\n        println(argumentParser.usage)\n      } else {\n        try {\n          run(settings)\n        }\n        catch {\n          case e: MalformedInputException =>\n            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\")\n            e.printStackTrace()\n        }\n      }\n    }\n  }\n\n  def run(settings: Settings) = {\n    System.err.println(\"Loading parser models... \")\n    val parser = Timing.timeThen {\n      if (settings.parseInput) {\n        settings.maltModelFile match {\n          case None => Some(new MaltParser())\n          case Some(file) => Some(new MaltParser(file))\n        }\n      } else None\n    } { ns =>\n      System.err.println(Timing.Seconds.format(ns))\n    }\n\n    System.err.print(\"Loading ollie models... \")\n    val ollieExtractor = Timing.timeThen {\n      val configuration =\n        new OpenParse.Configuration(\n          confidenceThreshold = settings.openparseConfidenceThreshold)\n\n      val openparse = OpenParse.fromModelUrl(settings.modelUrl, configuration)\n      new Ollie(openparse)\n    } { ns =>\n      System.err.println(Timing.Seconds.format(ns))\n    }\n\n    System.err.print(\"Loading ollie confidence function... \")\n    val confFunction = Timing.timeThen {\n      settings.confidenceModelUrl.map(url => OllieConfidenceFunction.fromUrl(OllieFeatureSet, url))\n    } { ns =>\n      System.err.println(Timing.Seconds.format(ns))\n    }\n\n    val sentencer = if (settings.splitInput) {\n      System.err.println(\"Prose input split by OpenNlpSentencer.\");\n      Some(new OpenNlpSentencer()) \n    } else {\n      if (settings.inputFiles.isDefined) {\n        System.err.println()\n        System.err.println(\"WARNING: Each line is expected to be a unique sentence.\")\n        System.err.println(\"If you want prose to be split into sentences, restart Ollie with --prose.\")\n      }\n      None\n    }\n\n    using(settings.outputFile match {\n      case Some(output) => new PrintWriter(output, settings.encoding)\n      case None => new PrintWriter(new OutputStreamWriter(System.out, settings.encoding))\n    }) { writer =>\n\n      // print headers for output\n      settings.outputFormat.header match {\n        case Some(header) => writer.println(header)\n        case None =>\n      }\n\n      // process a source and output extractions\n      def processSource(source: Source) {\n        val ns = Timing.time {\n          // print prompt if standard input\n          if (!settings.inputFiles.isDefined) {\n            System.out.print(\"> \")\n            System.out.flush()\n          }\n\n          val lines = parseLines(source.getLines, sentencer) filter (!_.isEmpty)\n          // group the lines so we can parallelize\n          val grouped = if (settings.parallel) lines.grouped(CHUNK_SIZE) else lines.map(Seq(_))\n          for (group <- grouped) {\n\n            // potentially transform to a parallel collection\n            val sentences = if (settings.parallel) group.par else group\n            for (sentence <- sentences) {\n              try {\n                if (settings.outputFormat == InteractiveFormat) {\n                  writer.println(sentence)\n                  writer.flush()\n                }\n\n                // parse the sentence\n                val graph =\n                  parser.map(_.dependencyGraph(sentence)).getOrElse(DependencyGraph.deserialize(sentence))\n\n                // extract sentence and compute confidence\n                val extrs = ollieExtractor.extract(graph).iterator.map(extr => (confFunction.map(_.getConf(extr)).getOrElse(0.0), extr))\n\n                extrs match {\n                  case it if it.isEmpty && settings.outputFormat == InteractiveFormat => writer.println(\"No extractions found.\")\n                  case it if it.isEmpty =>\n                  case extrs => (extrs filter (_._1 >= settings.confidenceThreshold)).toList.sortBy(-_._1).foreach {\n                    case (conf, e) =>\n                      writer.println(settings.outputFormat.format(conf, e))\n                      writer.flush()\n                  }\n                }\n\n                if (settings.outputFormat == InteractiveFormat) {\n                  writer.println()\n                  writer.flush()\n                }\n              } catch {\n                case e: Exception if settings.invincible => e.printStackTrace\n              }\n            }\n\n            // print prompt if standard input\n            if (!settings.inputFiles.isDefined) {\n              System.out.print(\"> \")\n              System.out.flush()\n            }\n          }\n        }\n\n        System.err.println()\n        System.err.println(\"Completed in \" + Timing.Seconds.format(ns) + \" seconds\")\n      }\n\n      settings.inputFiles match {\n        // single file\n        case Some(Seq(file)) =>\n          System.err.println(\"\\nRunning extractor on \" + file + \"...\")\n          using (Source.fromFile(file, settings.encoding)) { source =>\n            processSource(source)\n          }\n\n        // multiple files\n        case Some(files) =>\n          System.err.println(\"\\nRunning extractor on multiple files...\")\n          val ns = Timing.time {\n            for ((file, i) <- files.iterator.zipWithIndex) {\n              System.err.println(\"Processing file \" + file + \" (\" + (i+1) + \"/\" + files.size + \")...\")\n              System.err.println()\n              using(Source.fromFile(file, settings.encoding)) { source =>\n                processSource(source)\n              }\n            }\n          }\n          System.err.println(\"All files completed in \" + Timing.Seconds.format(ns) + \" seconds\")\n\n        // standard input\n        case None =>\n          System.err.println(\"\\nRunning extractor on standard input...\")\n          processSource(Source.fromInputStream(System.in, settings.encoding))\n      }\n    }\n  }\n\n  def parseLines(lines: Iterator[String], sentencer: Option[Segmenter]) = {\n    sentencer match {\n      case None => lines\n      case Some(sentencer) => new SentenceIterator(sentencer, lines.buffered)\n    }\n  }\n}\n"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/ollie/SentenceIterator.scala",
    "content": "package edu.knowitall.ollie\n\nimport edu.knowitall.tool.segment.Segmenter\n\nclass SentenceIterator(sentencer: Segmenter, private var lines: BufferedIterator[String]) extends Iterator[String] {\n  var sentences: Iterator[String] = Iterator.empty\n      \n  lines.dropWhile(_.trim.isEmpty)\n\n  def nextSentences = {\n    val (paragraph, rest) = lines.span(!_.trim.isEmpty)\n    lines = rest.dropWhile(_.trim.isEmpty).buffered\n    sentencer.segmentTexts(paragraph.mkString(\" \")).iterator.buffered\n  }\n  \n  def hasNext: Boolean = {\n    if (sentences.hasNext) {\n      true\n    }\n    else if (!lines.hasNext) {\n      false\n    }\n    else {\n      sentences = nextSentences\n      sentences.hasNext\n    }\n  }\n  \n  def next: String = {\n    if (sentences.hasNext) {\n      sentences.next()\n    }\n    else {\n      sentences = nextSentences\n\t  sentences.next()\n    }\n  }\n}"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/OpenParseCli.scala",
    "content": "package edu.knowitall.openparse\n\nimport java.io.{PrintWriter, File}\nimport java.net.URL\n\nimport scala.collection.Set\nimport scala.io.Source\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.collection.immutable.graph.pattern.Match\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.Timing\nimport edu.knowitall.tool.parse.MaltParser\nimport edu.knowitall.openparse.OpenParse.validMatch\nimport edu.knowitall.openparse.extract.{TemplateExtractor, PatternExtractorType, PatternExtractor, GeneralExtractor, Extraction, DetailedExtraction}\nimport edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}\n\nimport scopt.OptionParser\n\nobject OpenParseCli {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  abstract class Settings {\n    def modelUrl: URL\n    def outputFile: Option[File]\n    def sentenceFile: File\n\n    def confidenceThreshold: Double\n    def expandArguments: Boolean\n    def verbose: Boolean\n\n    def parallel: Boolean\n    def invincible: Boolean\n  }\n\n  def main(args: Array[String]) {\n    object settings extends Settings {\n      var modelUrl: URL = OpenParse.defaultModelUrl\n      var outputFile: Option[File] = None\n      var sentenceFile: File = null\n\n      var confidenceThreshold = 0.0;\n      var expandArguments: Boolean = true\n      var verbose: Boolean = false\n\n      var parallel: Boolean = false\n      var invincible: Boolean = false\n    }\n\n    val parser = new OptionParser(\"openparse-cli\") {\n      arg(\"sentences\", \"sentence file\", { path: String => \n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.sentenceFile = file\n      })\n      opt(Some(\"m\"), \"model\", \"<file>\", \"model file\", { path: String => \n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.modelUrl = file.toURI.toURL \n      })\n      doubleOpt(Some(\"t\"), \"threshold\", \"<threshold>\", \"confident threshold for shown extractions\", { t: Double => settings.confidenceThreshold = t })\n      opt(\"o\", \"output\", \"output file (otherwise stdout)\", { path => settings.outputFile = Some(new File(path)) })\n\n      opt(\"x\", \"expand-arguments\", \"expand extraction arguments\", { settings.expandArguments = true })\n      opt(\"v\", \"verbose\", \"\", { settings.verbose = true })\n\n      opt(\"p\", \"parallel\", \"\", { settings.parallel = true })\n      opt(\"invincible\", \"\", { settings.invincible = true })\n    }\n\n    if (parser.parse(args)) {\n      logger.info(\"args: \" + args.mkString(\" \"))\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) {\n    val parser = new MaltParser\n    def parse(line: String): Option[DependencyGraph] = {\n      Some(parser.dependencyGraph(line))\n    }\n\n    val other = new OpenParse.Settings {\n      var modelUrl = settings.modelUrl\n      var outputFile = settings.outputFile\n      var sentenceFile = settings.sentenceFile \n      var confidenceThreshold = settings.confidenceThreshold \n      val duplicates = false\n      var expandArguments = settings.expandArguments \n      val showAll = false\n      var verbose = settings.verbose \n      val collapseVB = false\n      var parallel = settings.parallel \n      var invincible = settings.invincible \n    }\n\n    OpenParse.run(other, parse)\n  }\n}\n"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/OpenParseGui.scala",
    "content": "package edu.knowitall.openparse\n\nimport java.awt.Cursor\nimport java.awt.Dimension\nimport java.io.File\nimport java.net.URL\nimport scala.collection.SortedSet\nimport scala.io.Source\nimport scala.swing.Action\nimport scala.swing.BorderPanel\nimport scala.swing.BorderPanel.Position.Center\nimport scala.swing.BorderPanel.Position.East\nimport scala.swing.BorderPanel.Position.North\nimport scala.swing.BoxPanel\nimport scala.swing.Button\nimport scala.swing.ButtonGroup\nimport scala.swing.CheckMenuItem\nimport scala.swing.Component\nimport scala.swing.Dialog\nimport scala.swing.FileChooser\nimport scala.swing.FileChooser.Result\nimport scala.swing.Label\nimport scala.swing.ListView\nimport scala.swing.MainFrame\nimport scala.swing.Menu\nimport scala.swing.MenuBar\nimport scala.swing.MenuItem\nimport scala.swing.Orientation\nimport scala.swing.RadioMenuItem\nimport scala.swing.ScrollPane\nimport scala.swing.Separator\nimport scala.swing.SimpleSwingApplication\nimport scala.swing.Slider\nimport scala.swing.Swing\nimport scala.swing.TextField\nimport scala.swing.event.ButtonClicked\nimport scala.swing.event.SelectionChanged\nimport scala.swing.event.ValueChanged\nimport scala.util.control.Exception.catching\nimport org.apache.batik.swing.JSVGCanvas\nimport org.apache.batik.swing.svg.JSVGComponent\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.Timing.Seconds\nimport edu.knowitall.common.Timing.time\nimport edu.knowitall.openparse.eval.Score\nimport edu.knowitall.openparse.extract.Extraction\nimport edu.knowitall.openparse.extract.PatternExtractorType\nimport edu.knowitall.openparse.gui.Dot\nimport edu.knowitall.openparse.gui.ExtractionEntry\nimport edu.knowitall.openparse.gui.Parser\nimport edu.knowitall.openparse.gui.Parser.ParserEnum\nimport edu.knowitall.openparse.gui.Sentence\nimport edu.knowitall.tool.parse.DependencyParser\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException\nimport edu.knowitall.tool.parse.graph.DependencyGraph.deserialize\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport scopt.OptionParser\nimport edu.knowitall.ollie.DependencyGraphExtras\nimport scala.swing.event.KeyPressed\nimport scala.swing.event.Key\nimport scala.swing.event.KeyReleased\nimport edu.knowitall.openparse.eval.GoldSet\n\nobject OpenParseGui extends SimpleSwingApplication {\n  /** Which parser we are using. */\n  var parser: Option[(Parser.ParserEnum, DependencyParser)] = None\n\n  /** Which extractor we are using. */\n  var extractor: Option[OpenParse] = None\n\n  /** Which graph is presently being used. */\n  var current: Option[DependencyGraph] = None\n\n  /** A gold set of annotations. */\n  var gold: Map[String, Boolean] = Map.empty\n\n  /** Which sentences are associated with the slider bar. */\n  var sentences: Seq[Sentence] = Seq.empty\n\n  /** The present sentence index. */\n  var sentenceIndex = 0;\n\n  /** What to perform on a node click in the graph. */\n  var nodeClickEvent: String=>Unit = (nodeText: String) => Unit\n\n  object Settings {\n    var rawMatches = false\n    var graphvizFile: Option[File] = None // use PATH by default\n    var modelUrl: URL = OpenParse.defaultModelUrl\n    var sentenceFile: Option[File] = None\n    var confidenceThreshold: Double = 0.0\n    var goldFile: Option[File] = None\n\n    def configuration = new OpenParse.Configuration(confidenceThreshold = this.confidenceThreshold, collapseGraph = false)\n  }\n\n  object Elements {\n    val scrollBar = new Slider() {\n      orientation = Orientation.Horizontal\n      value = 0\n      min = 0\n      max = 0\n      majorTickSpacing = 1\n      enabled = false\n\n      def adjust() = {\n        if (sentences.size > 1) {\n          min = 0\n          max = sentences.size - 1\n          this.enabled = true\n        } else {\n          value = 0\n          min = 0\n          max = 0\n          this.enabled = false\n        }\n      }\n    }\n  }\n\n  override def main(args: Array[String]) = {\n    val parser = new OptionParser(\"openparse-gui\") {\n      opt(Some(\"i\"), \"input\", \"<file>\", \"input file\", { v: String => Settings.sentenceFile = Some(new File(v)) })\n      opt(Some(\"m\"), \"model\", \"<file>\", \"model file\", { v: String => Settings.modelUrl = new File(v).toURI.toURL })\n      doubleOpt(Some(\"t\"), \"threshold\", \"<threshold>\", \"confident threshold for shown extractions\", {\n        t: Double => Settings.confidenceThreshold = t\n      })\n      opt(Some(\"g\"), \"gold\", \"<gold set>\", \"gold set\", { v: String => Settings.goldFile = Some(new File(v)) })\n      opt(None, \"graphviz\", \"<file>\", \"path to graphviz\", { v: String => Settings.graphvizFile = Some(new File(v)) })\n    }\n\n    if (parser.parse(args)) {\n      extractor = Some(OpenParse.fromModelUrl(Settings.modelUrl, Settings.configuration))\n\n      Settings.goldFile.foreach { goldFile =>\n        gold = GoldSet.load(goldFile)\n      }\n\n      Settings.sentenceFile.foreach { sentenceFile => loadSentences(sentenceFile) }\n\n      super.main(args)\n    }\n  }\n\n  /** Helper to pop up a dialog to find a file. */\n  def choose(default: Option[File] = None): Option[File] = {\n    import FileChooser.Result\n\n    val chooser = new FileChooser\n    default.map(chooser.selectedFile = _)\n\n    chooser.showOpenDialog(null) match {\n      case Result.Approve => Option(chooser.selectedFile)\n      case Result.Cancel | Result.Error => None\n    }\n  }\n\n  def chooseSave(default: Option[File] = None): Option[File] = {\n    import FileChooser.Result\n\n    val chooser = new FileChooser\n    default.map(chooser.selectedFile = _)\n\n    chooser.showSaveDialog(null) match {\n      case Result.Approve => Option(chooser.selectedFile)\n      case Result.Cancel | Result.Error => None\n    }\n  }\n\n  def loadParser(parserType: ParserEnum): Unit =\n    parser = Some(Parser.load(parserType))\n\n  def loadParserIfNone(): Unit = parser match {\n    case Some(parser) => // nothing\n    case None => loadParser(Parser.default)\n  }\n\n  def readSentences(file: File): Array[Sentence] = {\n    import DependencyGraph._\n\n    // read the sentences\n    using (Source.fromFile(file)) { source =>\n      val lines = source.getLines.buffered\n\n      val parts = lines.head.split(\"\\t\")\n\n      // check if any part is deserializable\n      val graphIndex = parts.iterator.indexWhere { column =>\n        catching(classOf[SerializationException]).opt {\n          deserialize(column).collapse\n        }.isDefined\n      }\n\n      lines.map { line =>\n        val parts = line.split(\"\\t\")\n\n        if (graphIndex != -1) {\n          Sentence.Graph(deserialize(parts(graphIndex)).collapse)\n        }\n        else {\n          Sentence.Text(parts(0))\n        }\n      }.toArray\n    }\n  }\n\n  def loadSentences(): Boolean = {\n    choose(Settings.sentenceFile) map { file =>\n      Settings.sentenceFile = Some(file)\n      loadSentences(Settings.sentenceFile.get)\n    } match {\n      case Some(_) => true\n      case None => false\n    }\n  }\n\n  def loadSentences(file: File) = {\n    this.sentences = readSentences(file)\n\n    sentenceIndex = 0\n    Elements.scrollBar.value = 0\n    Elements.scrollBar.adjust()\n  }\n\n  def loadExtractor(extractorType: Option[PatternExtractorType]) = {\n    extractor = None\n  }\n\n  def top: MainFrame = new MainFrame {\n    title = \"OpenParse Explorer\"\n    minimumSize = new Dimension(400, 200)\n\n    // helper methods\n    def withCursor(c: java.awt.Cursor)(block: => Unit) =\n      try {\n        cursor = c\n        block\n      } finally {\n        cursor = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)\n      }\n\n    def withWaitCursor =\n      withCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)) _\n\n    def orReport(block: =>Unit) =\n      try {\n        block\n      }\n      catch {\n        case e => e.printStackTrace; Dialog.showMessage(message = e.toString)\n      }\n\n    def andReport(block: =>Unit) =\n      try {\n        block\n      }\n      catch {\n        case e => Dialog.showMessage(message = e.toString); throw e\n      }\n\n    // important ui elements\n    val button = new Button {\n      text = \"Process\"\n    }\n\n    val field = new TextField\n\n    val extractionList = new ListView[ExtractionEntry]() {\n      listenTo(keys)\n      reactions += {\n        case KeyPressed(_, Key.Equals, _, _) if this.selection.items.size > 0 =>\n          val selection = this.selection.items(0)\n          val item = selection.toString.dropWhile(_ != '(')\n          gold += item -> true\n          this.listData = this.listData.map {\n            case item if item == selection => item.annotate(true)\n            case other => other\n          }\n        case KeyReleased(_, Key.Minus, _, _) if this.selection.items.size > 0  =>\n          val selection = this.selection.items(0)\n          val item = selection.toString.dropWhile(_ != '(')\n          gold += item -> false\n          this.listData = this.listData.map {\n            case item if item == selection => item.annotate(false)\n            case other => other\n          }\n        case KeyReleased(_, Key.Space, _, _) if this.selection.items.size > 0  =>\n          val selection = this.selection.items(0)\n          val item = selection.toString.dropWhile(_ != '(')\n          gold += item -> false\n          this.listData = this.listData.map {\n            case item if item == selection => item.unannotate\n            case other => other\n          }\n      }\n    }\n\n    val label = new Label()\n\n    this.defaultButton = button\n\n    def updateDocument(dgraph: DependencyGraph, dot: String) {\n      val svg = Dot.dot2svg(Settings.graphvizFile, dot)\n      val doc = Dot.svg2xml(svg, nodeClickEvent)\n      canvas.setDocument(doc)\n      OpenParseGui.current = Some(dgraph)\n    }\n\n    def updateDocument(dgraph: DependencyGraph, extr: ExtractionEntry) {\n      val entry = extractionList.selection.items(0)\n      val dot = Dot.dotgraph(dgraph, entry)\n      updateDocument(dgraph, dot)\n    }\n\n    def updateDocument(dgraph: DependencyGraph, nodes: Set[DependencyNode]) {\n      val dot = Dot.dotgraph(dgraph, nodes)\n      updateDocument(dgraph, dot)\n    }\n\n    def updateDocument(dgraph: DependencyGraph) {\n      updateDocument(Sentence.Graph(dgraph))\n    }\n\n    def updateDocument(sentence: Sentence) {\n      field.text = sentence.toString\n\n      val (parseTime, dgraph) = time(parse(sentence))\n      val (extractTime, extractions) = time(extract(dgraph))\n\n      extractionList.listData = extractions\n\n      val dot = dgraph.dot(\"\\\\n\"+dgraph.text)\n      updateDocument(dgraph, dot)\n\n      label.text = sentence match {\n        case Sentence.Graph(_) => \"Input contains dependency graph.  Sentence will not be reparsed.\"\n        case Sentence.Text(_) =>\n          parser.map(\"Parsed using '\"+_._2.getClass.getSimpleName+\"' in \"+Seconds.format(parseTime)+\".  \").getOrElse {\n            \"No parsers selected.\"\n          } +\n          \"Extracted in \"+Seconds.format(extractTime)+\".\"\n      }\n    }\n\n    val canvas = new JSVGCanvas\n    canvas.setDocumentState(JSVGComponent.ALWAYS_DYNAMIC)\n\n    // menu definition\n    def menu = {\n      def parserMenuItem(parserType: ParserEnum) = {\n        new RadioMenuItem(parserType.toString) {\n          this.selected = Parser.default == parserType\n          action = Action(this.text) {\n            withWaitCursor {\n              andReport {\n                loadParser(parserType)\n                this.selected = true\n              }\n            }\n          }\n        }\n      }\n\n      def expandMenuItem(display: String, expand: (DependencyGraph,DependencyNode)=>SortedSet[DependencyNode]) = {\n        new RadioMenuItem(display) {\n          action = Action(display) {\n            nodeClickEvent = (nodeText: String) => {\n              current.map { dgraph =>\n                withWaitCursor {\n                  dgraph.nodes.find(_.toFullString.startsWith(nodeText)) match {\n                    case Some(node) => updateDocument(dgraph, expand(dgraph, node).toSet)\n                    case None => System.err.println(\"error: node not found: \" + nodeText)\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n\n      new MenuBar {\n        val parserOptions = Parser.values.map(parserMenuItem(_)).toList\n\n        val expandOptions =\n          List(expandMenuItem(\"Expand Argument\", (dgraph: DependencyGraph, node: DependencyNode)=>\n            Extraction.expandArgument(dgraph, node, Set())),\n          expandMenuItem(\"Expand Relation\", (dgraph: DependencyGraph, node: DependencyNode)=>\n            Extraction.expandRelation(dgraph, node, Set()).head.nodes))\n\n        val parserMutex = new ButtonGroup(parserOptions: _*)\n        val expandMutex = new ButtonGroup(expandOptions: _*)\n\n        contents += new Menu(\"File\") {\n          contents += new MenuItem(Action(\"Load gold set...\") {\n            withWaitCursor {\n              choose(Settings.goldFile) match {\n                case Some(file) =>\n                  gold = GoldSet.load(file)\n                  extractionList.listData = extractionList.listData.map(entry => entry.copy(correct = gold.get(entry.string)))\n                case None =>\n              }\n            }\n          })\n          contents += new MenuItem(Action(\"Save gold set...\") {\n            withWaitCursor {\n              chooseSave(Settings.goldFile) match {\n                case Some(file) => GoldSet.save(gold, file)\n                case None =>\n              }\n            }\n          })\n          contents += new Separator()\n          contents += new MenuItem(Action(\"Search Sentences...\") {\n            withWaitCursor {\n              val query = Dialog.showInput(null, message=\"Enter the sentence text to search for.\", title=\"Search Sentences\", Dialog.Message.Plain, Swing.EmptyIcon, Seq(), \"\")\n              query match {\n                case Some(query) =>\n                  val index = sentences.indexWhere {\n                    case Sentence.Text(s) => s.contains(query)\n                    case Sentence.Graph(g) => g.text.contains(query)\n                  }\n\n                  if (index >= 0) {\n                    sentenceIndex = index\n                    Elements.scrollBar.value = index\n                    updateDocument(sentences(index))\n                  }\n                case None => label.text = \"No results found.\"\n              }\n            }\n          })\n          contents += new MenuItem(Action(\"Next Extraction...\") {\n            withWaitCursor {\n              sentences.zipWithIndex.drop(sentenceIndex).foreach {\n                case (sentence, index) =>\n                  val dgraph = parse(sentence)\n                  val extractions = extract(dgraph)\n\n                  if (extractions.size > 0) {\n                    sentenceIndex = index\n                    Elements.scrollBar.value = index\n                    Elements.scrollBar.adjust()\n                    updateDocument(dgraph)\n                  }\n              }\n            }\n          })\n          contents += new Separator()\n          contents += new MenuItem(Action(\"Load Sentences...\") {\n            withWaitCursor {\n              if (loadSentences()) {\n                Elements.scrollBar.adjust()\n                sentences.headOption.map(updateDocument)\n              }\n            }\n          })\n          contents += new MenuItem(Action(\"Clear Sentences...\") {\n            sentences = Seq.empty\n            Elements.scrollBar.adjust\n          })\n          contents += new Separator()\n          contents += new MenuItem(Action(\"Exit\") { exit() })\n        }\n        contents += new Menu(\"Options\") {\n          contents += new CheckMenuItem(\"Raw Matches\") {\n            selected = Settings.rawMatches\n            action = Action(\"Raw Matches\") {\n              if (this.selected) {\n                Settings.rawMatches = true\n              } else {\n                Settings.rawMatches = false\n              }\n            }\n          }\n          contents += new MenuItem(Action(\"Switch Voice\") {\n            current.flatMap(dgraph => new DependencyGraphExtras(dgraph).switchVoice.headOption).foreach { dgraph =>\n              updateDocument(dgraph)\n            }\n          })\n          contents += new Menu(\"Parser\") {\n            contents ++= parserOptions\n          }\n          contents += new Menu(\"Click\") {\n            contents ++= expandOptions\n          }\n          contents += new Separator()\n          contents += new MenuItem(Action(\"Load default model\") {\n            extractor = Some(OpenParse.fromModelUrl(OpenParse.defaultModelUrl))\n          })\n          contents += new MenuItem(Action(\"Load model...\") {\n            choose(None) map { file =>\n              extractor = Some(OpenParse.fromModelFile(file))\n            }\n          })\n        }\n      }\n    }\n\n    // user interface\n    val ui = new BorderPanel() {\n      import BorderPanel.Position._\n\n      val panel = new BoxPanel(Orientation.Vertical) {\n        val input = new BorderPanel {\n          layout(field) = Center\n          layout(button) = East\n        }\n\n        contents += input\n        contents += Swing.VStrut(10)\n        contents += label\n        contents += Swing.VStrut(10)\n        contents += Elements.scrollBar\n        contents += Swing.VStrut(5)\n      }\n      layout(panel) = North\n\n      val display = new BoxPanel(Orientation.Horizontal) {\n        contents += new ScrollPane {\n          minimumSize = new Dimension(0, Int.MaxValue)\n          maximumSize = new Dimension(200, Int.MaxValue)\n          contents = extractionList\n        }\n        contents += new Component {\n          override lazy val peer = canvas\n        }\n      }\n      layout(display) = Center\n\n      listenTo(button)\n      listenTo(extractionList.selection)\n      listenTo(Elements.scrollBar)\n\n      reactions += {\n        case ButtonClicked(b) =>\n          withWaitCursor {\n            if (field.text.trim.length > 0) {\n              val sentence = Sentence(field.text)\n\n              // update state\n              if (sentences.isEmpty || sentence != sentences(sentenceIndex)) {\n                sentences = sentences.take(sentenceIndex + 1) :+ sentence\n              }\n              Elements.scrollBar.adjust\n              sentenceIndex = Elements.scrollBar.max\n              Elements.scrollBar.value = Elements.scrollBar.max\n\n              updateDocument(sentence)\n            }\n          }\n\n        case SelectionChanged(`extractionList`) => {\n          if (extractionList.listData.size > 0) {\n            if (extractionList.selection.items.size > 0) {\n              withWaitCursor {\n                current.map { dgraph =>\n                  updateDocument(dgraph, extractionList.selection.items(0))\n                }\n              }\n            }\n          }\n        }\n\n        case ValueChanged(Elements.scrollBar) => if (sentenceIndex != Elements.scrollBar.value) {\n          withWaitCursor {\n            if (sentences.indices.contains(Elements.scrollBar.value)) {\n              sentenceIndex = Elements.scrollBar.value\n              try {\n                updateDocument(sentences(sentenceIndex))\n              }\n              catch {\n                case e => e.printStackTrace\n              }\n            }\n          }\n        }\n      }\n    }\n\n    contents = ui\n    menuBar = menu\n  }\n\n  def parse(sentence: Sentence) = {\n    sentence match {\n      case Sentence.Text(text) =>\n        loadParserIfNone()\n        val dgraph = parser.get._2.dependencyGraph(text).collapse\n        extractor.map(_.simplifyGraph _) match {\n          case Some(f) => f(dgraph)\n          case None => dgraph\n        }\n      case Sentence.Graph(dgraph) =>\n        dgraph\n    }\n  }\n\n  def extract(dgraph: DependencyGraph) = {\n    extractor.map { extractor =>\n      if (!Settings.rawMatches) {\n        val extractions = for {\n          (conf, extr) <- extractor.extract(dgraph)\n        } yield {\n          new ExtractionEntry(conf, extr, parser.map(_._1).getOrElse(Parser.Deserialize), gold.get(extr.toString))\n        }\n\n        extractions.sortBy(_.confidence).reverse\n      } else {\n        val extractions = for {\n          ex <- extractor.extractors\n          m <- ex.pattern(dgraph.graph)\n        } yield {\n          ExtractionEntry(None, m, m.nodes.toSet, ex, parser.map(_._1).getOrElse(Parser.Deserialize), m.nodes.iterator.map(_.string).mkString(\" \"), None)\n        }\n\n        extractions.sortBy(_.confidence).reverse\n\n      }\n    }.getOrElse(Seq.empty)\n  }\n\n  def exit() {\n    System.exit(0)\n  }\n}\n"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/gui/Dot.scala",
    "content": "package edu.knowitall.openparse.gui\n\nimport edu.knowitall.openparse.extract.TemplateExtractor\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport java.io.IOException\nimport scala.swing.Dialog\nimport scala.io.Source\nimport java.io.InputStream\nimport java.io.OutputStream\nimport java.io.PrintWriter\nimport java.io.File\n\n/** Code pertaining to rendering and converting DOT graphs. */\nobject Dot {\n  def dot2svg(graphvizFile: Option[File], dotgraph: String) = {\n    import sys.process.ProcessIO\n\n    trait InputHandler[A] {\n      def handle(a: A)(input: OutputStream)\n    }\n\n    trait OutputHandler[A] {\n      def handle(output: InputStream)\n      def value: A\n    }\n\n    val errHandler = new OutputHandler[String] {\n      var value: String = null\n\n      def handle(out: InputStream) {\n        value = Source.fromInputStream(out).mkString\n        out.close()\n      }\n    }\n\n    val inputHandler = new InputHandler[String] {\n      def handle(a: String)(os: OutputStream) {\n        val pw = new PrintWriter(os)\n        pw write a\n        pw.close()\n      }\n    }\n\n    val outputHandler = new OutputHandler[String] {\n      var value: String = null\n\n      def handle(out: InputStream) {\n        value = Source.fromInputStream(out).mkString\n        out.close()\n      }\n    }\n    val io = new ProcessIO(inputHandler.handle(dotgraph), outputHandler.handle, errHandler.handle, false)\n\n    val process = graphvizFile match {\n      case Some(file) => sys.process.Process(file.getAbsolutePath, Seq(\"-T\", \"svg\"))\n      case None => sys.process.Process(\"dot\", Seq(\"-T\", \"svg\"))\n    }\n\n    val proc = try (process run io)\n    catch {\n      case e: IOException =>\n        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)\n        throw e\n    }\n\n    proc.exitValue() match {\n      case 0 => outputHandler.value\n      case x => sys.error(\"Dot exited with error code: \" + x + \" with output:\\n\" + errHandler.value)\n    }\n  }\n\n  def svg2xml(svgString: String, nodeClickEvent: String=>Unit) = {\n    import org.apache.batik.dom.svg.SVGDOMImplementation;\n    import org.apache.batik.util.XMLResourceDescriptor\n    import org.apache.batik.dom.svg.SAXSVGDocumentFactory\n\n    val uri = SVGDOMImplementation.SVG_NAMESPACE_URI;\n\n    val doc = using(new java.io.StringReader(svgString)) { reader =>\n      val parser = XMLResourceDescriptor.getXMLParserClassName();\n      val f = new SAXSVGDocumentFactory(parser);\n      f.createSVGDocument(uri, reader);\n    }\n\n    val gs = doc.getElementsByTagNameNS(uri, \"g\")\n    for (i <- 0 until gs.getLength) {\n      val g = gs.item(i)\n      val attributes = g.getAttributes\n      val clazz = attributes.getNamedItem(\"class\").getNodeValue\n\n      if (clazz == \"node\") {\n        val children = g.getChildNodes\n        for (j <- 0 until children.getLength) {\n          val child = children.item(j)\n          if (child.getNodeName == \"title\") {\n            val text = child.getFirstChild.getNodeValue\n\n            import org.w3c.dom.events._\n            g.asInstanceOf[EventTarget].addEventListener(\"click\",\n              new EventListener() {\n                def handleEvent(e: Event) { nodeClickEvent(text) }\n              },\n              true);\n          }\n        }\n      }\n    }\n\n    doc\n  }\n\n  def dotgraph(dgraph: DependencyGraph, nodes: Set[DependencyNode]) = {\n    val nodeStyle = nodes.map((_, \"style=filled,color=lightblue\"))\n    dgraph.dot(dgraph.text, nodeStyle.toMap, Map.empty)\n  }\n\n  def dotgraph(dgraph: DependencyGraph, extraction: ExtractionEntry) = {\n    def originalNodes(nodes: Iterable[DependencyNode]) = nodes.map { node =>\n      dgraph.nodes.find(_.indices == node.indices).get\n    }\n\n    val title = \"\\\\n\" + dgraph.text + \"\\\\n\" + extraction.toString + \"\\\\n\" + extraction.`match`.pattern.toStringF((s: String) => if (s.length < 60) s else s.take(20) + \"...\") +\n      (extraction.extractor match { case ex: TemplateExtractor => \"\\\\n\" + ex.template case _ => \"\" })\n\n    // nodes\n    val darkNodes = extraction.`match`.nodeGroups\n    val lightNodes = originalNodes(extraction.nodes).toSet -- originalNodes(darkNodes.map(_._2.node))\n    val filledNodes = (lightNodes zip Stream.continually(\"style=filled,fillcolor=lightgray\")) ++\n      (darkNodes.map { nodeGroup =>\n        val style = \"style=filled,fillcolor=\" + (nodeGroup._1 match {\n          case \"rel\" => \"salmon1\"\n          case \"arg1\" | \"arg2\" => \"lightblue\"\n          case \"slot0\" | \"slot1\" | \"slot2\" | \"slot3\" => \"seashell\"\n          case _ => \"yellow\"\n        })\n\n        (nodeGroup._2.node, style)\n      })\n\n    // edges\n    val solidEdges = extraction.edges.toSet\n\n    val nodeStyle = filledNodes\n    val edgeStyle = (solidEdges zip Stream.continually(\"style=filled\")) ++\n      ((dgraph.graph.edges.toSet -- solidEdges.toSet) zip Stream.continually(\"style=dotted,color=gray\"))\n\n    dgraph.dot(title, nodeStyle.toMap, edgeStyle.toMap)\n  }\n}"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/gui/ExtractionEntry.scala",
    "content": "package edu.knowitall.openparse.gui\n\nimport edu.knowitall.collection.immutable.graph.pattern.Match\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport edu.knowitall.openparse.extract.PatternExtractor\nimport edu.knowitall.openparse.extract.DetailedExtraction\n\n/**\n  * A more generic representation of an extraction.\n  *\n  * This is needed to allow for raw matches, which do\n  * not have an arg1, rel, etc.\n  */\ncase class ExtractionEntry(\n  confidence: Option[Double],\n  `match`: Match[DependencyNode],\n  nodes: Set[DependencyNode],\n  extractor: PatternExtractor,\n  parser: Parser.ParserEnum,\n  string: String = \"\",\n  correct: Option[Boolean]) {\n\n  /**\n    * Convenient constructor for instantiating from\n    * an OpenParse extraction.\n    */\n  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)\n\n  def edges = `match`.edges\n\n  def annotate(correct: Boolean) = this.copy(correct = Some(correct))\n  def unannotate = this.copy(correct = None)\n\n  private def goldString = {\n    correct match {\n      case Some(true) => \"+ \"\n      case Some(false) => \"- \"\n      case None => \"\"\n    }\n  }\n\n  override def toString = confidence.map(\"%1.4f:\" format _).getOrElse(\"\") + goldString + string\n}"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/gui/Parser.scala",
    "content": "package edu.knowitall.openparse.gui\n\nimport edu.knowitall.tool.parse.DependencyParser\nimport edu.knowitall.tool.parse.MaltParser\nimport edu.knowitall.tool.parse.graph.Dependencies\nimport edu.knowitall.tool.parse.graph.DependencyGraph\n\n/** An enumerator for parser options */\nobject Parser extends Enumeration {\n  type ParserEnum = Value\n\n  val Deserialize = Value(\"Deserialize\")\n  val Stanford = Value(\"Stanford\")\n  val MaltL = Value(\"Malt (Linear)\")\n  val MaltPoly = Value(\"Malt (Poly)\")\n\n  def default = MaltL\n\n  def load(parserType: ParserEnum): (ParserEnum, DependencyParser) = parserType match {\n    case Parser.Stanford => (parserType, new edu.knowitall.tool.parse.StanfordParser)\n    case Parser.MaltL => (parserType, new MaltParser())\n    case Parser.MaltPoly => (parserType, new MaltParser(modelUrl = new java.io.File(\"engmalt.poly-1.7.mco\").toURI.toURL))\n    case Parser.Deserialize => (parserType, new DependencyParser() {\n      override def dependencies(input: String) = Dependencies.deserialize(input)\n      override def dependencyGraph(input: String) = DependencyGraph.deserialize(input)\n    })\n  }\n}\n"
  },
  {
    "path": "app/src/main/scala/edu/knowitall/openparse/gui/Sentence.scala",
    "content": "package edu.knowitall.openparse.gui\n\nimport scala.util.control.Exception.catching\n\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException\nimport edu.knowitall.tool.parse.graph.DependencyGraph.deserialize\n\n/** A representation of the input sentence. */\nsealed abstract class Sentence\nobject Sentence {\n  case class Text(text: String) extends Sentence {\n    override def toString = text\n  }\n  case class Graph(dgraph: DependencyGraph) extends Sentence {\n    override def toString = dgraph.serialize\n  }\n\n  def apply(string: String): Sentence = {\n    import DependencyGraph._\n\n    catching(classOf[SerializationException]).opt {\n      deserialize(string)\n    } match {\n      case Some(dgraph) => Graph(dgraph)\n      case None => Text(string)\n    }\n  }\n}"
  },
  {
    "path": "app/src/test/resources/logback-test.xml",
    "content": "<?xml version=\"1.0\"?>\n<configuration>\n  <appender name=\"STDOUT\" class=\"ch.qos.logback.core.ConsoleAppender\">\n    <!-- encoders are assigned the type\n         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->\n    <encoder>\n      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>\n    </encoder>\n  </appender>\n  <root level=\"info\">\n    <appender-ref ref=\"STDOUT\"/>\n  </root>\n</configuration>\n"
  },
  {
    "path": "core/build.sbt",
    "content": "organization := \"edu.washington.cs.knowitall.ollie\"\n\nname := \"ollie-core\"\n\ndescription := \"Wrapper and implementation for extractors of chunked sentences.\"\n\nversion := \"1.0.4-SNAPSHOT\"\n\ncrossScalaVersions := Seq(\"2.9.2\", \"2.10.1\")\n\nscalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head }\n\nlibraryDependencies ++= Seq(\n    \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-core\" % \"2.4.1\",\n    \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-conf-breeze\" % \"2.4.1\",\n    \"edu.washington.cs.knowitall.nlptools\" %% \"nlptools-stem-morpha\" % \"2.4.1\",\n    \"org.slf4j\" % \"slf4j-api\" % \"1.7.2\",\n    \"org.scalaz\" %% \"scalaz-core\" % \"7.0.0\",\n    \"ch.qos.logback\" % \"logback-classic\" % \"1.0.9\" % \"test\",\n    \"ch.qos.logback\" % \"logback-core\" % \"1.0.9\" % \"test\",\n    \"junit\" % \"junit\" % \"4.11\" % \"test\",\n    \"org.specs2\" %% \"specs2\" % \"1.12.3\" % \"test\")\n\nscalacOptions ++= Seq(\"-unchecked\", \"-deprecation\")\n\nlicenses := Seq(\"Ollie Software License Agreement\" -> url(\"https://raw.github.com/knowitall/ollie/master/LICENSE\"))\n\nhomepage := Some(url(\"http://ollie.cs.washington.edu\"))\n\npublishMavenStyle := true\n\nresolvers += \"Sonatype OSS Snapshots\" at \"https://oss.sonatype.org/content/repositories/snapshots\"\n\npublishTo <<= version { (v: String) =>\n  val nexus = \"https://oss.sonatype.org/\"\n  if (v.trim.endsWith(\"SNAPSHOT\"))\n    Some(\"snapshots\" at nexus + \"content/repositories/snapshots\")\n  else\n    Some(\"releases\"  at nexus + \"service/local/staging/deploy/maven2\")\n}\n\npomExtra := (\n  <scm>\n    <url>https://github.com/knowitall/ollie</url>\n    <connection>scm:git://github.com/knowitall/ollie.git</connection>\n    <developerConnection>scm:git:git@github.com:knowitall/ollie.git</developerConnection>\n    <tag>HEAD</tag>\n  </scm>\n  <developers>\n   <developer>\n      <name>Michael Schmitz</name>\n    </developer>\n    <developer>\n      <name>Robert Bart</name>\n    </developer>\n  </developers>)\n"
  },
  {
    "path": "core/here.txt",
    "content": "score\tconf\top-conf\tyield\tprecision\textr\tenabler\tattrib\tsentence\tdependencies\tArg1 Cleanup feature\tArg1 comes after arg2\tArg2 comes before Rel\tArgs both start and end with nouns\tExtr has attribution?\tExtr has enabledBy?\tHyp words near rel\tIf before arg1 and no enabledBy?\tNoun-Verb-Noun in arg2\tOpenParse Confidence\tPrep in arg2?\tPrep right after arg2?\tPrep right before arg1?\tRel contains VBD\tRel contains VBG\tRel contains VBP\tRel ends with of\tRel head is a communication verb?\tRel starts with \"be\"?\tSentence starts with extr?\tThat before rel\tVacuous rel+arg2\tVerb after arg2?\n\t\t\t\t\t\t\t\t\t\t-1.9474\t-0.1342\t-0.4772\t0.1987\t0.3096\t0.6941\t-0.4802\t-2.1688\t-0.4579\t1.304\t0.5695\t-0.5616\t-0.2119\t0.6841\t-0.4981\t0.5545\t-0.2275\t-0.8676\t-0.5553\t0.3185\t-0.2083\t-1.8374\t0.2496\n1\t0.9446846123114957\t1.0\t0\t1.0\t(M and N phenotypes; Rather are exhibited by; heterozygotes)[enabler=since both molecules are present]\ttrue\tfalse\tRather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present .\tpreconj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9378010670485936\t1.0\t2\t1.0\t(The companies; are followed by; at least three analysts)\tfalse\tfalse\tThe companies are followed by at least three analysts , and had a minimum five-cent change in actual earnings per share .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9339431602264946\t1.0\t3\t1.0\t(he; was called back from; the loan)[enabler=CSKA qualified for the round of 16 of the UEFA Cup 2008]\ttrue\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.9323012325715606\t0.7345\t4\t1.0\t(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]\ttrue\tfalse\tAs 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.9304226589378597\t1.0\t5\t1.0\t(A collection of her art; was displayed by; supporters campaigning to release her)\tfalse\tfalse\tA collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9304226589378597\t1.0\t6\t1.0\t(Terry L. Haines; was elected to; the new position of vice president)\tfalse\tfalse\tTerry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9258278797037348\t1.0\t7\t1.0\t(he; was involved in; the building of the 145 m long)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.92215545568493\t1.0\t8\t1.0\t(The Dynix corporation; was founded in; 1983)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.92215545568493\t1.0\t9\t1.0\t(The song; was recorded in; 2003)\tfalse\tfalse\tThe song was recorded in 2003 , and was supposed to be included on her third album \" Still \" , eventually released under the title \" More \" .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.920853471440541\t1.0\t10\t1.0\t(Such fibers; are specialized in; ways that enable them to make use of a steady energy supply)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.9175510420737124\t0.3797\t10\t0.9090909090909091\t(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]\ttrue\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.9168556659675215\t0.9555\t11\t0.9166666666666666\t(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]\ttrue\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9123282402462873\t1.0\t12\t0.9230769230769231\t(Capillaries in the brain , heart , kidneys , and liver; are usually filled to; capacity)\tfalse\tfalse\tCapillaries 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9116540315027888\t1.0\t13\t0.9285714285714286\t(The incidence of malaria; was greatly diminished by; insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9066414837593882\t1.0\t14\t0.9333333333333333\t(Byrom; was born at; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9066414837593882\t1.0\t15\t0.9375\t(Guillermo Billinghurst; was overthrown on; February 4 , 1914)\tfalse\tfalse\tGuillermo 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9066414837593882\t1.0\t16\t0.9411764705882353\t(Junge; was originally drafted in; the 1999 amateur draft)\tfalse\tfalse\tJunge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9066414837593882\t1.0\t17\t0.9444444444444444\t(The Breitling watchmaking company; was founded in; Saint-Imier)\tfalse\tfalse\tThe Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9043904093256648\t0.7345\t18\t0.9473684210526315\t(Cordis; sold its pacemaker operations two years ago to; Telectronics Holding Ltd. of Australia)\tfalse\tfalse\tCordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9043904093256648\t0.7345\t19\t0.95\t(He; replaced Jonathan Groff in; the Broadway production of the musical Spring Awakening)\tfalse\tfalse\tHe replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9043904093256648\t0.7345\t20\t0.9523809523809523\t(He; replaced Jonathan Groff in; the lead role of Melchior Gabor)\tfalse\tfalse\tHe replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.9034960676137963\t0.7345\t21\t0.9545454545454546\t(Sony Columbia Acquisition Corp.; formed for; the Columbia deal)[attrib=a spokesman said]\tfalse\ttrue\tSony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.9029376545659042\t1.0\t22\t0.9565217391304348\t(The Dynix corporation; was formed by; the merger of the Sirsi and Dynix corporations)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.8982644762089621\t0.7345\t22\t0.9166666666666666\t(hybrid sterility; pseudoobscura results from gene interactions among; at least four loci)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8982644762089621\t0.7345\t23\t0.92\t(shareholder Max Grill of New York; charged Imperial , its top executives and directors with; breach of fiduciary duty)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8970518314603465\t0.7345\t24\t0.9230769230769231\t(the band; struggled without; the help of a booking agent)\tfalse\tfalse\tAs 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8953292670090802\t0.9555\t25\t0.9259259259259259\t(Cephalopods; are the only molluscs with; a closed circulatory system which the blood remains separate from fluid in the body cavity)\tfalse\tfalse\tCephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.9555\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.894287106087327\t1.0\t26\t0.9285714285714286\t(Guillermo Billinghurst; was overthrown in; a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado)\tfalse\tfalse\tGuillermo 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.894287106087327\t1.0\t27\t0.9310344827586207\t(Lowery; was elected in; a special election to fill the unexpired term of James Eagan)\tfalse\tfalse\tLowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8840751567640979\t1.0\t28\t0.9333333333333333\t(Denis C. Smith; was named to; the new post of vice president of world-wide advanced materials operations)\tfalse\tfalse\tDenis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8833999973995464\t0.3797\t29\t0.9354838709677419\t(it; completed; the previously announced purchase of Imperial Cup Corp.)[attrib=Federal Paper Board Co. said]\tfalse\ttrue\tFederal 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.8832630553504159\t1.0\t29\t0.90625\t(Denis C. Smith; was named for; this chemicals concern)\tfalse\tfalse\tDenis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.8832630553504159\t1.0\t29\t0.8787878787878788\t(He; was descended an old aristocratic family from Mecklenburg from; the B low family)\tfalse\tfalse\tHe was descended from the B low family , an old aristocratic family from Mecklenburg .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8832630553504159\t1.0\t30\t0.8823529411764706\t(She; was born in; Berkeley)\tfalse\tfalse\tShe was born April 3 , 1951 in Berkeley , California .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.8832630553504159\t1.0\t30\t0.8571428571428571\t(The Dynix corporation; was formed in; June 2005)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8790036637975921\t0.3797\t31\t0.8611111111111112\t(Researchers; placed; identical samples of organic material)\tfalse\tfalse\tResearchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.875969090413861\t1.0\t32\t0.8648648648648649\t(Drop Trio; was asked by; SugarHill Recording Studios)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.875969090413861\t1.0\t33\t0.868421052631579\t(the Australian Black Swan; was introduced as; an ornamental waterfowl)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8738004889069181\t0.7345\t34\t0.8717948717948718\t(Italy 's unemployment rate; rose to; 12 % of the labor force)\tfalse\tfalse\tItaly '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8730819698845458\t0.7345\t35\t0.875\t(Vader; got on; the ring apron to distract him)\tfalse\tfalse\tAs Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8730819698845458\t0.7345\t36\t0.8780487804878049\t(Lenin; dispatched Stalin to; the city of Tsaritsyn)\tfalse\tfalse\tIn May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8730819698845458\t0.7345\t37\t0.8809523809523809\t(he; tapped Connor to serve in; the office of the Texas Secretary of State)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8730819698845458\t0.7345\t38\t0.8837209302325582\t(he; received a Master of Arts from; Royal Military College of Canada)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8729267550576569\t0.7345\t39\t0.8863636363636364\t(He; came in; 1980)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8729267550576569\t0.7345\t40\t0.8888888888888888\t(He; died in; Washington)\tfalse\tfalse\tHe died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8729267550576569\t0.7345\t41\t0.8913043478260869\t(He; died on; April 10 , 1907)\tfalse\tfalse\tHe died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8729267550576569\t0.7345\t42\t0.8936170212765957\t(Italy 's unemployment rate; rose in; April)\tfalse\tfalse\tItaly '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8729267550576569\t0.7345\t43\t0.8958333333333334\t(The Skeleton King; later merged with; the demon)\tfalse\tfalse\tThe Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8729267550576569\t0.7345\t44\t0.8979591836734694\t(Turner; also starred in; the film)\tfalse\tfalse\tTurner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8714822869067644\t0.3797\t45\t0.9\t(researchers; had to carry out; several rounds of DNA cutting)\tfalse\tfalse\tWith such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8710640791017942\t1.0\t46\t0.9019607843137255\t(A collection of her art; was displayed at; an exhibition)\tfalse\tfalse\tA collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8710640791017942\t1.0\t47\t0.9038461538461539\t(The incidence of malaria; was greatly diminished in; the 1960s)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8671726583772422\t0.7345\t48\t0.9056603773584906\t(The board; expanded to; 17 seats)\tfalse\tfalse\tThe board expanded to 17 seats .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8642529189447961\t0.9555\t49\t0.9074074074074074\t(Lakitelek; is a large village in; the Southern Great Plain region of southern Hungary)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8642529189447961\t0.9555\t50\t0.9090909090909091\t(North Luffenham; is a village in; the East Midlands of England)\tfalse\tfalse\tNorth Luffenham is a village in Rutland , in the East Midlands of England .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8606381067049523\t1.0\t51\t0.9107142857142857\t(his birth; was born at; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.8606381067049523\t1.0\t51\t0.8947368421052632\t(SirsiDynix; was founded in; 1983)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.860181709202922\t1.0\t52\t0.896551724137931\t(he; was hosted by; an anti-Nazi Protestant family whose children had been required to join the Hitler Youth)\tfalse\tfalse\tVisiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth .\tdobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8600422350020404\t0.0577\t53\t0.8983050847457628\t(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]\ttrue\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0577\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.856815426256054\t0.7345\t54\t0.9\t(Coca-Cola Enterprises; blamed the lower volume on; its soft-drink prices which were about 3 % higher in the third quarter)\tfalse\tfalse\tCoca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.8566696173564037\t1.0\t54\t0.8852459016393442\t(The body of an arthropod; is completely covered an exoskeleton constructed from layers of protein by; the cuticle)\tfalse\tfalse\tThe body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8566696173564037\t1.0\t54\t0.8709677419354839\t(The body of an arthropod; is completely covered the polysaccharide chitin by; the cuticle)\tfalse\tfalse\tThe body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8566696173564037\t1.0\t54\t0.8571428571428571\t(The coldest temperature; be ever recorded in; the city)\tfalse\tfalse\tThe coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8550447583474959\t0.3797\t55\t0.859375\t(A temperate phage; called; lambda written with the Greek letter)\tfalse\tfalse\tA temperate phage called lambda , written with the Greek letter , is widely used in biological research .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8510550448671066\t1.0\t55\t0.8461538461538461\t(unreleased; was asked by; SugarHill Recording Studios)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8475390994633406\t0.3797\t56\t0.8484848484848485\t(he; led; the invasion of the Philippines)\tfalse\tfalse\tAs 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8472379362949907\t1.0\t57\t0.8507462686567164\t(SirsiDynix; was formed by; the merger of the Sirsi and Dynix corporations)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.847056652054492\t1.0\t58\t0.8529411764705882\t(Junge; was originally drafted by; the Los Angeles Dodgers)\tfalse\tfalse\tJunge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8462126651811251\t1.0\t59\t0.855072463768116\t(he; was registered as; a CSKA player)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8462126651811251\t1.0\t60\t0.8571428571428571\t(she; was kidnapped on; January 7 , 2006)\tfalse\tfalse\tCarroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8462126651811251\t1.0\t61\t0.8591549295774648\t(he; was hit by; Texas Rangers pitcher C.J. Wilson)\tfalse\tfalse\tHis season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8462126651811251\t1.0\t62\t0.8611111111111112\t(he; was traded for; Rickey Henderson , Bert Bradley , and cash)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8462126651811251\t1.0\t63\t0.863013698630137\t(SirsiDynix; was formed in; June 2005)\tfalse\tfalse\tThe Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8425716143188683\t0.7345\t64\t0.8648648648648649\t(Dominion Textile Inc. holders; adopted a shareholder-rights plan at; the annual meeting)\tfalse\tfalse\tDominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8405259213434341\t0.0416\t65\t0.8666666666666667\t(The certificates; have; an estimated average life of 1.8 years)\tfalse\tfalse\tThe certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8403453643089236\t1.0\t66\t0.868421052631579\t(The index which uses a base of 1981 as 100; was calculated at; 140.91 points)\tfalse\tfalse\tThe index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8403453643089236\t1.0\t67\t0.8701298701298701\t(The index which uses a base of 1981 as 100; was calculated from; 140.74)\tfalse\tfalse\tThe index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8393867143453748\t0.9555\t68\t0.8717948717948718\t(He; was a producer on; several Australian television series)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8349439109076757\t0.1473\t69\t0.8734177215189873\t(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]\ttrue\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.8343102124213516\t0.7345\t69\t0.8625\t(he; was during; his innings of 23)\tfalse\tfalse\tDhoni , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8332152564951584\t0.7345\t70\t0.8641975308641975\t(his family; moved to; northwestern Pennsylvania)\tfalse\tfalse\tBeecher 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8332152564951584\t0.7345\t71\t0.8658536585365854\t(he; was at; R.Premadasa Stadium)\tfalse\tfalse\tDhoni , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.8332152564951584\t0.7345\t71\t0.8554216867469879\t(prices; closed in; Zurich , Stockholm and Amsterdam)\tfalse\tfalse\tElsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8332152564951584\t0.7345\t72\t0.8571428571428571\t(government; operated Hutt Park Railway in; Petone)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8332152564951584\t0.7345\t73\t0.8588235294117647\t(he; completed the year-long course at; the Canadian Forces Command and Staff College)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8305035189003607\t1.0\t74\t0.8604651162790697\t(Five million shares; will be offered in; the U.S.)\tfalse\tfalse\tFive 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. .\tnumber(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8303410676804649\t0.0416\t75\t0.8620689655172413\t(Root apical meristems; also produce; auxin)[enabler=although the root depends on the shoot for much of its auxin]\ttrue\tfalse\tRoot apical meristems also produce auxin , although the root depends on the shoot for much of its auxin .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.827468041502386\t0.7345\t76\t0.8636363636363636\t(Beecher; began collecting fossils from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania]\ttrue\tfalse\tBeecher 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8269534825979009\t0.7345\t77\t0.8651685393258427\t(prices; Elsewhere surged for; a second day)\tfalse\tfalse\tElsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8260213456731965\t0.7345\t78\t0.8666666666666667\t(the number of jobless; rose 0.1 % on; a seasonally adjusted basis)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8249346444705182\t0.0087\t79\t0.8681318681318682\t(Bruno DeGol; was named; a director of this bank-holding company)\tfalse\tfalse\tBruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0087\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8221777270905738\t0.9555\t79\t0.8586956521739131\t(She; be her husband in; McMillan and McMillan)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8221777270905738\t0.9555\t79\t0.8494623655913979\t(She; be her husband in; McMillan and McMillan)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8219185100921349\t1.0\t80\t0.851063829787234\t(the 15-year debentures; can be redeemed at; the company 's option)[attrib=Mark said]\tfalse\ttrue\tMark , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8219185100921349\t1.0\t81\t0.8526315789473684\t(the 15-year debentures; can be redeemed under; certain conditions)[attrib=Mark said]\tfalse\ttrue\tMark , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8163015082002283\t0.7345\t82\t0.8541666666666666\t(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]\ttrue\tfalse\tAs 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.8142098011724438\t1.0\t83\t0.8556701030927835\t(he; was registered on; 12 March 2009)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.8131467426837622\t0.7345\t84\t0.8571428571428571\t(Greyston Bakery; moved to; a larger facility designed by Maya Lin to accommodate growth)\tfalse\tfalse\tIn 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.812966171857697\t1.0\t85\t0.8585858585858586\t(the potentially fatal disease botulism; is caused vegetables by; botulinum toxin)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.8124225561269487\t0.3797\t85\t0.85\t(Conn; acquired; most of its stake)\tfalse\tfalse\tMr. 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.8122091137989417\t0.3797\t85\t0.8415841584158416\t(Disappointment; led to reduce; its 1989 and 1990 earnings estimates)\tfalse\tfalse\tDisappointment 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 .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8122091137989417\t0.3797\t86\t0.8431372549019608\t(He; captured; the Parthian capital)\tfalse\tfalse\tHe captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.8122091137989417\t0.3797\t86\t0.8349514563106796\t(She; spent; some time)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8118536542018464\t1.0\t87\t0.8365384615384616\t(He; was also featured in; cover articles)\tfalse\tfalse\tHe was also featured in cover articles for TV Guide and Instinct .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8118536542018464\t1.0\t88\t0.8380952380952381\t(Junge; was then traded in to; the Philadelphia Phillies)\tfalse\tfalse\tJunge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8099965871661658\t0.7345\t89\t0.839622641509434\t(They; consisted of; Hightower , Davis , and three Brickley sisters)\tfalse\tfalse\tThey formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.8030868347515683\t1.0\t90\t0.8411214953271028\t(His suspicions; were confirmed in; 1935)\tfalse\tfalse\tHis suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8030868347515683\t1.0\t91\t0.8425925925925926\t(The episode; was written by; Kevin Murphy and Kevin Etten)\tfalse\tfalse\tThe episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.8022295858317585\t0.7345\t92\t0.8440366972477065\t(the Roman general Manius Acilius Glabrio; advanced to; Amfissa)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.8014529232437072\t1.0\t93\t0.8454545454545455\t(genes; are cloned in; plasmids)[attrib=we can see]\tfalse\ttrue\tNow that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.80110261356372\t1.0\t94\t0.8468468468468469\t(the Australian Black Swan; was introduced to; New Zealand)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.798782133398484\t1.0\t95\t0.8482142857142857\t(the sunflower hybrid zone; discussed earlier is influenced by; at least 26 chromosome segments)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7976688782716311\t0.7345\t96\t0.8495575221238938\t(He; began to practice law in; Montgomery)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7968768978207308\t0.7345\t97\t0.8508771929824561\t(he; returned once again to perform as; a part of a two-hander)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.796650193882776\t0.7345\t98\t0.8521739130434782\t(Amuro; returned to solo activities on; her own)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t99\t0.853448275862069\t(Christie; made a splash with; her extraordinary performance)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t100\t0.8547008547008547\t(He; came to; Tehran)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t101\t0.8559322033898306\t(Italy 's unemployment rate; rose from; 11.9 %)\tfalse\tfalse\tItaly '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t102\t0.8571428571428571\t(Italy 's unemployment rate; rose in; July)\tfalse\tfalse\tItaly '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t103\t0.8583333333333333\t(The car; has had two revisions since; its inception)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t104\t0.859504132231405\t(They; formed in; the late 1950s)\tfalse\tfalse\tThey formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t105\t0.860655737704918\t(WKY; operated from; 1936)\tfalse\tfalse\tWKY 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t106\t0.8617886178861789\t(WKY; operated from; the Skirvin Hotel)\tfalse\tfalse\tWKY 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.796650193882776\t0.7345\t107\t0.8629032258064516\t(WKY; operated in; downtown Oklahoma City)\tfalse\tfalse\tWKY 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7955951719703225\t0.7345\t108\t0.864\t(he; helped to lead the Buckeyes to; a national championship)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7955951719703225\t0.7345\t109\t0.8650793650793651\t(a Best of compilation album; released on; Columbia Records)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7955951719703225\t0.7345\t110\t0.8661417322834646\t(the airline; launched codeshare flights with Lufthansa from; Shanghai)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7955951719703225\t0.7345\t111\t0.8671875\t(he; married natural resources attorney Susan Daggett in; Marianna)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.7955951719703225\t0.7345\t111\t0.8604651162790697\t(borrowed spare grilles; left around from; the fourth generation)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7955951719703225\t0.7345\t112\t0.8615384615384616\t(borrowed spare grilles; left around in; 1997)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7930485141769201\t1.0\t113\t0.8625954198473282\t(he; was hit on; September 1)\tfalse\tfalse\tHis season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson .\tposs(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7930485141769201\t1.0\t114\t0.8636363636363636\t(the Australian Black Swan; was introduced in; 1864)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7930485141769201\t1.0\t114\t0.8571428571428571\t(it; was incorrectly indicated in; Thursday 's edition)\tfalse\tfalse\tIn Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7930485141769201\t1.0\t115\t0.8582089552238806\t(he; was traded as; a minor-leaguer)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7930485141769201\t1.0\t116\t0.8592592592592593\t(he; was traded on; December 5 , 1984)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7924241538907004\t1.0\t117\t0.8602941176470589\t(The episode; be directed by; David Grossman)\tfalse\tfalse\tThe episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7916948573799331\t0.9555\t118\t0.8613138686131386\t(Wolfowitz 's tenure; was a notable success largely owing to; the fact)\tfalse\tfalse\tBut Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7909563994214776\t1.0\t119\t0.8623188405797102\t(the 15-year debentures; can be redeemed after; Nov. 30 , 1992)[attrib=Mark said]\tfalse\ttrue\tMark , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7895677009465524\t0.0254\t120\t0.8633093525179856\t(The Mount Royal Arena; was an indoor arena at; the corner of Mount Royal and St . Urbain Street)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0254\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7882798815544154\t0.7345\t121\t0.8642857142857143\t(Researchers; placed identical samples of organic material -- litter -- on; the ground)\tfalse\tfalse\tResearchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.7864523259813375\t0.9555\t121\t0.8581560283687943\t(It; is the presence of; internal and external \" enemies)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.785157781187319\t0.0052\t122\t0.8591549295774648\t(Nero; grew up in; Bedonia and in Milan)\tfalse\tfalse\tNero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0052\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.7841133351787181\t1.0\t122\t0.8531468531468531\t(Each note; is being offered at; maturity)\tfalse\tfalse\tEach note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7833788418654803\t0.0216\t123\t0.8541666666666666\t(The failure in Oakland of the freeway segment; was; the deadliest aspect of the quake)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7827172467868465\t0.9555\t124\t0.8551724137931035\t(Ji-an; is a township near; Hualien City)\tfalse\tfalse\tJi-an , Hualien , is a township near Hualien City , Taiwan .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7827172467868465\t0.9555\t125\t0.8561643835616438\t(Lakitelek; is a large village in; Bics-Kiskun county)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7827172467868465\t0.9555\t126\t0.8571428571428571\t(North Luffenham; is a village in; Rutland)\tfalse\tfalse\tNorth Luffenham is a village in Rutland , in the East Midlands of England .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7827172467868465\t0.9555\t127\t0.8581081081081081\t(Plouzani; is a commune in; northwestern France)\tfalse\tfalse\tPlouzani is a commune in the Finistre department in Bretagne in northwestern France .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7808625528198313\t1.0\t128\t0.8590604026845637\t(Blue Water High; is aired twice on; the local satellite system)\tfalse\tfalse\tIn South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7794905475666135\t1.0\t128\t0.8533333333333334\t(the South; were forced into; an inferior status)\tfalse\tfalse\tAt 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 . \" .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7786004111478168\t0.3797\t128\t0.847682119205298\t(Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7756531227056351\t0.0155\t128\t0.8421052631578947\t(results; be pseudoobscura among; at least four loci)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7756531227056351\t0.0155\t129\t0.8431372549019608\t(Imperial; be charged with; breach of fiduciary duty)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7729679519394232\t0.0416\t130\t0.8441558441558441\t(Certain species; have; an especially large impact)[enabler=because they are highly abundant or play a pivotal role in community dynamics]\ttrue\tfalse\tCertain 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7711522341873792\t0.3797\t131\t0.8451612903225807\t(Cordis; sold two years ago; its pacemaker operations)\tfalse\tfalse\tCordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.7711522341873792\t0.3797\t131\t0.8397435897435898\t(Years; met again; Beatrice)\tfalse\tfalse\tYears after his marriage to Gemma , he met Beatrice again .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7710605947071337\t0.1349\t132\t0.8407643312101911\t(Differentiated cells; generally do not divide in; culture)\tfalse\tfalse\tDifferentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7677924739938856\t0.7345\t133\t0.8417721518987342\t(the mining company; posted a 40 % drop in profit for; the nine months)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7677924739938856\t0.7345\t134\t0.8427672955974843\t(the airline; launched codeshare flights with Lufthansa in; 2005)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7677924739938856\t0.7345\t134\t0.8375\t(researchers; transformed the differentiated cells in; these cases)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7677924739938856\t0.7345\t134\t0.8322981366459627\t(researchers; had with; a large genome)\tfalse\tfalse\tWith such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7664526353525477\t0.7345\t135\t0.8333333333333334\t(Rome; asked Antiochus III the Great of Syria for; help)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.7623618186281583\t0.9555\t136\t0.8343558282208589\t(The Cancer Genome Atlas; is another example of; systems biology which a large group of interacting genes and gene products are analyzed together)\tfalse\tfalse\tThe Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.9555\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7589786263829497\t0.7345\t137\t0.8353658536585366\t(he; dismissed against; the touring nation)\tfalse\tfalse\tAmongst 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.7589786263829497\t0.7345\t137\t0.8303030303030303\t(Jane Bennet; acclaimed miniseries Lost in; Austen)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7587665101893266\t0.3797\t138\t0.8313253012048193\t(Gruner + Jahr; exited; the U.S. magazine business)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7587665101893266\t0.3797\t138\t0.8263473053892215\t(shareholder Max Grill of New York; charged; Imperial)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7587665101893266\t0.3797\t139\t0.8273809523809523\t(he; had; three tackles)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7583399900511701\t1.0\t140\t0.8284023668639053\t(she; was kidnapped in; Baghdad)\tfalse\tfalse\tCarroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7583399900511701\t1.0\t141\t0.8294117647058824\t(he; was hit on; the hand)\tfalse\tfalse\tHis season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7583399900511701\t1.0\t142\t0.8304093567251462\t(he; was traded by; the New York Yankees)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7583399900511701\t1.0\t143\t0.8313953488372093\t(he; was traded to; the Oakland Athletics)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7570364553738984\t1.0\t144\t0.8323699421965318\t(3.4 million additional shares; will be offered in; the U.S.)\tfalse\tfalse\tFive 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. .\tnumber(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7555412875307439\t0.7345\t144\t0.8275862068965517\t(he; appointed as; governors)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7533814384237645\t0.3797\t145\t0.8285714285714286\t(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]\ttrue\tfalse\tAchmat 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7532251863150602\t0.7345\t146\t0.8295454545454546\t(He; also met with; Lao and Vietnamese leaders)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7532251863150602\t0.7345\t147\t0.8305084745762712\t(He; played eleven seasons as; an outfielder)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7532251863150602\t0.7345\t148\t0.8314606741573034\t(He; played eleven seasons in; the majors)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7532251863150602\t0.7345\t149\t0.8324022346368715\t(They; headlined in; late 2006)\tfalse\tfalse\tThey headlined in late 2006 with Saosin and Bleeding Through as supporters .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7519030881345958\t0.7345\t150\t0.8333333333333334\t(shareholder Max Grill of New York; charged Imperial , its top executives and directors in; a separate complaint also filed in federal court)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.750546447057629\t0.3797\t151\t0.8342541436464088\t(The car; has had; two revisions)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.7497565669216433\t0.0086\t151\t0.8296703296703297\t(a Whore; was a co-founder member with; Sir Ian McKellen and Edward Petherbridge , of the democratically run)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0086\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.749327494115084\t0.3797\t151\t0.825136612021858\t(2005 Coup; d; 'etat plot)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.748879728343442\t0.0416\t152\t0.8260869565217391\t(the hydrogen bonds; Collectively hold together a phenomenon called cohesion; the substance)\tfalse\tfalse\tCollectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.746204714628645\t0.9555\t152\t0.8216216216216217\t(the squadron; be an airfield on; Bougainville)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7412433242588633\t0.0577\t153\t0.8225806451612904\t(He; was elected; a member of the Alabama House of Representatives)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7401960931883838\t0.7345\t154\t0.8235294117647058\t(Riley; re-emerged as; a star)\tfalse\tfalse\tAfter 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 ?\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7401960931883838\t0.7345\t155\t0.824468085106383\t(Riley; re-emerged in; the early 2000s)\tfalse\tfalse\tAfter 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 ?\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7401960931883838\t0.7345\t156\t0.8253968253968254\t(he; was on; 4)\tfalse\tfalse\tDhoni , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7401960931883838\t0.7345\t156\t0.8210526315789474\t(it; appeared to; Flemming)\tfalse\tfalse\tDuring the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7401960931883838\t0.7345\t157\t0.8219895287958116\t(researchers; transformed the differentiated cells into; ES cells)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7401960931883838\t0.7345\t158\t0.8229166666666666\t(Manager Bill McKechnie; called on; Nuxhall)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7363722315391956\t0.0444\t159\t0.8238341968911918\t(He; was elected a member of the Alabama House of Representatives in; 1826)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7363722315391956\t0.0444\t160\t0.8247422680412371\t(His regiments; had been decimated in; earlier fighting)\tfalse\tfalse\tHis 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 .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7362263765677146\t0.0416\t161\t0.8256410256410256\t(Land snails; play; a key role)[enabler=while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes]\ttrue\tfalse\tLand 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7360683474444599\t0.0432\t162\t0.826530612244898\t(Byrom; was born in; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0432\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7351868107430106\t1.0\t163\t0.8274111675126904\t(him; be decapitated by; the Hyperforce)\tfalse\tfalse\tThe Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7326146164862852\t0.3797\t164\t0.8282828282828283\t(Rage; left; Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7326146164862852\t0.3797\t165\t0.8291457286432161\t(the American scientist Wendell Stanley; crystallized; the infectious particle now known as tobacco mosaic virus)\tfalse\tfalse\tHis suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7320577633232332\t0.7345\t166\t0.83\t(Rage; left Death Row Records after; the release of her album and a guest-appearance)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7311170863177398\t0.0444\t167\t0.8308457711442786\t(its efforts begun in 1989; have led to; the introduction of bills to establish evenhanded procedures)[attrib=The group 's Mark Cahoon says]\tfalse\ttrue\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0444\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7305601511181097\t0.0216\t167\t0.8267326732673267\t(Cell walls; were; first)\tfalse\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t168\t0.8275862068965517\t(Greyston Bakery; moved in; 2004)\tfalse\tfalse\tIn 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t169\t0.8284313725490197\t(Gruner + Jahr; exited the U.S. magazine business in; 2005)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t170\t0.8292682926829268\t(he; returned once again in; 2008)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t171\t0.8300970873786407\t(Lenin; dispatched Stalin in; May 1918)\tfalse\tfalse\tIn May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7305053467832321\t0.7345\t171\t0.8260869565217391\t(Loral; closed down 37.5 cents in; New York Stock Exchange composite trading)\tfalse\tfalse\tIn New York Stock Exchange composite trading , Loral closed at $ 33.25 , down 37.5 cents .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7305053467832321\t0.7345\t171\t0.8221153846153846\t(Knight-Ridder; closed down 37.5 cents in; New York Stock Exchange composite trading)\tfalse\tfalse\tIn New York Stock Exchange composite trading yesterday , Knight-Ridder closed at $ 51.75 , down 37.5 cents .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t172\t0.8229665071770335\t(the number of jobless; rose 0.1 % in; September)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7305053467832321\t0.7345\t173\t0.8238095238095238\t(he; married natural resources attorney Susan Daggett on; October 26 , 1997)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7302887378689945\t0.7345\t173\t0.8199052132701422\t(the mining company; posted a 40 % drop in profit on; a 6 % rise)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7302887378689945\t0.7345\t174\t0.8207547169811321\t(the number of jobless; rose 0.1 % from; the previous month)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7302887378689945\t0.7345\t175\t0.8215962441314554\t(the number of jobless; rose 0.1 % to; 2.5 million)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7302600584980709\t0.4031\t176\t0.822429906542056\t(annuals; as are staple food crops including; legumes and cereal grains)\tfalse\tfalse\tMany wildflowers are annuals , as are most staple food crops , including legumes and cereal grains such as wheat and rice .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7292680217851115\t0.0155\t177\t0.8232558139534883\t(its pacemaker operations; be sold two years ago to; Telectronics Holding Ltd. of Australia)\tfalse\tfalse\tCordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7292680217851115\t0.0155\t178\t0.8240740740740741\t(Jonathan Groff; be replaced in; the Broadway production of the musical Spring Awakening)\tfalse\tfalse\tHe replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7292680217851115\t0.0155\t179\t0.8248847926267281\t(Jonathan Groff; be replaced in; the lead role of Melchior Gabor)\tfalse\tfalse\tHe replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7292680217851115\t0.0155\t180\t0.8256880733944955\t(Stalin; be dispatched to; the city of Tsaritsyn)\tfalse\tfalse\tIn May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7292680217851115\t0.0155\t181\t0.8264840182648402\t(a Master of Arts; be received from; Royal Military College of Canada)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.7288884613298925\t0.0151\t181\t0.8227272727272728\t(The Skeleton King; later merged in; Dark One)\tfalse\tfalse\tThe Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0151\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.728699979239643\t0.0067\t182\t0.8235294117647058\t(Lenneth; to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina]\ttrue\tfalse\tLenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.7270291579207211\t0.0079\t182\t0.8198198198198198\t(He; died; Washington)\tfalse\tfalse\tHe died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.7264529336979277\t1.0\t182\t0.8161434977578476\t(Five million shares; will be offered in; concurrent international offerings)\tfalse\tfalse\tFive 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. .\tnumber(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.7264076234110055\t0.0055\t182\t0.8125\t(Byrom; was born on; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0055\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7252808388285222\t0.1349\t183\t0.8133333333333334\t(the two companies; could n't agree on; terms of a definitive agreement)[attrib=Clarcor said]\tfalse\ttrue\tClarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement .\tpunct(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.7244174911479532\t0.0052\t183\t0.8097345132743363\t(The water; moved into; a second)\tfalse\tfalse\tThe water was heated so that some vaporized and moved into a second , higher flask containing the \" \"atmosphere \" \" -- a mixture of gases .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0052\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\n0\t0.7243871453208417\t0.3797\t183\t0.8061674008810573\t(She; spent some time managing; her son 's jazz group)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7186204373216412\t0.3797\t184\t0.8070175438596491\t(he; conquered; the Crissaean plain)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.7186204373216412\t0.3797\t185\t0.8078602620087336\t(the Roman general Manius Acilius Glabrio; seized; Lamia)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.7172636808792543\t0.3797\t186\t0.808695652173913\t(The issue 's smooth absorption; eased; fears)[attrib=traders said]\tfalse\ttrue\tThe issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7159436441483162\t0.3797\t187\t0.8095238095238095\t(small dinosaurs; may have had; difficulty)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.7118177465023502\t0.3797\t188\t0.8103448275862069\t(he; received; a Master of Arts)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7115304748211617\t0.3797\t189\t0.8111587982832618\t(Amuro; returned to solo; activities)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7115304748211617\t0.3797\t190\t0.811965811965812\t(Christie; made; a splash)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.7115304748211617\t0.3797\t190\t0.8085106382978723\t(Coca-Cola Enterprises; blamed; the lower volume)\tfalse\tfalse\tCoca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7115304748211617\t0.3797\t191\t0.809322033898305\t(He; also scored; the second and decisive try)\tfalse\tfalse\tHe also scored the second and decisive try against Munster when Tigers retained the cup the following year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7115304748211617\t0.3797\t192\t0.810126582278481\t(He; reached; the third round)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7115304748211617\t0.3797\t193\t0.8109243697478992\t(Singer Bette Midler; won; a $ 400,000 federal court jury verdict)\tfalse\tfalse\tSinger 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7113287905531539\t0.0416\t194\t0.8117154811715481\t(Macromolecules translocated through the phloem; include; proteins and various types of RNA)\tfalse\tfalse\tMacromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata .\tpartmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.7101944860312797\t0.3797\t195\t0.8125\t(Tigers; retained; the cup)\tfalse\tfalse\tHe also scored the second and decisive try against Munster when Tigers retained the cup the following year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7101944860312797\t0.3797\t196\t0.8132780082987552\t(Prince Kitashirakawa; married; Princess Kane-no-Miya Fusako)\tfalse\tfalse\tOn April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7101944860312797\t0.3797\t197\t0.8140495867768595\t(Manager Bill McKechnie; called to enter; the game)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7101944860312797\t0.3797\t198\t0.8148148148148148\t(the stock; dropped; nearly 19 %)\tfalse\tfalse\tWhen the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7101944860312797\t0.3797\t199\t0.8155737704918032\t(he; met again; Beatrice)\tfalse\tfalse\tYears after his marriage to Gemma , he met Beatrice again .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7098444699714459\t0.3797\t200\t0.8163265306122449\t(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)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7082146507227227\t0.3797\t200\t0.8130081300813008\t(a large amount of an oxygen-storing protein; called; myoglobin)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.7072668103739835\t0.0416\t201\t0.8137651821862348\t(the filtering activities of freshwater bivalves; purify; the waters of streams)\tfalse\tfalse\tLand 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.7045767096027521\t0.7345\t202\t0.8145161290322581\t(a brief electrical pulse; applied to; a solution containing cells)\tfalse\tfalse\tIn electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7030152095713891\t0.0444\t203\t0.8152610441767069\t(Functional brain imaging; has been applied to; the study of human cognition)\tfalse\tfalse\tFunctional brain imaging has been applied to the study of human cognition , consciousness , and emotion .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7025491579576496\t0.0216\t204\t0.816\t(The Mount Royal Arena; was; an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0216\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.7022426277306183\t1.0\t204\t0.8127490039840638\t(the potentially fatal disease botulism; is caused vegetables in; another example)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.7018674537112141\t0.0191\t204\t0.8095238095238095\t(The water; was heated; higher flask containing the \" \"atmosphere \" \" -- a mixture of gases)\tfalse\tfalse\tThe water was heated so that some vaporized and moved into a second , higher flask containing the \" \"atmosphere \" \" -- a mixture of gases .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0191\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.701170771384888\t0.1473\t205\t0.8102766798418972\t(the U.S.; can bomb; Tripoli)[enabler=As it now stands]\ttrue\tfalse\tAs it now stands , the U.S. can bomb Tripoli , but ca n't \" assassinate \" Colonel Gadhafi .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.7009715957021118\t0.3797\t206\t0.8110236220472441\t(Revenue; dropped; 5.4 %)\tfalse\tfalse\tRevenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.7005550594198744\t0.4031\t207\t0.8117647058823529\t(Petone; be a suburb of the city of Lower Hutt in; the Wellington region of New Zealand)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.700111485477657\t0.3797\t208\t0.8125\t(the company; announced; lower-than-forecast sales of Easy Eggs)\tfalse\tfalse\tWhen the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6991064348732651\t0.0416\t209\t0.8132295719844358\t(Amoebozoans; include; slime molds)\tfalse\tfalse\tAmoebozoans include slime molds , gymnamoebas , and entamoebas .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6988226296797597\t0.2444\t210\t0.813953488372093\t(adaptive immunity; offers significant protection against; a wide range of pathogens)\tfalse\tfalse\tAlthough adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.698781039260481\t1.0\t211\t0.8146718146718147\t($ 100 million issue of collateralized mortgage obligations; is being offered by; a Morgan Stanley group)\tfalse\tfalse\t$ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group .\tnumber($_$_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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.698331924273114\t0.1443\t212\t0.8153846153846154\t(food; enters; the oral cavity and orchestrate swallowing)[enabler=when a bolus of food reaches the pharynx]\ttrue\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6949728519048148\t0.9555\t213\t0.8160919540229885\t(Dell Curry; is the father of; Stephen Curry)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6921947353265185\t1.0\t214\t0.816793893129771\t(he; is prohibited by; takeover regulations)[attrib=Mr. Fournier said]\tfalse\ttrue\tMr. 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6920856372671877\t0.7345\t215\t0.8174904942965779\t(Chesler; taught one of the first Women 's Studies classes during; the 1969-1970 school year)\tfalse\tfalse\tChesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6894154719303\t0.7345\t216\t0.8181818181818182\t(Hatch; worked as; an Attorney)\tfalse\tfalse\tFor fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6894154719303\t0.7345\t216\t0.8150943396226416\t(Hatch; worked at; law)\tfalse\tfalse\tFor fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6894154719303\t0.7345\t217\t0.8157894736842105\t(a Best of compilation album; released in; January 2002)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6894154719303\t0.7345\t218\t0.8164794007490637\t(the airline; launched codeshare flights with Lufthansa to; Germany)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6894154719303\t0.7345\t218\t0.8134328358208955\t(Conn; acquired most of its stake in; an $ 11-a-share tender offer)\tfalse\tfalse\tMr. 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6894154719303\t0.7345\t219\t0.8141263940520446\t(he; tapped Connor to serve as; the Deputy Secretary)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6894154719303\t0.7345\t220\t0.8148148148148148\t(he; received a Master of Arts in; war studies degree)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6879529347056156\t0.0216\t220\t0.8118081180811808\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0216\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6875925127628725\t0.7345\t221\t0.8125\t(he; went native in; essence)\tfalse\tfalse\tBut Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native .\tpossessive(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6871608418210067\t0.1473\t222\t0.8131868131868132\t(Social Security benefits; will rise; 4.7 %)[attrib=the Department of Health and Human Services announced]\tfalse\ttrue\tSocial 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6867309114343867\t0.02\t223\t0.8138686131386861\t(Kotte; lay on; the opposite side of the Diyawanna Oya)\tfalse\tfalse\tBattaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.02\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6863325222781806\t0.3797\t223\t0.8109090909090909\t(hybrid sterility; pseudoobscura; results)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6863325222781806\t0.3797\t224\t0.8115942028985508\t(researchers; transformed; the differentiated cells)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6860679254290757\t1.0\t225\t0.8122743682310469\t(he; was involved during; his time)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6852489081587368\t1.0\t226\t0.8129496402877698\t(Byrom; is commemorated by; a plaque)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6852489081587368\t1.0\t227\t0.8136200716845878\t(The Notre Dame Academy and Convent; is located at; 3501 State Street)\tfalse\tfalse\tThe Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6852489081587368\t1.0\t228\t0.8142857142857143\t(The Notre Dame Academy and Convent; is located in; the Florence neighborhood)\tfalse\tfalse\tThe Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6851621109140491\t0.0444\t229\t0.8149466192170819\t(He; was elected a member of the Alabama House of Representatives until; 1828)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6851122354728214\t0.0216\t230\t0.8156028368794326\t(the climate; was; milder when dinosaurs existed than it is today , it was cool)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0216\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6844171600236496\t0.0416\t231\t0.8162544169611308\t(primates; have; a large brain and short jaws)\tfalse\tfalse\tRelative to other mammals , primates have a large brain and short jaws , giving them a flat face .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6842661201285292\t0.0393\t232\t0.8169014084507042\t(1944 the squadron; was operating from; an airfield at Cape Torokina on Bougainville and from here the squadron began)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6836743744725042\t0.1349\t233\t0.8175438596491228\t(Social Security benefits; will rise 4.7 % to keep pace with; inflation)[attrib=the Department of Health and Human Services announced]\tfalse\ttrue\tSocial 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6814839861060161\t1.0\t234\t0.8181818181818182\t(he; is prohibited as; Navigation Mixte chairman)[attrib=Mr. Fournier said]\tfalse\ttrue\tMr. 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 .\tnn(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)\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6814249419026649\t0.0195\t235\t0.818815331010453\t(researchers; to carry out; several rounds of DNA cutting)\tfalse\tfalse\tWith such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6800252840740403\t0.7345\t235\t0.8159722222222222\t(the squadron; began taking part in; the air)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6797932006082301\t0.0254\t236\t0.8166089965397924\t(The Mount Royal Arena; was an indoor arena in; Montreal)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0254\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6773746556171704\t0.0307\t237\t0.8172413793103448\t(They; merely collect campaign contributions from; developers that help keep them in office)\tfalse\tfalse\tThey merely collect campaign contributions from developers that help keep them in office .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0307\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6756543805538955\t0.9555\t238\t0.8178694158075601\t(the share issue; is part of; a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.9555\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6750917121018809\t0.0089\t238\t0.815068493150685\t(She; was born at; Berkeley)\tfalse\tfalse\tShe was born April 3 , 1951 in Berkeley , California .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0089\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6747828012049464\t0.2444\t239\t0.8156996587030717\t(it; extends finger-like projections into; the surrounding maternal tissue)[enabler=As the trophoblast thickens through cell division]\ttrue\tfalse\tAs the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6739752301274893\t0.005\t239\t0.8129251700680272\t(She; was born on; Berkeley)\tfalse\tfalse\tShe was born April 3 , 1951 in Berkeley , California .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.005\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.6738672882427084\t0.3797\t239\t0.8101694915254237\t(Rome; asked; Antiochus III)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6738672882427084\t0.3797\t240\t0.8108108108108109\t(Rome; was to rule; the Greek cities)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.6734019076491942\t0.003\t240\t0.8080808080808081\t(He; was descended from; Mecklenburg)\tfalse\tfalse\tHe was descended from the B low family , an old aristocratic family from Mecklenburg .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.003\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.672959250624098\t1.0\t241\t0.8087248322147651\t(The Edward C. Peters House; be also known as; Ivy Hall)\tfalse\tfalse\tThe Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.672600851247067\t0.9555\t242\t0.8093645484949833\t(Lorenzo R. Stone House; is a historic house at; 218 South Street)\tfalse\tfalse\tLorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.672600851247067\t0.9555\t243\t0.81\t(Plouzani; is a commune in; the Finistre department)\tfalse\tfalse\tPlouzani is a commune in the Finistre department in Bretagne in northwestern France .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6716567794981523\t0.7345\t244\t0.8106312292358804\t(a brief electrical pulse; applied in; electroporation)\tfalse\tfalse\tIn electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6702022622188899\t1.0\t245\t0.8112582781456954\t(Blue Water High; is aired twice on; Go)\tfalse\tfalse\tIn South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6655282801338094\t0.3797\t245\t0.8085808580858086\t(They; called; myoglobin)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.6646039439836912\t0.1473\t246\t0.8092105263157895\t(scientists and the public; Therefore must assess; the possible benefits of transgenic products)\tfalse\tfalse\tTherefore , 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 .\tcc(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6641048085215293\t0.0577\t247\t0.8098360655737705\t(The Commodore 64 and 128; had surprised; market researchers)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6635079695655993\t0.0216\t248\t0.8104575163398693\t(Wolfowitz 's tenure; was; a notable success)\tfalse\tfalse\tBut Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6635079695655993\t0.0216\t249\t0.8110749185667753\t(it; was enough; cool)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6631535112146543\t0.1473\t250\t0.8116883116883117\t(birth control pills; slightly raise; a woman 's risk of abnormal blood clotting)\tfalse\tfalse\tAmong nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6628407065119962\t0.1473\t251\t0.8122977346278317\t(the phloem; Thus can serve; a nerve-like function)\tfalse\tfalse\tThus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6625170270016472\t0.0478\t251\t0.8096774193548387\t(He; are afraid of; him)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6617297258836088\t0.0155\t252\t0.8102893890675241\t(Senator Panfilo Lacson; be linked to; the February 6)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6617297258836088\t0.0155\t253\t0.8108974358974359\t(Hutt Park Railway; be operated in; Petone)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6617297258836088\t0.0155\t254\t0.8115015974440895\t(the year-long course; be completed at; the Canadian Forces Command and Staff College)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.660268730880021\t0.0105\t254\t0.8089171974522293\t(the Aetolians; realised; Rome)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0105\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6596249234989158\t0.0083\t255\t0.8095238095238095\t(Federico Arturo Cordero Salguero; was born in; Rio Piedras)\tfalse\tfalse\tCordero 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0083\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6596249234989158\t0.0083\t256\t0.810126582278481\t(Francesco Sparanero; was born in; San Prospero)\tfalse\tfalse\tNero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0083\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6592176164356323\t0.1349\t257\t0.8107255520504731\t(Both radial glia and astrocytes; can also act as; stem cells)\tfalse\tfalse\tBoth radial glia and astrocytes can also act as stem cells , generating new neurons and glia .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6591031256357218\t1.0\t258\t0.8113207547169812\t(Blue Water High; is aired twice in; South Africa)\tfalse\tfalse\tIn South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6588559275827122\t1.0\t259\t0.8119122257053292\t(3.4 million additional shares; will be offered in; concurrent international offerings)\tfalse\tfalse\tFive 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. .\tnumber(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6577376960677589\t0.3797\t260\t0.8125\t(Dhoni; completed; his 4,000 runs)\tfalse\tfalse\tDhoni , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6577376960677589\t0.3797\t261\t0.8130841121495327\t(Dominion Textile Inc. holders; adopted; a shareholder-rights plan)\tfalse\tfalse\tDominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6577376960677589\t0.3797\t262\t0.8136645962732919\t(He; completed; his move)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6577376960677589\t0.3797\t263\t0.8142414860681114\t(He; played; eleven seasons)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6577376960677589\t0.3797\t264\t0.8148148148148148\t(He; replaced; Jonathan Groff)\tfalse\tfalse\tHe replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6572154096707211\t0.1349\t265\t0.8153846153846154\t(the investors; would pay only a symbolic one lira for; the station)[attrib=Florio Fiorini said]\tfalse\ttrue\tFlorio 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6554307574846172\t0.2444\t265\t0.8128834355828221\t(it; that contains at; the time of death)\tfalse\tfalse\tHowever , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6534611163450441\t0.7345\t266\t0.8134556574923547\t(orders; were up a nominal 5 % before; adjustment)\tfalse\tfalse\tBefore adjustment for inflation , the association said , orders were up a nominal 5 % .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6521819297665553\t0.111\t267\t0.8140243902439024\t(Macromolecules; be translocated through; the phloem)\tfalse\tfalse\tMacromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata .\tpartmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6521819297665553\t0.111\t268\t0.8145896656534954\t(The Commodore 64 and 128; be mainly used for; children 's educational software and games)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6502440207966621\t0.0155\t269\t0.8151515151515152\t(a shareholder-rights plan; be adopted at; the annual meeting)\tfalse\tfalse\tDominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6493204702709027\t0.0084\t270\t0.8157099697885196\t(It; is; a distinction that satisfies neither side in the debate)\tfalse\tfalse\tIt is a distinction that satisfies neither side in the debate .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6493204702709027\t0.0084\t271\t0.8162650602409639\t(Umbriatico; is; a comune and town in the province of Crotone , in Calabria , southern Italy)\tfalse\tfalse\tUmbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy .\tcc(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6485183512827597\t0.0057\t272\t0.8168168168168168\t(The Notre Dame Academy and Convent; is located on; the north end of Omaha)\tfalse\tfalse\tThe Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0057\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.6483507498113193\t0.2444\t272\t0.8143712574850299\t(It; takes encouragement from; one of the schoolboys)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6467374344684111\t0.3797\t273\t0.8149253731343283\t(Interspec Inc.; reported; a net loss of $ 2.4 million)\tfalse\tfalse\tInterspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6466548160114372\t0.0068\t273\t0.8125\t(This method; to produce; cloned animals whose nuclear genes are identical to those of the animal)\tfalse\tfalse\tThis method is used to produce cloned animals whose nuclear genes are identical to those of the animal supplying the nucleus .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0068\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6458621850395169\t1.0\t273\t0.8100890207715133\t(he; is not captured home to; the plantation)\tfalse\tfalse\tHowever his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.6423292150313767\t0.7345\t273\t0.8076923076923077\t(he; dismissed for; Western Australia)\tfalse\tfalse\tAmongst 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6423292150313767\t0.7345\t273\t0.8053097345132744\t(he; dismissed in; a tour match)\tfalse\tfalse\tAmongst 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6423292150313767\t0.7345\t274\t0.8058823529411765\t(he; looked at; dead cells)\tfalse\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6423292150313767\t0.7345\t275\t0.8064516129032258\t(he; looked through; a microscope)\tfalse\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6420628537310177\t0.3797\t276\t0.8070175438596491\t(he; lost to Thai; Paradorn Srichaphan)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6420628537310177\t0.3797\t277\t0.8075801749271136\t(government; operated; Hutt Park Railway)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6420628537310177\t0.3797\t277\t0.8052325581395349\t(he; tapped; Connor)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6420628537310177\t0.3797\t278\t0.8057971014492754\t(he; completed; the year-long course)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6418361293595238\t0.4031\t279\t0.8063583815028902\t(Bruno DeGol; be chairman of; DeGol Brothers Lumber)\tfalse\tfalse\tBruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6418361293595238\t0.4031\t280\t0.8069164265129684\t(Terry L. Haines; be formerly general manager of; Canadian operations)\tfalse\tfalse\tTerry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6407452027724365\t1.0\t280\t0.8045977011494253\t(she; is nominated by; President Bush)\tfalse\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6401619679454134\t0.1443\t281\t0.8051575931232091\t(he; expects to name; a new group president to head that operation)[attrib=Mr. Bailey said]\tfalse\ttrue\tMr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.1443\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6394396276660913\t0.0432\t282\t0.8057142857142857\t(his birth; was born in; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0432\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6390235990385105\t0.3797\t283\t0.8062678062678063\t(the band; struggled to find; support slots)\tfalse\tfalse\tAs 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6348307770777901\t0.2444\t284\t0.8068181818181818\t(the carbon-14 that it contains at the time of death; However slowly decays into; another element)\tfalse\tfalse\tHowever , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6326329240515012\t0.3797\t285\t0.8073654390934845\t(Beecher; began collecting; fossils)[enabler=when his family moved to northwestern Pennsylvania]\ttrue\tfalse\tBeecher 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\n1\t0.630431221182116\t0.1443\t286\t0.807909604519774\t(The continuing debate; exemplifies; one of this textbook 's recurring ideas)\tfalse\tfalse\tThe continuing debate about GMOs in agriculture exemplifies one of this textbook 's recurring ideas : the relationship of science and technology to society .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.1443\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.630282469455543\t0.3797\t287\t0.8084507042253521\t(operating profit; declined; 35 %)\tfalse\tfalse\tExclusive 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.630282469455543\t0.3797\t288\t0.8089887640449438\t(the mining company; posted; a 40 % drop)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.630282469455543\t0.3797\t289\t0.8095238095238095\t(the airline; launched; codeshare flights)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.630282469455543\t0.3797\t290\t0.8100558659217877\t(the number of jobless; rose; 0.1 %)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6301853387464892\t0.0155\t291\t0.8105849582172702\t(the lower volume; be blamed on; its soft-drink prices which were about 3 % higher in the third quarter)\tfalse\tfalse\tCoca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.629727135069219\t0.0416\t291\t0.8083333333333333\t(Populations of all species; have; the potential)\tfalse\tfalse\tPopulations of all species have the potential to expand greatly when resources are abundant .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.629727135069219\t0.0416\t292\t0.8088642659279779\t(The data; support; the hypothesis)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6282102506752052\t0.0416\t292\t0.8066298342541437\t(aquaporin channels; allow to cross; the epithelium)\tfalse\tfalse\tWhen the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6280293622098216\t0.0055\t292\t0.8044077134986226\t(his birth; was born on; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0055\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6264160448732808\t0.9555\t292\t0.8021978021978022\t(the squadron; be an airfield at; Cape Torokina)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.626406871283665\t0.0307\t293\t0.8027397260273973\t(Most coastal scyphozoans; go as; small polyps)\tfalse\tfalse\tMost 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0307\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.626406871283665\t0.0307\t294\t0.8032786885245902\t(Most coastal scyphozoans; go through; a stage)\tfalse\tfalse\tMost 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0307\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6260007085325703\t0.0444\t295\t0.8038147138964578\t(you; Now 've learned about; restriction enzymes and DNA ligase)[attrib=we can see]\tfalse\ttrue\tNow that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6244380763448595\t0.3797\t296\t0.8043478260869565\t(Turner; also starred portraying; a young woman whose friends help her find a new girlfriend , Ely ,)\tfalse\tfalse\tTurner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6225063307930305\t0.0125\t297\t0.8048780487804879\t(The index; uses a base of 1981 as; 100)\tfalse\tfalse\tThe index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0125\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6212491480811011\t0.0084\t298\t0.8054054054054054\t(The other major communication and control system; is; the nervous system)\tfalse\tfalse\tThe other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6212056639174542\t0.0022\t299\t0.8059299191374663\t(Certain species; be an especially large impact on; the structure of entire communities)\tfalse\tfalse\tCertain 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0022\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6206275727578635\t0.0132\t300\t0.8064516129032258\t(a symbolic one lira; would be pay for; the station)[attrib=Florio Fiorini said]\tfalse\ttrue\tFlorio 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6198680020445336\t0.7345\t301\t0.806970509383378\t(it; added $ 121 million for; losses)[attrib=The Phoenix-based holding company said]\tfalse\ttrue\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6198680020445336\t0.7345\t302\t0.8074866310160428\t(it; added $ 121 million to; its allowance)[attrib=The Phoenix-based holding company said]\tfalse\ttrue\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6187149953668409\t0.2444\t302\t0.8053333333333333\t(the blood supply; varies as; blood)\tfalse\tfalse\tCapillaries 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6174359386153582\t0.1473\t302\t0.8031914893617021\t(Scorpio sales; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.6174359386153582\t0.1473\t302\t0.8010610079575596\t(it; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6171051919707703\t0.1473\t303\t0.8015873015873016\t(we; Later this chapter will also examine; factors)\tfalse\tfalse\tLater 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6161804172013395\t0.1443\t304\t0.8021108179419525\t(He; threatens; us)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6161804172013395\t0.1443\t305\t0.8026315789473685\t(his father; However betrays; his whereabouts)\tfalse\tfalse\tHowever his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6140102483147367\t0.0477\t305\t0.800524934383202\t(pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility between; two subspecies of the fruit fly Drosophila)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6138541947112091\t0.4031\t306\t0.8010471204188482\t(the nervous system; be a network of; specialized cells)\tfalse\tfalse\tThe other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6136573404015875\t0.0155\t307\t0.8015665796344648\t(Antiochus III; be asked for; help)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6132773710699799\t0.1349\t308\t0.8020833333333334\t(Action potentials; can therefore spread along; axons)\tfalse\tfalse\tAction potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6132773710699799\t0.1349\t309\t0.8025974025974026\t(He; will succeed Arthur E. Himebaugh as; general manager)\tfalse\tfalse\tHe will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6128955555409064\t1.0\t310\t0.8031088082901554\t(his birth; is commemorated by; a plaque)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6113307943068114\t0.1349\t311\t0.8036175710594315\t(a freely mating population; will give rise to; a uniform population of individuals)\tfalse\tfalse\tThis hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.6111644575327525\t0.1349\t312\t0.8041237113402062\t(management; would recommend to; its board)[attrib=CMS ENERGY Corp. said]\tfalse\ttrue\tCMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a \" modest level \" later this year .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6087751192587815\t0.0216\t313\t0.8046272493573264\t(Carroll; became; an international cause clbre)\tfalse\tfalse\tCarroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6078845816228985\t0.3797\t314\t0.8051282051282052\t(the band; reached; a wider audience supporting U.S. goth-metal act Type O Negative)\tfalse\tfalse\tIn 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6078845816228985\t0.3797\t315\t0.8056265984654731\t(he and his students; spent; several decades observing these bees)\tfalse\tfalse\tUsing glass-walled observation hives , he and his students spent several decades observing these bees .\tdobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6072736370517114\t0.0216\t316\t0.8061224489795918\t(He; was; a producer)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6072072387942423\t0.7345\t317\t0.806615776081425\t(Riley; re-emerged after; a hiatus)\tfalse\tfalse\tAfter 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 ?\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6072072387942423\t0.7345\t318\t0.8071065989847716\t(the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad; were amongst; his victims)\tfalse\tfalse\tAmongst 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.6072072387942423\t0.7345\t318\t0.8050632911392405\t(he; had during; his freshman year)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6072072387942423\t0.7345\t319\t0.8055555555555556\t(Hatch; worked for; fourteen years)\tfalse\tfalse\tFor fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6064958806339743\t0.0191\t320\t0.8060453400503779\t(Cordero; was born; Federico Arturo Cordero Salguero)\tfalse\tfalse\tCordero 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0191\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6064958806339743\t0.0191\t321\t0.8065326633165829\t(Nero; was born; Francesco Sparanero)\tfalse\tfalse\tNero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0191\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.6062667449433333\t0.0416\t321\t0.8045112781954887\t(a large amount of an oxygen-storing protein; have; many mitochondria)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.6061945575127506\t0.111\t322\t0.805\t(an indoor arena; be located at; the corner of Mount Royal and St . Urbain Street)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6060486407224099\t0.0057\t323\t0.8054862842892768\t(he; was involved of; the 145 m long)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0057\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6059686076427026\t0.2444\t324\t0.8059701492537313\t(Lenneth; tells him to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina]\ttrue\tfalse\tLenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.6040734781624321\t0.1443\t325\t0.8064516129032258\t(A myelinated axon; has; a conduction speed)\tfalse\tfalse\tA myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6040734781624321\t0.1443\t326\t0.806930693069307\t(Animal reproduction; however takes; many forms)\tfalse\tfalse\tAnimal reproduction , however , takes many forms .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.6040734781624321\t0.1443\t327\t0.8074074074074075\t(The metal products concern; currently has; 7.2 million common shares outstanding)\tfalse\tfalse\tThe metal products concern currently has 7.2 million common shares outstanding .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.6038210796438683\t0.0155\t327\t0.8054187192118226\t(miniseries Lost; be acclaimed in; Austen)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6038210796438683\t0.0155\t328\t0.8058968058968059\t(his move; be completed for; an undisclosed fee)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6038210796438683\t0.0155\t329\t0.8063725490196079\t(his move; be completed on; a two-year deal)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6038210796438683\t0.0155\t330\t0.8068459657701712\t(codeshare flights; be launched from; Shanghai)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6038210796438683\t0.0155\t331\t0.8073170731707318\t(natural resources attorney Susan Daggett; be married in; Marianna)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6029785225890165\t0.0128\t332\t0.8077858880778589\t(prices; were broadly lower in; Milan , Paris and Brussels)\tfalse\tfalse\tElsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0128\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6017224575651481\t0.0393\t333\t0.808252427184466\t(the Reds; trailing 13-0 in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game]\ttrue\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.6014478796460334\t0.0079\t334\t0.8087167070217918\t(he; married natural resources attorney Susan Daggett; Marianna)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.6007912803652483\t0.0058\t335\t0.8091787439613527\t(a Best of compilation album; be released in; Columbia Records)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0058\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5980787835722664\t0.0216\t336\t0.8096385542168675\t(most of the people; were; young men)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5976379426356158\t0.0307\t337\t0.8100961538461539\t(I; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through]\ttrue\tfalse\t\" Tivoli Motel , \" I read a sign in the usual pronunciation of the name as we whoosh through .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0307\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5976379426356158\t0.0307\t337\t0.8081534772182254\t(Tivoli Motel; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through]\ttrue\tfalse\t\" Tivoli Motel , \" I read a sign in the usual pronunciation of the name as we whoosh through .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0307\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5951137499313156\t0.0416\t338\t0.8086124401913876\t(the hydrogen bonds; Collectively hold the substance together; a phenomenon called cohesion)\tfalse\tfalse\tCollectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5937789397514918\t0.0724\t339\t0.8090692124105012\t(Greatest Hits; is a Best of compilation album by; Will Smith)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0724\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5918700809054647\t0.0079\t340\t0.8095238095238095\t(fossils; be collecting from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania]\ttrue\tfalse\tBeecher 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5918436056751626\t0.0105\t340\t0.8076009501187649\t(borrowed spare grilles; left around; The car)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0105\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5916538187221042\t0.0191\t340\t0.8056872037914692\t(The body of an arthropod; is completely covered; an exoskeleton constructed from layers of protein and the polysaccharide chitin)\tfalse\tfalse\tThe body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0191\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5916538187221042\t0.0191\t340\t0.8037825059101655\t(The term sensory receptor; is used; the subcellular structure that interacts directly with stimuli)\tfalse\tfalse\tThe term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0191\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5907692685308328\t0.0416\t341\t0.8042452830188679\t(They; have; many mitochondria)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.5907127919780193\t0.0132\t342\t0.8047058823529412\t(a song; Also to be record in; 2003)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5907127919780193\t0.0132\t343\t0.8051643192488263\t(the possible benefits of transgenic products; Therefore must be assess on; a case-by-case basis)\tfalse\tfalse\tTherefore , 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 .\tcc(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5897937457611827\t0.0132\t344\t0.8056206088992974\t(a song; Also to be record for; an upcoming compilation CD to be released by the studio)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0132\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5886303995215769\t0.0066\t344\t0.8037383177570093\t(heart; be Capillaries in; the brain)\tfalse\tfalse\tCapillaries 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 .\tprep(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5886303995215769\t0.0066\t344\t0.8018648018648019\t(kidneys; be Capillaries in; the brain)\tfalse\tfalse\tCapillaries 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 .\tprep(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5882785665298204\t0.0084\t345\t0.8023255813953488\t(A seed; is; an embryo packaged with a supply of nutrients inside a protective coat)\tfalse\tfalse\tA seed is an embryo packaged with a supply of nutrients inside a protective coat .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5880793611284831\t0.0478\t346\t0.802784222737819\t(we; are afraid of; him)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5878607445626668\t0.3797\t347\t0.8032407407407407\t(Chesler; taught; one of the first Women 's Studies classes)\tfalse\tfalse\tChesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5876593463232525\t0.2444\t348\t0.8036951501154734\t(G. Vogel and C. Holden; leaps forward with; new stem cell advances)\tfalse\tfalse\tG. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224-1225 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5876593463232525\t0.2444\t349\t0.804147465437788\t(He; increases the board to; seven)\tfalse\tfalse\tHe increases the board to seven .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5876593463232525\t0.2444\t349\t0.8022988505747126\t(The first step; is from; the species being studied)\tfalse\tfalse\tThe first step after sequencing the molecules is to align comparable sequences from the species being studied .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5860187736032265\t0.0478\t350\t0.8027522935779816\t(Battaramulla; has always been an adjunct to; Kotte)\tfalse\tfalse\tBattaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5860181913612569\t0.3797\t351\t0.8032036613272311\t(He; began to practice; law)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t352\t0.8036529680365296\t(She; has practiced law with; Berry)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t353\t0.8041002277904328\t(She; has practiced law with; Conners)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t354\t0.8045454545454546\t(She; has practiced law with; Cummings)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t355\t0.8049886621315193\t(She; has practiced law with; Berry)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t356\t0.8054298642533937\t(She; has practiced law with; Conners)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5849427702308576\t0.0444\t357\t0.8058690744920993\t(She; has practiced law with; Cummings)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5829095199098192\t0.3797\t358\t0.8063063063063063\t(he; helped to lead; the Buckeyes)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5829095199098192\t0.3797\t359\t0.8067415730337079\t(Lenin; dispatched; Stalin)\tfalse\tfalse\tIn May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5829095199098192\t0.3797\t360\t0.8071748878923767\t(he; married; natural resources attorney Susan Daggett)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5829095199098192\t0.3797\t361\t0.8076062639821029\t(Strachan; entered; the World Gurning competition)\tfalse\tfalse\tWhile filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair .\tpcomp(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5827155897889873\t0.0478\t362\t0.8080357142857143\t(populations; are now common on; larger coastal or inland lakes)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5823301823411546\t0.0416\t363\t0.8084632516703786\t(They; merely collect; campaign contributions)\tfalse\tfalse\tThey merely collect campaign contributions from developers that help keep them in office .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5807484001086229\t0.0416\t363\t0.8066666666666666\t(their kidneys; have; small glomeruli or lack glomeruli)\tfalse\tfalse\tIn addition , their kidneys have small glomeruli or lack glomeruli entirely .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5788234976971409\t0.0314\t364\t0.8070953436807096\t(organisms; be interact with; each other and with the physical environment)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0314\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.5784091996809637\t0.0416\t365\t0.8075221238938053\t(such features; reflect; evolutionary relationships)\tfalse\tfalse\tIt is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.5783653057020448\t0.0216\t366\t0.8079470198675497\t(the final proration factor; was; 0.628394)\tfalse\tfalse\tCENTRUST 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5765929136731114\t0.0181\t367\t0.8083700440528634\t(He; to practice law in; Montgomery)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0181\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5761016414779094\t0.0901\t367\t0.8065934065934066\t(Berkeley; was born in; California)\tfalse\tfalse\tShe was born April 3 , 1951 in Berkeley , California .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0901\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5754331527329651\t0.0084\t368\t0.8070175438596491\t(Greatest Hits; is; a Best of compilation album)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5754331527329651\t0.0084\t369\t0.8074398249452954\t(The Cancer Genome Atlas; is; another example of systems biology)\tfalse\tfalse\tThe Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5747772927304482\t0.0124\t369\t0.8056768558951966\t(Cordero; be Federico Arturo Cordero Salguero in; Rio Piedras)\tfalse\tfalse\tCordero 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0124\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5747772927304482\t0.0124\t369\t0.803921568627451\t(Nero; be Francesco Sparanero in; San Prospero)\tfalse\tfalse\tNero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0124\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5746179307179987\t0.0119\t369\t0.8021739130434783\t(Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Young)\tfalse\tfalse\tSinger 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5744820207995127\t0.0104\t370\t0.8026030368763557\t(he; collaborate in; the design of post-war modern Puerto Rico)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0104\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5738443653632077\t0.0084\t371\t0.803030303030303\t(the average daily rate of energy consumption; is; 2 to 4 times BMR)\tfalse\tfalse\tFor most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5738062155902964\t0.0444\t372\t0.8034557235421166\t(Dell Curry; was chosen 7th overall in; the 2009 NBA Draft)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5730271818746745\t0.0132\t372\t0.8017241379310345\t(rise; will be give to; a uniform population of individuals)\tfalse\tfalse\tThis hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.5716672635784339\t0.0117\t373\t0.8021505376344086\t(acquisitions; to be made during; the next 12 to 18 months)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0117\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5713514580740163\t0.1443\t374\t0.8025751072961373\t(it; extends; finger-like projections)[enabler=As the trophoblast thickens through cell division]\ttrue\tfalse\tAs the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5695217074364729\t1.0\t375\t0.8029978586723768\t($ 100 million issue of collateralized mortgage obligations; is being offered in; four classes)\tfalse\tfalse\t$ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group .\tnumber($_$_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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5684589343575805\t0.0216\t376\t0.8034188034188035\t(Joseph Lombardo; was; one of numerous defendants)\tfalse\tfalse\tJoseph 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5677917544433635\t0.0393\t377\t0.8038379530916845\t(He; continued studying traditional arrangements under; Mohammad Reza Lotfi and his brother Pashang)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5676323328094277\t0.2444\t378\t0.8042553191489362\t(the trophoblast; thickens through; cell division)\tfalse\tfalse\tAs the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5658262861937702\t0.4031\t379\t0.8046709129511678\t(Cordis; be a maker of; medical devices)\tfalse\tfalse\tEarlier 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5646060062730449\t0.0292\t379\t0.8029661016949152\t(the kidneys; are conserving; water)\tfalse\tfalse\tWhen the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0292\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5642212988344875\t0.0155\t380\t0.8033826638477801\t(a 40 % drop; be posted for; the nine months)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5642212988344875\t0.0155\t381\t0.8037974683544303\t(the U.S. magazine business; be exited in; 2005)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5642212988344875\t0.0155\t382\t0.8042105263157895\t(codeshare flights; be launched in; 2005)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5642212988344875\t0.0155\t382\t0.8025210084033614\t(the differentiated cells; be transformed in; these cases)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.562007744171487\t0.0086\t382\t0.80083857442348\t(a Whore; was a co-founder member in; 1972)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0086\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5617550745798667\t0.7345\t383\t0.801255230125523\t(Chesler; taught one of the first Women 's Studies classes at; Richmond College)\tfalse\tfalse\tChesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5610079074004282\t0.0084\t384\t0.8016701461377871\t(The other route of viral infection; is; vertical transmission)\tfalse\tfalse\tThe other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5599594774405574\t0.2444\t384\t0.8\t(The first step; is to; align comparable sequences)\tfalse\tfalse\tThe first step after sequencing the molecules is to align comparable sequences from the species being studied .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5582169594629622\t0.3797\t385\t0.8004158004158004\t(Another historian; wrote; a report)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5573084488372717\t0.0314\t386\t0.8008298755186722\t(the Berlin Wall; was the escape route of 57 people to; the West)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0314\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5560828134606646\t0.1473\t387\t0.8012422360248447\t(Social Security benefits; will rise 4.7 % to keep; pace)[attrib=the Department of Health and Human Services announced]\tfalse\ttrue\tSocial 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5557095375453526\t0.1443\t388\t0.8016528925619835\t(ShareData; Currently has; about 4.1 million common shares outstanding)\tfalse\tfalse\tCurrently , ShareData has about 4.1 million common shares outstanding .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5552314946137654\t0.0478\t388\t0.8\t(he; are afraid of; him)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5546505942383269\t0.1473\t389\t0.8004115226337448\t(workers; would receive; a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5545045552537647\t0.7345\t389\t0.7987679671457906\t(Pike; said at; the Southern Commercial Convention of 1854)\tfalse\tfalse\tAt 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 . \" .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5537904298934632\t0.0444\t390\t0.7991803278688525\t(He; was interred in; Lakeside Cemetery)\tfalse\tfalse\tHe died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5533380815807473\t0.1443\t391\t0.7995910020449898\t(The song; has; two demo working titles)\tfalse\tfalse\tThe song has two demo working titles : \" Cheat \" and \" Drunk Girl \" , which leaked on the internet in November 2007 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5530772689180383\t0.0155\t392\t0.8\t(Plasmodium; be killed in; humans)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.5512642271568213\t0.02\t392\t0.7983706720977597\t(insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs; killed Plasmodium in; humans)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.02\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.5508108013180459\t0.0393\t393\t0.7987804878048781\t(the Reds; were playing the first place St . Louis Cardinals at; Crosley Field)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5498510263942883\t0.0022\t393\t0.7971602434077079\t(the Berlin Wall; was; the escape route of 57 people)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0022\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5495286421353275\t0.0216\t393\t0.7955465587044535\t(Wheeler Group; was; profitable)\tfalse\tfalse\tShe said Wheeler Group was profitable but would n't give figures .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5473352207912758\t0.0724\t394\t0.795959595959596\t(Rick Perry; became Governor of Texas in; January 2001)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0724\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5462589326873896\t0.0216\t395\t0.7963709677419355\t(officials; were; hopeful)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5459700113960823\t0.0477\t395\t0.7947686116700201\t(old; The oldest widely accepted fossils of; eukaryotic organisms)\tfalse\tfalse\tThe oldest widely accepted fossils of eukaryotic organisms are about 2.1 billion years old .\tdet(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5459700113960823\t0.0477\t396\t0.7951807228915663\t(vertical transmission; be The other route of; viral infection)\tfalse\tfalse\tThe other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent .\tdet(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5459335222184484\t0.0084\t397\t0.7955911823647295\t(the share issue; is; part of a strategy)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5456243359986689\t0.0191\t397\t0.794\t(He; was descended; an old aristocratic family)\tfalse\tfalse\tHe was descended from the B low family , an old aristocratic family from Mecklenburg .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0191\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5456243359986689\t0.0191\t397\t0.7924151696606786\t(Wheeler; was astonished; an organic compound present)\tfalse\tfalse\tWheeler was astonished to find that instead he had made urea , an organic compound present in the urine of animals .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0191\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5455267535574706\t0.0132\t398\t0.7928286852589641\t(pace; to be keep with; inflation)\tfalse\tfalse\tSocial 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5439744896422962\t0.0084\t399\t0.7932405566600398\t(The obligation; is totally; unwarranted)\tfalse\tfalse\t\" The obligation is totally unwarranted , \" the statement said .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5426987466067459\t0.0155\t400\t0.7936507936507936\t(the invasion of the Philippines; be led as; Commanding General of the newly formed Eighth Army)\tfalse\tfalse\tAs 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5426987466067459\t0.0155\t401\t0.7940594059405941\t(Imperial; be charged in; a separate complaint also filed in federal court)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0155\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5426042393393016\t0.0478\t401\t0.7924901185770751\t(amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly ectothermic in; contrast)\tfalse\tfalse\tIn contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5406604125320775\t0.0079\t402\t0.7928994082840237\t(the first place St . Louis Cardinals; were playing at; Crosley Field)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5396116147916034\t0.1473\t403\t0.7933070866141733\t(Prudential-Bache Securities; to reduce; its 1989 and 1990 earnings estimates)\tfalse\tfalse\tDisappointment 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 .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5396116147916034\t0.1473\t403\t0.7917485265225933\t(Scorpio sales; would take; Ford)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5396116147916034\t0.1473\t403\t0.7901960784313725\t(it; would take; Ford)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5394561925616146\t0.0084\t404\t0.7906066536203522\t(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)\tfalse\tfalse\t7939 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 .\tnum(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5382998270075379\t1.0\t404\t0.7890625\t(40F; be also known as; Cold Sunday)\tfalse\tfalse\tThe coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5363306587629391\t0.1473\t405\t0.7894736842105263\t(these percentages; may seem; small , such immigration)\tfalse\tfalse\tAlthough these percentages may seem small , such immigration is a meaningful biological exchange between populations over time .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5328442366240017\t0.0216\t406\t0.7898832684824902\t(Rick Perry; became; Governor of Texas)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0216\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n1\t0.532351738969508\t0.7345\t407\t0.7902912621359224\t(Mr. Miller; said after; the annual meeting)\tfalse\tfalse\tIn response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.530668651748959\t0.3797\t407\t0.7887596899224806\t(Jane Bennet; acclaimed; miniseries Lost)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5289125099564427\t0.1473\t408\t0.7891682785299806\t(an animal; must obtain; two types of organic precursors)\tfalse\tfalse\tTo build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food .\taux(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5284558179822167\t0.0416\t409\t0.7895752895752896\t(other low-profit personal computers; even now operate; several times as fast and have)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5275887502391947\t0.1443\t410\t0.789980732177264\t(The disease; kills; corals)\tfalse\tfalse\tThe disease kills corals by causing their tissue to slough off in a band from the base to the tip of the branches .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.5275161713003372\t0.0065\t410\t0.7884615384615384\t(Another historian; wrote at; Auschwitz)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5273257457611243\t0.0155\t411\t0.7888675623800384\t(a splash; be made with; her extraordinary performance)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5273257457611243\t0.0155\t412\t0.789272030651341\t(the differentiated cells; be transformed into; ES cells)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5273257457611243\t0.0155\t412\t0.7877629063097514\t(two revisions; has had since; its inception)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5269436743691202\t0.1473\t412\t0.7862595419847328\t(water molecules; to cross; the epithelium)\tfalse\tfalse\tWhen the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5269061834018879\t0.3797\t412\t0.7847619047619048\t(A.P. Green; told; the partnership)[attrib=East Rock Partners said]\tfalse\ttrue\tEast 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5263453782754063\t0.1473\t413\t0.785171102661597\t(the investors; would pay; a symbolic one lira)[attrib=Florio Fiorini said]\tfalse\ttrue\tFlorio 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5257627645962731\t0.4031\t414\t0.7855787476280834\t(Clarcor; be a maker of; packaging and filtration products)\tfalse\tfalse\tClarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5246302483847023\t0.0477\t415\t0.7859848484848485\t(the rare Japanese; were his friends like; Matsukata Masayoshi)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.524541264056057\t0.111\t416\t0.7863894139886578\t(a separate complaint; be also filed in; federal court)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5233332397654471\t0.0477\t417\t0.7867924528301887\t(milder when dinosaurs existed than it is today , it was cool; be the climate in; these areas)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5216560429482295\t0.0371\t417\t0.7853107344632768\t(the mining company; posted a 40 % drop in profit in; a 6 % rise)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0371\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5211930945409404\t0.0208\t418\t0.7857142857142857\t(Bruno DeGol; be a director of; this bank-holding company)\tfalse\tfalse\tBruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0208\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.5188524584381967\t0.0314\t419\t0.7861163227016885\t(the other organisms; are part of; an individual 's environment)\tfalse\tfalse\tLater 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 .\tdep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0314\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.5183661330806747\t0.2444\t419\t0.7846441947565543\t(it; means over; the long run)\tfalse\tfalse\t\" 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.517126497292583\t0.0307\t420\t0.7850467289719626\t(Pharyngeal slits; function as; suspension-feeding devices)\tfalse\tfalse\tPharyngeal slits function as suspension-feeding devices in many invertebrate chordates .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0307\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5171043233054161\t0.111\t421\t0.7854477611940298\t(an embryo; be packaged with; a supply of nutrients)\tfalse\tfalse\tA seed is an embryo packaged with a supply of nutrients inside a protective coat .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.516871592276184\t0.0155\t421\t0.7839851024208566\t(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)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5156169186502351\t0.7345\t422\t0.7843866171003717\t(The band; began recording demos for; their next album)\tfalse\tfalse\tThe band began recording demos for their next album at The Gallows Studio in Muncie , Indiana .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5152059095227164\t0.4031\t423\t0.7847866419294991\t(Petone; be a suburb of; the city of Lower Hutt)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5148985883044063\t0.0155\t424\t0.7851851851851852\t(a wider audience supporting U.S. goth-metal act Type O Negative; be reached in; 1997)\tfalse\tfalse\tIn 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5148985883044063\t0.0155\t425\t0.7855822550831792\t(Stalin; be dispatched in; May 1918)\tfalse\tfalse\tIn May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5148985883044063\t0.0155\t426\t0.7859778597785978\t(Princess Kane-no-Miya Fusako; be married on; April 29 , 1909)\tfalse\tfalse\tOn April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5148985883044063\t0.0155\t427\t0.7863720073664825\t(natural resources attorney Susan Daggett; be married on; October 26 , 1997)\tfalse\tfalse\tOn October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5147683030733742\t0.0151\t427\t0.7849264705882353\t(Cordis; agreed in; this year)\tfalse\tfalse\tEarlier 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 .\tadvmod(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0151\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5146238279939432\t0.0155\t427\t0.7834862385321101\t(a 40 % drop; be posted on; a 6 % rise)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5146238279939432\t0.0155\t428\t0.7838827838827839\t(eleven seasons; be played as; an outfielder)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5146238279939432\t0.0155\t429\t0.7842778793418648\t(eleven seasons; be played in; the majors)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5146238279939432\t0.0155\t430\t0.7846715328467153\t(most of its stake; be acquired in; an $ 11-a-share tender offer)\tfalse\tfalse\tMr. 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5146238279939432\t0.0155\t431\t0.785063752276867\t(identical samples of organic material; be placed on; the ground)\tfalse\tfalse\tResearchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5146238279939432\t0.0155\t432\t0.7854545454545454\t(a Master of Arts; be received in; war studies degree)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5136100371321917\t0.0084\t432\t0.7840290381125227\t(Dawes Township; is; one of eleven townships)\tfalse\tfalse\tDawes Township is one of eleven townships in Thurston County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5136100371321917\t0.0084\t433\t0.7844202898550725\t(Spring Creek Township; is; one of thirty-one townships)\tfalse\tfalse\tSpring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5132047287937115\t0.0103\t433\t0.783001808318264\t(whose children; had been required in; an anti-Nazi Protestant family)\tfalse\tfalse\tVisiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth .\tdobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0103\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.5132001320009082\t0.0132\t433\t0.7815884476534296\t(us; be Tell about; spending restraint)\tfalse\tfalse\tTell us about spending restraint .\tdobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5130736193948331\t0.0191\t434\t0.781981981981982\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0191\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5127766180029698\t0.0119\t434\t0.7805755395683454\t(Dhoni; be his 4,000 runs in; ODIs)\tfalse\tfalse\tDhoni , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5127766180029698\t0.0119\t434\t0.7791741472172352\t(He; be his move on; 4 June 2008)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5119946982576229\t0.0095\t434\t0.7777777777777778\t(Dawes Township; be eleven townships in; Thurston County)\tfalse\tfalse\tDawes Township is one of eleven townships in Thurston County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0095\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5119946982576229\t0.0095\t434\t0.776386404293381\t(Spring Creek Township; be thirty-one townships in; Custer County)\tfalse\tfalse\tSpring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0095\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5116362985238608\t0.0084\t434\t0.775\t(Cedric Roussel; is currently the books R.A.E.C. Mons; a Belgian football striker)\tfalse\tfalse\tCedric Roussel is a Belgian football striker currently on the books of R.A.E.C. Mons .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.5115059683622137\t0.008\t435\t0.7754010695187166\t(He; will remain; chairman)\tfalse\tfalse\tHe will remain chairman .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.008\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.5097231740818472\t0.0444\t435\t0.7740213523131673\t(the union; had paid a fee to; former House Speaker Jim Wright)\tfalse\tfalse\tIn Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.5077099888301128\t0.4031\t436\t0.7744227353463587\t(Rabaul; be the Japanese naval base at; Kavieng)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5077099888301128\t0.4031\t436\t0.7730496453900709\t(Austen; be a modern twist on; Austen 's Pride)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5077099888301128\t0.4031\t436\t0.7716814159292036\t(Austen; be a modern twist on; Prejudice)\tfalse\tfalse\tChristie 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5066112146742117\t0.0416\t437\t0.7720848056537103\t(primates; have a large brain giving them; a flat face)\tfalse\tfalse\tRelative to other mammals , primates have a large brain and short jaws , giving them a flat face .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5066112146742117\t0.0416\t438\t0.7724867724867724\t(primates; have short jaws giving them; a flat face)\tfalse\tfalse\tRelative to other mammals , primates have a large brain and short jaws , giving them a flat face .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5056491596060483\t0.2444\t439\t0.772887323943662\t(e-catenin; also helps to control gastrulation in; the sea anemone Nematostella vectensis)\tfalse\tfalse\tAthula 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5051946130926066\t0.1473\t439\t0.7715289982425307\t(her; find; a new girlfriend portayed by VS Brodie)\tfalse\tfalse\tTurner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.1473\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.5051928132868242\t0.9555\t439\t0.7701754385964912\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5051666160985558\t0.1443\t440\t0.7705779334500875\t(he; threatens; us)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5051666160985558\t0.1443\t441\t0.7709790209790209\t(we; threatens; us)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.5038105262250819\t0.4031\t442\t0.7713787085514834\t(the San Juan; be the capital of; Puerto Rico)\tfalse\tfalse\tCordero 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.5038105262250819\t0.4031\t443\t0.7717770034843205\t(Princess Kane-no-Miya Fusako; be the seventh daughter of; Emperor Meiji)\tfalse\tfalse\tOn April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.49852100431361857\t0.021\t444\t0.7721739130434783\t(Wellington; be region in; New Zealand)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.021\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.49796021131614765\t0.0577\t444\t0.7708333333333334\t(Jamaica , wary; has apparently instructed; its lobbyist to abandon the provision)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0577\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.49795321143304855\t0.0132\t445\t0.7712305025996534\t(Labatt 's balance sheet; to be strengthen in; anticipation of acquisitions)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4959782867339064\t0.0132\t446\t0.7716262975778547\t(law; to be practice in; Montgomery)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4959782867339064\t0.0132\t447\t0.772020725388601\t(Arthur E. Himebaugh; will be succeed as; general manager)\tfalse\tfalse\tHe will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4959782867339064\t0.0132\t448\t0.7724137931034483\t(life; to be contemplate without; his wife)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4950655602055952\t0.0104\t448\t0.7710843373493976\t(he; to move in; 1944)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0104\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4949221745817766\t0.7345\t449\t0.7714776632302406\t(Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson to; the February 6)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.49456041461840994\t0.0577\t450\t0.7718696397941681\t(we; have agreed to raise; the capital that will enable the company to continue operating)\tfalse\tfalse\tFlorio 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0577\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4945330178777349\t0.0478\t451\t0.7722602739726028\t(the blood; remains separate in; the body cavity)\tfalse\tfalse\tCephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4944136324661812\t0.0084\t452\t0.7726495726495727\t(The Wellington Inn; is now; a major tourist attraction)\tfalse\tfalse\tByrom 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 .\tnsubjpass(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4944136324661812\t0.0084\t453\t0.773037542662116\t(She; 's; a Whore)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.49357855308592763\t0.0132\t453\t0.7717206132879046\t(demand; would be overwhelm in; coming sessions)\tfalse\tfalse\tThe issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.49353356056035064\t0.0057\t453\t0.7704081632653061\t(Valley National , of Phoenix; be substantial further provisions against; its real-estate portfolio)\tfalse\tfalse\tMoody '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0057\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4930028568273039\t0.1349\t454\t0.7707979626485568\t(the South; should remain in; the Union)[attrib=Pike said]\tfalse\ttrue\tAt 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 . \" .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.49073306129747174\t0.0195\t454\t0.7694915254237288\t(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]\ttrue\tfalse\tAchmat 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0195\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.4889184149823566\t0.0216\t454\t0.7681895093062606\t(He; then was; able)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.4874608297172945\t0.0307\t454\t0.7668918918918919\t(their kidneys; have small glomeruli or lack glomeruli entirely in; addition)\tfalse\tfalse\tIn addition , their kidneys have small glomeruli or lack glomeruli entirely .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0307\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4867730867159159\t0.02\t455\t0.7672849915682968\t(the senior vice president of Gulf Power; died in; April)\tfalse\tfalse\tWitnesses 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.02\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.48574566359506116\t0.1443\t456\t0.7676767676767676\t(it; ferments; various foods)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4833195922554681\t0.0084\t456\t0.7663865546218488\t(An aqueous solution; is; one)\tfalse\tfalse\tAn aqueous solution is one in which water is the solvent .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.48325945949651994\t0.0132\t457\t0.7667785234899329\t(gastrulation; to be control in; the sea anemone Nematostella vectensis)\tfalse\tfalse\tAthula 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.48325945949651994\t0.0132\t458\t0.7671691792294807\t(a pivotal role; be play in; community dynamics)\tfalse\tfalse\tCertain 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.48325945949651994\t0.0132\t458\t0.7658862876254181\t(the Buckeyes; to lead to be; a national championship)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.48325945949651994\t0.0132\t459\t0.7662771285475793\t(a new group president to head that operation; to be name following; the Nov. 8 board meeting)\tfalse\tfalse\tMr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.48325945949651994\t0.0132\t460\t0.7666666666666667\t(a similar turnaround; to be guide at; the company 's latest acquisition)\tfalse\tfalse\tRichard 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4816965824748495\t0.0084\t460\t0.7653910149750416\t(one; is; the solvent)\tfalse\tfalse\tAn aqueous solution is one in which water is the solvent .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.48117570153082395\t0.0068\t460\t0.7641196013289037\t(the restructuring; to have; any impact , adverse)\tfalse\tfalse\tThe company said the restructuring is n't expected to have any impact , adverse or otherwise , on its financial results .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0068\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4809196699219445\t0.0054\t460\t0.7628524046434494\t(He; to appoint; all new leaders most of the people he appointed as governors were young men)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0054\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.48063409267013224\t0.2444\t461\t0.7632450331125827\t(the blood supply; varies over; time)\tfalse\tfalse\tCapillaries 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.48028762259208335\t0.1349\t461\t0.7619834710743801\t(supply; would overwhelm demand in; coming sessions)\tfalse\tfalse\tThe issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.4789322811397672\t0.1473\t462\t0.7623762376237624\t(He; will succeed; Arthur E. Himebaugh)\tfalse\tfalse\tHe will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.47874841103002486\t0.4031\t463\t0.7627677100494233\t(Imperial Cup Corp.; a closely held maker of; paper cups based in Kenton , Ohio)\tfalse\tfalse\tFederal 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.4031\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4783659158229946\t0.1349\t464\t0.7631578947368421\t(He; does n't believe in; the religion of Islam)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4783639195676089\t0.0079\t464\t0.7619047619047619\t(traditional arrangements; continued studying under; Mohammad Reza Lotfi and his brother Pashang)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.47795609917503007\t0.1443\t465\t0.7622950819672131\t(It; takes encouragement to persuade; David)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.47795609917503007\t0.1443\t465\t0.7610474631751227\t(It; takes; encouragement)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.47437008359407457\t0.0151\t466\t0.761437908496732\t(Scorpio sales; plummeted in; This year)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0151\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.47437008359407457\t0.0151\t466\t0.7601957585644372\t(it; plummeted in; This year)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0151\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.47394043463339497\t0.1443\t467\t0.760586319218241\t(a bolus of food; reaches; the pharynx)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.47369949700306646\t0.0477\t468\t0.7609756097560976\t(a notable success; be Wolfowitz 's tenure as; Ambassador)\tfalse\tfalse\tBut Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native .\tpossessive(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4732778856874525\t0.1349\t469\t0.7613636363636364\t(an animal; must obtain two types of organic precursors from; its food)\tfalse\tfalse\tTo build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food .\taux(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4703440491602804\t0.0067\t470\t0.7617504051863857\t(a base of 1981; be uses by; The index)\tfalse\tfalse\tThe index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September .\tdet(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.46821731067109257\t0.2444\t470\t0.7605177993527508\t(the right hemisphere; appears in; contrast)\tfalse\tfalse\tIn contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.46781436629484396\t0.1473\t471\t0.7609046849757674\t(it; would drop; its opposition)[enabler=if Ciba-Geigy and Chiron are successful with their lower bid]\ttrue\tfalse\tThe university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.4661803179999748\t0.0961\t472\t0.7612903225806451\t(Wellington; be region of; New Zealand)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0961\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.46551583273167924\t0.111\t473\t0.7616747181964574\t(an asteroid; be named for; Dr. Erik I. Asphaug)\tfalse\tfalse\t7939 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 .\tnum(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.46551583273167924\t0.111\t474\t0.7620578778135049\t(an indoor arena; be located in; Montreal)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.46551583273167924\t0.111\t475\t0.7624398073836276\t(a new girlfriend; be portayed by; VS Brodie)\tfalse\tfalse\tTurner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4652728025065972\t0.1443\t476\t0.7628205128205128\t(The announcement; follows; a sharper $ 2.2 billion decline)\tfalse\tfalse\tThe announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.46501028469893946\t0.0155\t477\t0.7632\t(codeshare flights; be launched to; Germany)\tfalse\tfalse\tIn 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4626753634208457\t0.0083\t478\t0.7635782747603834\t(Hatch; worked in; law)\tfalse\tfalse\tFor fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0083\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.462622858063677\t0.0155\t479\t0.7639553429027113\t(a $ 400,000 federal court jury verdict; be won in; a case that threatens a popular advertising industry practice)\tfalse\tfalse\tSinger 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4625456926041092\t0.0079\t480\t0.7643312101910829\t(a Best of compilation album; released; January 2002)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4616140822615996\t0.0084\t480\t0.7631160572337043\t(It; is; the presence of internal and external \" enemies which justifies the need for a large , active army)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0084\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.46068492633986097\t0.0961\t480\t0.7619047619047619\t(Hezbollah; be members during; the 2006 Lebanon War)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0961\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4601711647495456\t0.0416\t481\t0.7622820919175911\t(I; read; a sign)[enabler=as we whoosh through]\ttrue\tfalse\t\" Tivoli Motel , \" I read a sign in the usual pronunciation of the name as we whoosh through .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4601711647495456\t0.0416\t482\t0.7626582278481012\t(Tivoli Motel; read; a sign)[enabler=as we whoosh through]\ttrue\tfalse\t\" Tivoli Motel , \" I read a sign in the usual pronunciation of the name as we whoosh through .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.45955774301394303\t0.0292\t483\t0.7630331753554502\t(the Reds; trailing; 13-0)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game]\ttrue\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0292\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.45924779989663594\t0.3797\t484\t0.7634069400630915\t(Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.45407996303731263\t0.0477\t485\t0.7637795275590551\t(the deadliest aspect of the quake; be The failure of; the freeway segment known as the Cypress structure)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0477\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.45352751956536486\t0.0055\t485\t0.7625786163522013\t(Scorpio sales; to sell off; the current Scorpio inventory of about 4,600 cars)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0055\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.45352751956536486\t0.0055\t485\t0.7613814756671899\t(it; to sell off; the current Scorpio inventory of about 4,600 cars)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0055\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4523647102918165\t0.1473\t486\t0.7617554858934169\t(we; must choose; a method inferring phylogeny from these homologous characters)\tfalse\tfalse\tNext we must choose a method of inferring phylogeny from these homologous characters .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.1473\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4509934391319137\t0.4031\t487\t0.7621283255086072\t(Newport; be a maker of; electronic-measuring devices)\tfalse\tfalse\tMr. 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.44987909808234355\t0.0577\t488\t0.7625\t(He; has made; frequent trips)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.44987909808234355\t0.0577\t489\t0.7628705148205929\t(She; has practiced; law)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.44987909808234355\t0.0577\t490\t0.7632398753894081\t(She; has practiced; law)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.44980188306713714\t0.3797\t491\t0.7636080870917574\t(The band; began recording; demos)\tfalse\tfalse\tThe band began recording demos for their next album at The Gallows Studio in Muncie , Indiana .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\n0\t0.44952293925622205\t0.0079\t491\t0.7624223602484472\t(Germany; be Visiting in; 1937)\tfalse\tfalse\tVisiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth .\tdobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4482709563354432\t0.0577\t492\t0.7627906976744186\t(tank-killer teams; armed to destroy; the attacking North Korean T)\tfalse\tfalse\tHis 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 .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.44774312624186197\t0.0066\t492\t0.7616099071207431\t(seafood; be various foods including; canned meat)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.44614650937085476\t0.0393\t493\t0.7619783616692427\t(someone; was looking for; him)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.44604747390934923\t0.0416\t494\t0.7623456790123457\t(The certificates; have an estimated average life of 1.8 years assuming; monthly prepayments)\tfalse\tfalse\tThe certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0416\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.44559070122718913\t0.0444\t495\t0.7627118644067796\t(She; has also served on; several task forces)\tfalse\tfalse\tShe has also served on several task forces on acquired immune deficiency syndrome .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.44486195302212744\t0.0393\t496\t0.7630769230769231\t(the company; is no longer looking for; an equity investor)[attrib=Mr. Miller said]\tfalse\ttrue\tIn response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.44250879190852044\t0.0109\t496\t0.7619047619047619\t(McMillan and McMillan; be her husband in; the Clarksville firm)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.44250879190852044\t0.0109\t496\t0.7607361963190185\t(McMillan and McMillan; be her husband in; the Clarksville firm)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.44170471840033315\t0.0084\t496\t0.7595712098009189\t(it; is; today)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.44140349130120327\t0.008\t497\t0.7599388379204893\t(a foreign molecule; First must be; present)\tfalse\tfalse\tFirst , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.008\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4409415752492755\t0.0071\t497\t0.7587786259541984\t(essence; went native to; he)\tfalse\tfalse\tBut Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native .\tpossessive(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)\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0071\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.4406560351964406\t0.0125\t498\t0.7591463414634146\t(the high surface-to-volume ratio; goes with; small size)\tfalse\tfalse\tBecause 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 .\tdep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0125\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.43898499980461975\t0.0119\t498\t0.7579908675799086\t(he; be the invasion of; the Philippines)\tfalse\tfalse\tAs 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.43898499980461975\t0.0119\t499\t0.7583586626139818\t(the company; be lower-than-forecast sales of; Easy Eggs)\tfalse\tfalse\tWhen the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.43859670740081824\t0.0577\t500\t0.7587253414264037\t(Dell Curry; was chosen; 7th overall)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.4384418841888025\t0.0155\t501\t0.759090909090909\t(one of the first Women 's Studies classes; be taught during; the 1969-1970 school year)\tfalse\tfalse\tChesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.43792549970477\t0.0086\t501\t0.7579425113464447\t(large; be group of; interacting genes and gene products)\tfalse\tfalse\tThe Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0086\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4375842712624847\t0.0195\t501\t0.756797583081571\t(Amuro; to solo; activities)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4375842712624847\t0.0195\t502\t0.7571644042232277\t(He; to practice; law)\tfalse\tfalse\tHe began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.43747953206616313\t0.0181\t503\t0.7575301204819277\t(he; to perform as; a part of a two-hander)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0181\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.43715314382460063\t0.0065\t504\t0.7578947368421053\t(Another historian; wrote on; the gassing facilities)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.43713503460830516\t0.0181\t504\t0.7567567567567568\t(Amuro; to solo activities on; her own)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0181\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.43646629243022217\t0.021\t505\t0.7571214392803598\t(Southern Great Plain; be region in; southern Hungary)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.021\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4359852478205229\t0.0195\t505\t0.7559880239520959\t(Manager Bill McKechnie; to enter; the game)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4355635229268553\t0.0132\t506\t0.7563527653213752\t(a song; Also to be record by; Destiny 's Child)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.435146807117044\t0.0119\t506\t0.755223880597015\t(Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Rubicam)\tfalse\tfalse\tSinger 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4343309472409519\t0.0444\t507\t0.7555886736214605\t(Dell Curry; was chosen 7th overall by; the Golden State Warriors)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0444\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.43402533690244155\t0.0084\t507\t0.7544642857142857\t(It; is; important)\tfalse\tfalse\tIt is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.43396618596204656\t0.0132\t508\t0.7548291233283804\t(two types of organic precursors; must be obtain from; its food)\tfalse\tfalse\tTo build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food .\taux(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.43396618596204656\t0.0132\t508\t0.7537091988130564\t(Equitec; would be replace as; the newly formed master limited partnership 's general partner and manager)\tfalse\tfalse\tUnder 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4335498245290546\t0.0119\t508\t0.7525925925925926\t(Strachan; be the World Gurning competition at; Egremont Crab Fair)\tfalse\tfalse\tWhile filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair .\tpcomp(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.43292869903379066\t0.7345\t509\t0.7529585798816568\t(He; completed his move to Premier League side Fulham on 4 June 2008 for; an undisclosed fee)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.43292869903379066\t0.7345\t510\t0.7533234859675036\t(He; completed his move to Premier League side Fulham on 4 June 2008 on; a two-year deal)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.43288490210095915\t0.1349\t511\t0.7536873156342183\t(birth control pills; slightly raise a woman 's risk of abnormal blood clotting among; nonsmokers)\tfalse\tfalse\tAmong nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.43288490210095915\t0.1349\t512\t0.7540500736377025\t(workers; would receive a 3 % bonus in; the second year)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4328159682462656\t0.3797\t512\t0.7529411764705882\t(the squadron; began taking; part)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n1\t0.43280379216607134\t0.1473\t513\t0.7533039647577092\t(Both radial glia and astrocytes; can also act generating; new neurons and glia)\tfalse\tfalse\tBoth radial glia and astrocytes can also act as stem cells , generating new neurons and glia .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4324933295834237\t0.0086\t513\t0.7521994134897361\t(other; be Hezbollah members during; the 2006 Lebanon War)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0086\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.43242931921560007\t0.0084\t514\t0.7525622254758418\t(it; is; not fail-safe)\tfalse\tfalse\tAlthough adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4322147242411709\t0.1473\t515\t0.7529239766081871\t(Social Security benefits; will rise 4.7 % boosting; the average monthly benefit)[attrib=the Department of Health and Human Services announced]\tfalse\ttrue\tSocial 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.43191731766169394\t0.0068\t516\t0.7532846715328467\t(whose children; to join; the Hitler Youth)\tfalse\tfalse\tVisiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth .\tdobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0068\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.43188532238260585\t0.0067\t517\t0.7536443148688047\t(he; to name a new group president to head that operation following; the Nov. 8 board meeting)\tfalse\tfalse\tMr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4316095584452342\t0.0132\t518\t0.7540029112081513\t(most of their heat; be gain from; external sources)\tfalse\tfalse\tIn contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.4302470664810216\t0.0117\t519\t0.7543604651162791\t(an upcoming compilation CD; to be released by; the studio)\tfalse\tfalse\tAlso , 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 .\tprep(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0117\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.4282487012320344\t1.0\t519\t0.7532656023222061\t(she; be confirmed by; the Senate)\tfalse\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.42784973755588496\t0.0101\t519\t0.7521739130434782\t(new; post of; vice president of world-wide advanced materials operations)\tfalse\tfalse\tDenis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0101\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.427744185522122\t0.0623\t519\t0.7510853835021708\t(he; looked to; dead cells)\tfalse\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0623\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.42508740840778103\t0.0292\t520\t0.7514450867052023\t(He; continued studying; traditional arrangements)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0292\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4239303990024235\t0.0577\t520\t0.7503607503607503\t(the union; had paid; a fee)\tfalse\tfalse\tIn Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.4210002057059459\t0.0478\t521\t0.7507204610951008\t(it; is particularly interested in; Tesoro 's refinery)[enabler=because it would fill a gap in its business]\ttrue\tfalse\tHarken , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0478\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4201771056078315\t0.0084\t522\t0.7510791366906475\t(Dell Curry; is; the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4200913508546778\t0.0079\t522\t0.75\t(part; be taking in; the air)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4200913508546778\t0.0079\t522\t0.7489239598278336\t(songs; be mating in; two cryptic)\tfalse\tfalse\tSource C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4200913508546778\t0.0079\t523\t0.7492836676217765\t(an item; be filming in; 2002)\tfalse\tfalse\tWhile filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair .\tpcomp(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4197431192517617\t0.9555\t524\t0.7496423462088698\t(GDP; is the total value of; a nation 's output of goods and services)\tfalse\tfalse\tGDP is the total value of a nation 's output of goods and services .\tnsubj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.4192136175373511\t0.2444\t524\t0.7485714285714286\t(it; appears for; the short term)\tfalse\tfalse\t\" 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 .\tnsubj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.41814271626192945\t0.0444\t524\t0.7475035663338089\t(DNA analyses; have shown in; the case of naked mole rats)\tfalse\tfalse\tIn the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.41791111331319275\t0.0314\t525\t0.7478632478632479\t(the Berlin Wall; was the escape route of 57 people from; East Berlin)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0314\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4175596909617927\t0.0477\t526\t0.748221906116643\t(2 to 4 times BMR; be the average daily rate of; energy consumption)\tfalse\tfalse\tFor most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4171241291162316\t0.1349\t526\t0.7471590909090909\t(Scorpio sales; would take Ford at; the current sales pace)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4163360117195252\t0.1443\t527\t0.7475177304964539\t(He; increases; the board)\tfalse\tfalse\tHe increases the board to seven .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.4162219032464996\t0.0444\t528\t0.7478753541076487\t(tank-killer teams; armed with; the newly-arrived 3.5-inch rocket launchers)\tfalse\tfalse\tHis 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 .\tposs(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.41609808530031317\t0.7345\t528\t0.7468175388967468\t(Jr.; linked Senator Panfilo Lacson to; the February 6)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.4151964978696182\t0.0065\t528\t0.7457627118644068\t(Browning; wrote at; Auschwitz)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4133688412944222\t0.111\t529\t0.7461212976022567\t(paper cups; be based in; Kenton)\tfalse\tfalse\tFederal 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4133688412944222\t0.111\t530\t0.7464788732394366\t(a military coup; be headed by; colonel Oscar R. Benavides , Javier and Manuel Prado)\tfalse\tfalse\tGuillermo 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4129968064278692\t0.0724\t531\t0.7468354430379747\t(the average daily rate of energy consumption; is 2 to 4 times BMR for; most terrestrial animals)\tfalse\tfalse\tFor most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0724\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.41027380476553393\t0.0216\t532\t0.7471910112359551\t(his friends , like Matsukata Masayoshi , and others; were; the rare Japanese)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0216\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.40979618501360465\t0.0105\t532\t0.7461430575035063\t(East Rock Partners; said; A.P. Green)\tfalse\tfalse\tEast 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0105\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4088416499899885\t0.111\t533\t0.7464985994397759\t(the provision; be initially drafted by; Mr. Gray)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4083506267176189\t0.0155\t534\t0.7468531468531469\t(basketball; be played at; Davidson College)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.40834212241124346\t0.0292\t535\t0.7472067039106145\t(the Reds; were playing; the first place St . Louis Cardinals)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0292\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.407400804271439\t0.1473\t536\t0.7475592747559274\t(owners; should return; the cars)[attrib=Ford said]\tfalse\ttrue\tFord said owners should return the cars to dealers so the windshields can be removed and securely reinstalled .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4067759523634959\t0.0901\t537\t0.7479108635097493\t(Kenton; be based in; Ohio)\tfalse\tfalse\tFederal 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0901\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4050655320579212\t0.2444\t538\t0.7482614742698191\t(Mikhail Gorbachev 's Soviet Union; continues to supply with; bullets)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.40490090011857394\t0.0961\t539\t0.7486111111111111\t(Southern Great Plain; be region of; southern Hungary)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0961\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.4035029734186021\t0.1349\t540\t0.7489597780859917\t(owners; should return the cars to; dealers)[attrib=Ford said]\tfalse\ttrue\tFord said owners should return the cars to dealers so the windshields can be removed and securely reinstalled .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.1349\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.40252443126781057\t0.4031\t541\t0.7493074792243767\t(Florio Fiorini; managing director of; Geneva-based Sasea)\tfalse\tfalse\tFlorio 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.4031\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4023693675777794\t0.0444\t542\t0.7496542185338866\t(gold; that has risen over; the past week or so)\tfalse\tfalse\t\" 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.40133867275007556\t0.1349\t543\t0.75\t(the phloem; Thus can serve a nerve-like function allowing for; swift electrical communication)\tfalse\tfalse\tThus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.4006455591547758\t0.006\t543\t0.7489655172413793\t(he; be Years after; his marriage)\tfalse\tfalse\tYears after his marriage to Gemma , he met Beatrice again .\tprep(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.006\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.4006348014371212\t0.1473\t544\t0.7493112947658402\t(it; might make; a bid)\tfalse\tfalse\tEast 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.4006348014371212\t0.1473\t545\t0.749656121045392\t(Valley National , of Phoenix; to make; substantial further provisions)\tfalse\tfalse\tMoody '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.40008993331478143\t0.1349\t546\t0.75\t(he; does n't believe in; the religion of Islam)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.40008993331478143\t0.1349\t546\t0.7489711934156379\t(we; does n't believe in; the religion of Islam)\tfalse\tfalse\tHe threatens us and we are all afraid of him and he does n't believe in the religion of Islam .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.39969579255083065\t0.1443\t547\t0.7493150684931507\t(Susan; phones; the real estate agency)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.39952304890617457\t0.0393\t547\t0.7482900136798906\t(1944 the squadron; was operating by; January 27)\tfalse\tfalse\tBy 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39952304890617457\t0.0393\t548\t0.7486338797814208\t(the Reds; were playing the first place St . Louis Cardinals on; June 10)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0393\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39927338255682643\t0.0066\t549\t0.7489768076398363\t(Cleveland Indians; be an outfielder for; the Milwaukee Braves)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.39927338255682643\t0.0066\t549\t0.7479564032697548\t(Houston Astros; be an outfielder for; the Milwaukee Braves)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.39927338255682643\t0.0066\t549\t0.746938775510204\t(Washington Senators; be an outfielder for; the Milwaukee Braves)\tfalse\tfalse\tHe played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox .\tnsubj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3990343199642683\t0.0724\t549\t0.7459239130434783\t(Greatest Hits; is a Best of; compilation album)\tfalse\tfalse\tGreatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0724\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.3965328306168747\t0.1443\t550\t0.746268656716418\t(adaptive immunity; offers; significant protection)\tfalse\tfalse\tAlthough adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3945868140188066\t0.0195\t551\t0.7466124661246613\t(Rome; to rule; the Greek cities)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.3944159741652931\t0.0132\t552\t0.7469553450608931\t(a woman 's risk of abnormal blood clotting; be slightly raise among; nonsmokers)\tfalse\tfalse\tAmong nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3944159741652931\t0.0132\t552\t0.745945945945946\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3936969721212025\t0.0079\t553\t0.7462887989203779\t(his illegitimate daughter Euphrosyne; be marrying to; Nogai Khan of the Golden Horde)\tfalse\tfalse\tMichael 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0079\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3936459870303665\t0.7345\t553\t0.7452830188679245\t(Mr. Miller; said in; response)\tfalse\tfalse\tIn response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39325594190296304\t0.0084\t554\t0.7456258411843876\t(Mrs. Coleman; is; the Maidenform strategist)\tfalse\tfalse\tMrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0084\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.39302843067752957\t1.0\t554\t0.7446236559139785\t(its common stock dividend; be reinstated at; a \" modest level)\tfalse\tfalse\tCMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a \" modest level \" later this year .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\n0\t0.3923860388041124\t0.0066\t554\t0.7436241610738255\t(consciousness; be the study of; human cognition)\tfalse\tfalse\tFunctional brain imaging has been applied to the study of human cognition , consciousness , and emotion .\tamod(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3923860388041124\t0.0066\t554\t0.7426273458445041\t(rivers; be the waters of; streams)\tfalse\tfalse\tLand 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 .\tnn(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)\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.39181989041263826\t0.0103\t555\t0.7429718875502008\t(a large group of interacting genes and gene products; are analyzed together in; systems biology)\tfalse\tfalse\tThe Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together .\tdet(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0103\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39166472230122723\t0.02\t556\t0.7433155080213903\t(Cheat \" and \" Drunk Girl; leaked in; November 2007)\tfalse\tfalse\tThe song has two demo working titles : \" Cheat \" and \" Drunk Girl \" , which leaked on the internet in November 2007 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.02\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.390970927896387\t0.1443\t556\t0.7423230974632844\t(it; expects to make; substantial further provisions)[attrib=Moody said]\tfalse\ttrue\tMoody '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 .\tpossessive(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)\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39082254617266304\t0.111\t557\t0.7426666666666667\t(its efforts; be begun in; 1989)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n1\t0.39069246686877734\t0.2444\t558\t0.7430093209054593\t(it; is n't for; sale)\tfalse\tfalse\tEast 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3898706420134547\t0.036\t558\t0.7420212765957447\t(Omaha; be the north end in; Nebraska)\tfalse\tfalse\tThe Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.036\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.38974162820825553\t0.0079\t559\t0.7423638778220452\t(the first place St . Louis Cardinals; were playing on; June 10)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3873449532161556\t0.0109\t560\t0.7427055702917772\t(DeGol Brothers Lumber; be chairman of; Gallitzin)\tfalse\tfalse\tBruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.38668316487931237\t0.006\t560\t0.7417218543046358\t(They; be a large amount of; an oxygen-storing protein)\tfalse\tfalse\tSuch 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.006\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.3861158442151012\t0.0478\t561\t0.7420634920634921\t(Mr. Allday 's appointment; is subject to; confirmation)\tfalse\tfalse\tMr. Allday 's appointment is subject to confirmation by the Senate .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.3849025796350723\t0.1349\t561\t0.7410832232496698\t(it; would take Ford at; the current sales pace)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3836729620561133\t0.0132\t562\t0.741424802110818\t(them; be keep in; office)\tfalse\tfalse\tThey merely collect campaign contributions from developers that help keep them in office .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.382632280799396\t0.1349\t562\t0.7404479578392622\t(a freely mating population; will give rise over; many generations)\tfalse\tfalse\tThis hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals .\tdet(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.38211366497419724\t0.0109\t563\t0.7407894736842106\t(Thurston County; be eleven townships in; United States)\tfalse\tfalse\tDawes Township is one of eleven townships in Thurston County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.38211366497419724\t0.0109\t564\t0.7411300919842313\t(Hualien City; is a township near; Taiwan)\tfalse\tfalse\tJi-an , Hualien , is a township near Hualien City , Taiwan .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.38211366497419724\t0.0109\t565\t0.7414698162729659\t(Custer County; be thirty-one townships in; United States)\tfalse\tfalse\tSpring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.38211366497419724\t0.0109\t565\t0.7404980340760158\t(Atlanta; is a Queen Anne style house in; Georgia)\tfalse\tfalse\tThe Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.38100591900063385\t0.0073\t566\t0.7408376963350786\t(the fiscal third quarter; be ended in; Aug. 31)\tfalse\tfalse\tInterspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0073\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.380341261132203\t0.0125\t567\t0.7411764705882353\t(the subcellular structure; interacts directly with; stimuli)\tfalse\tfalse\tThe term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0125\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.3770735952807681\t0.0155\t568\t0.741514360313316\t(three tackles; be had on; December 10)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3769946758038716\t0.0065\t569\t0.741851368970013\t(Another historian; wrote on; the evidence)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.37680754998492677\t0.1473\t569\t0.7408854166666666\t(they; gain; most of their heat)\tfalse\tfalse\tIn contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.3761159172154244\t0.0057\t569\t0.7399219765929779\t(it; be a bid for; the company)\tfalse\tfalse\tEast 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0057\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3750804465207591\t0.0119\t569\t0.7389610389610389\t(He; be his move to; Premier League side Fulham)\tfalse\tfalse\tHe completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.3742486199402444\t0.1443\t570\t0.7392996108949417\t(this approach called reverse genetics; poses; a new challenge)\tfalse\tfalse\tBut this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3740112786844178\t0.0084\t571\t0.7396373056994818\t(Ji-an; is; a township)\tfalse\tfalse\tJi-an , Hualien , is a township near Hualien City , Taiwan .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.3740112786844178\t0.0084\t572\t0.7399741267787839\t(Lakitelek; is; a large village)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.3740112786844178\t0.0084\t573\t0.7403100775193798\t(Lorenzo R. Stone House; is; a historic house)\tfalse\tfalse\tLorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.3740112786844178\t0.0084\t573\t0.7393548387096774\t(Mr. Allday 's appointment; is; subject)\tfalse\tfalse\tMr. Allday 's appointment is subject to confirmation by the Senate .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.3740112786844178\t0.0084\t574\t0.7396907216494846\t(North Luffenham; is; a village)\tfalse\tfalse\tNorth Luffenham is a village in Rutland , in the East Midlands of England .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.3740112786844178\t0.0084\t575\t0.7400257400257401\t(Plouzani; is; a commune)\tfalse\tfalse\tPlouzani is a commune in the Finistre department in Bretagne in northwestern France .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.37259542692146636\t0.0079\t575\t0.7390745501285347\t(Vasques; be playing in; Tis Pity)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.37259542692146636\t0.0079\t576\t0.7394094993581515\t(quarterback Tom Brady; be tackling for; a five-yard loss)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3714964425578336\t0.2444\t577\t0.7397435897435898\t(Lucian; continues to; brood)\tfalse\tfalse\tLenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3711724206753627\t0.1349\t578\t0.7400768245838668\t(they; gain most of their heat from; external sources)\tfalse\tfalse\tIn contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.3698868169915362\t0.2444\t579\t0.7404092071611253\t(it; continues to suffer from; the high cost carrying nonperforming assets)[attrib=Moody said]\tfalse\ttrue\tMoody '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.2444\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.36984747554522823\t0.3797\t580\t0.7407407407407407\t(Browning; wrote; a report)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3684196799499456\t0.2444\t581\t0.7410714285714286\t(the root; depends on; the shoot)\tfalse\tfalse\tRoot apical meristems also produce auxin , although the root depends on the shoot for much of its auxin .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3659601870463054\t0.0132\t582\t0.7414012738853503\t(the cars; should be return to; dealers)[attrib=Ford said]\tfalse\ttrue\tFord said owners should return the cars to dealers so the windshields can be removed and securely reinstalled .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0132\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3641362963184191\t0.111\t583\t0.7417302798982188\t(lambda; be written with; the Greek letter)\tfalse\tfalse\tA temperate phage called lambda , written with the Greek letter , is widely used in biological research .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3638125708664116\t0.0314\t583\t0.7407878017789072\t(the Berlin Wall; was the escape route of; 57 people)\tfalse\tfalse\tDuring 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0314\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.36344528815769384\t0.0071\t583\t0.7398477157360406\t(first; be seen in; 1665)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree]\ttrue\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0071\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3623222159183762\t0.0227\t584\t0.7401774397972116\t(Dean; be armed with; the newly-arrived 3.5-inch rocket launchers)\tfalse\tfalse\tHis 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 .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0227\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3620520294261897\t0.0478\t584\t0.739240506329114\t(Ciba-Geigy and Chiron; are successful with; their lower bid)\tfalse\tfalse\tThe university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0478\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.36164469694171136\t0.1443\t585\t0.7395701643489254\t(the market 's strong reaction; reflects; a general uneasiness)[attrib=Some dealers said]\tfalse\ttrue\tSome dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.3613586670198179\t0.0195\t585\t0.7386363636363636\t(he; to Thai; Paradorn Srichaphan)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0195\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3607758324689645\t0.0079\t586\t0.7389659520807061\t(the board; be expanding to; 11 members)\tfalse\tfalse\tBruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3607758324689645\t0.0079\t586\t0.7380352644836272\t(the phenotype; be determining from; the genotype)\tfalse\tfalse\tBut this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3607758324689645\t0.0079\t587\t0.7383647798742138\t(a pebble; be dropping into; a pond)\tfalse\tfalse\tElectromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3607758324689645\t0.0079\t588\t0.7386934673366834\t(phylogeny; be inferring from; these homologous characters)\tfalse\tfalse\tNext we must choose a method of inferring phylogeny from these homologous characters .\tmark(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.36044786837561094\t0.1473\t589\t0.739021329987453\t(the South; seek; equality)[attrib=Pike said]\tfalse\ttrue\tAt 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 . \" .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.359664639398116\t0.02\t590\t0.7393483709273183\t(Stephen Curry; played basketball at; Davidson College)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.02\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3594649423619765\t0.0132\t591\t0.7396745932415519\t(activities; to be solo on; her own)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.35907471579469535\t0.0119\t592\t0.74\t(he; be three tackles including; 1.5 sacks)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.35862468602310377\t0.0104\t593\t0.7403245942571786\t(he; to move to; Puerto Rico)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0104\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.35813481401187625\t0.0478\t594\t0.7406483790523691\t(the blood; remains separate from; fluid)\tfalse\tfalse\tCephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0478\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.35476110701020963\t0.006\t594\t0.7397260273972602\t(Ford; said of; owners)\tfalse\tfalse\tFord said owners should return the cars to dealers so the windshields can be removed and securely reinstalled .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.006\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.3545289393299356\t0.0724\t595\t0.7400497512437811\t(Rick Perry; became Governor of; Texas)\tfalse\tfalse\tWhen 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0724\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\n0\t0.352555002152722\t0.0282\t595\t0.7391304347826086\t(student; be Royal Military College of; Canada)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0282\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3518477200881743\t0.0282\t595\t0.7382133995037221\t(North Carolina; be Davidson College in; Davidson)\tfalse\tfalse\tDell 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 .\tnn(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0282\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3510288155762372\t0.02\t596\t0.7385377942998761\t(the senior vice president of Gulf Power; died in; the plane crash)\tfalse\tfalse\tWitnesses 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.02\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.34969321202788156\t0.0155\t597\t0.7388613861386139\t(Bulgaria; be pillaged as; a Byzantine ally)\tfalse\tfalse\tMichael 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.34896876533134014\t0.0162\t598\t0.7391841779975278\t(Rexford Tugwell; be planner for; New Deal brain trust)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0162\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.34896876533134014\t0.0162\t598\t0.7382716049382716\t(trust planner Rexford Tugwell; be brain for; New Deal)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0162\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3487993918716189\t0.1473\t598\t0.7373612823674476\t(supply; would overwhelm; demand)\tfalse\tfalse\tThe issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.34808052568367903\t0.0132\t598\t0.7364532019704434\t(Ford; would be take at; the current sales pace)\tfalse\tfalse\tThis 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 .\tdet(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3464124449885764\t0.0084\t598\t0.7355473554735548\t(the blood; remains; separate)\tfalse\tfalse\tCephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.34590527828508477\t0.0132\t598\t0.7346437346437347\t(rise; will be give over; many generations)\tfalse\tfalse\tThis hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals .\tdet(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.34573008746944356\t0.0021\t598\t0.7337423312883435\t(the rare Japanese; had gained; some education)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0021\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.345451461082249\t0.0066\t598\t0.7328431372549019\t(York-based Hallwood Group Inc.; be the proposal by; Equitec)\tfalse\tfalse\tUnder 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 .\tpobj(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0066\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3439900554103357\t0.0067\t599\t0.7331701346389229\t(a popular advertising industry practice using \" sound-alike \" performers to tout products; be threatens by; a case)\tfalse\tfalse\tSinger 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 .\tnn(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n0\t0.3412652759731273\t0.0623\t599\t0.7322738386308069\t(Pike; said to; the Southern Commercial Convention of 1854)\tfalse\tfalse\tAt 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 . \" .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0623\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3402858130617332\t0.1473\t599\t0.7313797313797313\t(a freely mating population; will give; rise)\tfalse\tfalse\tThis hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.340277911009636\t0.111\t600\t0.7317073170731707\t(a larger facility; be designed by; Maya Lin)\tfalse\tfalse\tIn 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3386014625853597\t0.1443\t600\t0.730816077953715\t(e-catenin; also helps to control; gastrulation)\tfalse\tfalse\tAthula 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 .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3367875187596867\t0.1492\t601\t0.7311435523114356\t(Rexford Tugwell; be planner of; New Deal brain trust)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1492\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3367875187596867\t0.1492\t602\t0.7314702308626975\t(trust planner Rexford Tugwell; be brain of; New Deal)\tfalse\tfalse\tHaving 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 .\taux(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1492\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.33483242914292427\t0.0128\t603\t0.7317961165048543\t(the death toll; might be significantly lower than; 250 initially feared)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0128\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.33406172606196227\t0.3797\t603\t0.730909090909091\t(Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.3797\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.333063161580075\t0.0067\t603\t0.7300242130750605\t(Mikhail Gorbachev 's Soviet Union; to supply with; bullets)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.33160810624428727\t0.1473\t604\t0.7303506650544136\t(we; can not fully explain; a higher level of order)\tfalse\tfalse\tOn the one hand , we can not fully explain a higher level of order by breaking it down into its parts .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3300218136329411\t0.0109\t604\t0.7294685990338164\t(the 1998 H. C. Urey Prize and a professor; be recipient of; Santa Cruz)\tfalse\tfalse\t7939 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 .\tnum(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3300218136329411\t0.0109\t604\t0.7285886610373945\t(Omaha; be the north end of; Nebraska)\tfalse\tfalse\tThe Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0109\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.32961828526584036\t0.0095\t604\t0.727710843373494\t(Bics-Kiskun county; be the Southern Great Plain region of; southern Hungary)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0095\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.3275723445676998\t0.0961\t605\t0.7280385078219013\t(Finistre; be department in; Bretagne)\tfalse\tfalse\tPlouzani is a commune in the Finistre department in Bretagne in northwestern France .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0961\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.32611442714398514\t0.7345\t606\t0.7283653846153846\t(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]\ttrue\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.32561690221860234\t0.0083\t606\t0.7274909963985594\t(Pike; said in; the Southern Commercial Convention of 1854)\tfalse\tfalse\tAt 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 . \" .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0083\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.32401891525502385\t0.0067\t607\t0.7278177458033573\t(the need; be justifies by; the presence of internal and external \" enemies)\tfalse\tfalse\tIt 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 .\tnsubj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0067\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3228364010311089\t0.0307\t607\t0.7269461077844311\t(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]\ttrue\tfalse\tLand 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 .\tnn(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)\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0307\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t1.0\n0\t0.32236525142050676\t0.0292\t607\t0.7260765550239234\t(shareholder Max Grill of New York; squandering; the company 's assets)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0292\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.32171811897955555\t0.0132\t607\t0.7252090800477897\t(a claim; to be insert by; the Philippines)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.31902467958877745\t0.4031\t608\t0.7255369928400954\t(Dr. Erik I. Asphaug; be recipient of; the 1998 H. C. Urey Prize and a professor)\tfalse\tfalse\t7939 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 .\tnum(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.4031\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.31883266314736386\t0.0071\t608\t0.7246722288438617\t(first; be seen by; Robert Hooke)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree]\ttrue\tfalse\tCell 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0071\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.31632804768618916\t0.0079\t608\t0.7238095238095238\t(downriver; be sailing to; the Persian Gulf)\tfalse\tfalse\tHe captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.31632804768618916\t0.0079\t608\t0.72294887039239\t(countryman Tommy Robredo; be defeating in; the second round)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.31632804768618916\t0.0079\t609\t0.7232779097387173\t(an 11-yard sack of Brady; be sharing with; defensive tackle Vonnie Holliday)\tfalse\tfalse\tOn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.3142555775934053\t0.0079\t609\t0.7224199288256228\t(a high body temperature; be maintaining through; ectothermy)\tfalse\tfalse\tFurthermore , 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 .\tadvmod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.3105256048279929\t0.0067\t610\t0.7227488151658767\t(about 800 retail gas stations; be owns by; Harken)\tfalse\tfalse\tHarken , 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 .\tpunct(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.3097776093741795\t0.0577\t611\t0.7230769230769231\t(the grand jury; has asked; numerous questions)\tfalse\tfalse\tWitnesses 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3097109029157713\t0.3797\t611\t0.7222222222222222\t(Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians; Ehud Goldwasser and Eldad Regev)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.308861688167056\t0.0084\t611\t0.7213695395513577\t(society; is; willing)\tfalse\tfalse\tTherefore , 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 .\tcc(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.3085181988096567\t0.111\t612\t0.7216981132075472\t(the infectious particle; be now known as; tobacco mosaic virus)\tfalse\tfalse\tHis suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus .\tposs(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.30715844813761695\t0.0331\t612\t0.7208480565371025\t(New Zealand; be region in; Wellington)\tfalse\tfalse\tHutt 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 .\tnn(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0331\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.3044025740296432\t0.02\t613\t0.7211764705882353\t(Nogai Khan of the Golden Horde; pillaged Bulgaria as; a Byzantine ally)\tfalse\tfalse\tMichael 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.02\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.30421898282603377\t0.0132\t613\t0.7203290246768508\t(the original paper; be analyze in; Inquiry)\tfalse\tfalse\tRead and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers .\tcc(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.30394134341279455\t0.0477\t614\t0.7206572769953051\t(the deadliest aspect of the quake; be The failure in Oakland of the freeway segment in; Oakland)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0477\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.30345497264145543\t0.0477\t614\t0.7198124267291911\t(purify the waters of streams , rivers , and lakes; the filtering activities of; freshwater bivalves)\tfalse\tfalse\tLand 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 .\tnn(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3021855508008761\t0.7345\t614\t0.7189695550351288\t(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)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.3014901362258629\t0.7345\t614\t0.7181286549707603\t(you; learned for; example)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\n1\t0.2992073584390562\t0.0162\t615\t0.7184579439252337\t(Jim Cornette; be manager of; Vader)\tfalse\tfalse\tAs Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0162\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2964373979040095\t0.1473\t616\t0.7187864644107351\t(it; would fill; a gap)\tfalse\tfalse\tHarken , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1473\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.2945940387262835\t0.0162\t617\t0.7191142191142191\t(C.J. Wilson; be pitcher for; Texas Rangers)\tfalse\tfalse\tHis season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson .\tposs(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0162\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.2897411382445026\t0.0071\t617\t0.7182770663562281\t(response; said to; Mr. Miller)\tfalse\tfalse\tIn response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor .\tpobj(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)\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0071\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2889658386073632\t0.7345\t617\t0.7174418604651163\t(Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2889658386073632\t0.7345\t617\t0.7166085946573751\t(Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2889658386073632\t0.7345\t618\t0.7169373549883991\t(Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in; exchange)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2882037519386529\t0.0065\t619\t0.7172653534183082\t(Browning; wrote on; the gassing facilities)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.28563566605776536\t0.006\t619\t0.7164351851851852\t(Pike; said of; the South)\tfalse\tfalse\tAt 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 . \" .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.006\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.28348434400719724\t0.1492\t620\t0.7167630057803468\t(C.J. Wilson; be pitcher of; Texas Rangers)\tfalse\tfalse\tHis season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson .\tposs(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1492\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.28112065091369526\t0.0901\t621\t0.7170900692840647\t(Montreal; be located in; Canada)\tfalse\tfalse\tThe Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0901\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.2788421890632288\t0.7345\t622\t0.7174163783160323\t(Prince Kitashirakawa; married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on; April 29 , 1909)\tfalse\tfalse\tOn April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2788421890632288\t0.7345\t623\t0.717741935483871\t(Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2788421890632288\t0.7345\t624\t0.7180667433831991\t(Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2788421890632288\t0.7345\t625\t0.7183908045977011\t(Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on; July 16 2008)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2777133130201241\t0.1443\t625\t0.7175660160734788\t(Lenneth; tells; him)\tfalse\tfalse\tLenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.2773012516628655\t0.0155\t625\t0.716743119266055\t(their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; May 2006)\tfalse\tfalse\tNow 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 .\tdep(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.2736663139421735\t1.0\t625\t0.715922107674685\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2726426369064801\t0.111\t626\t0.7162471395881007\t(a 3 % wage boost and a 3 % bonus; be followed by; a 3 % increase)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.111\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.27118821818699634\t0.0444\t627\t0.7165714285714285\t(he; besieged the town in; 190 BC)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\n1\t0.2711377820853715\t0.4031\t628\t0.7168949771689498\t(Jacob F. \" Jake \" Horton; be the senior vice president of; Gulf Power)\tfalse\tfalse\tWitnesses 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.4031\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2701597941429324\t0.0095\t628\t0.7160775370581528\t(Joseph Lombardo; be numerous defendants in; the government 's sweeping racketeering suit)\tfalse\tfalse\tJoseph 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0095\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.2691256472923294\t0.0192\t628\t0.715261958997722\t(Flagellated sperm swim; entering the archegonia in; response)\tfalse\tfalse\tFlagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0192\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n1\t0.26856409396877384\t0.02\t629\t0.7155858930602957\t(Cheat \" and \" Drunk Girl; leaked on; the internet)\tfalse\tfalse\tThe song has two demo working titles : \" Cheat \" and \" Drunk Girl \" , which leaked on the internet in November 2007 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.02\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.26781122932777474\t0.111\t630\t0.7159090909090909\t(a song; be written by; the Dave Matthews Band)\tfalse\tfalse\tThe Space Between is a song written by the Dave Matthews Band .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.111\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.2674129657910275\t0.0155\t631\t0.7162315550510783\t(one of the first Women 's Studies classes; be taught at; Richmond College)\tfalse\tfalse\tChesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.2651201299329215\t0.0065\t632\t0.7165532879818595\t(Browning; wrote on; the evidence)\tfalse\tfalse\tAnother 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0065\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.261186270271414\t0.7345\t633\t0.7168742921857305\t(Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam in; a case that threatens a popular advertising industry practice)\tfalse\tfalse\tSinger 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 .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.2602689412869481\t0.3797\t633\t0.7160633484162896\t(Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked; Senator Panfilo Lacson)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.25880317118186125\t0.0079\t634\t0.7163841807909604\t(a signal; be transmitting over; long distances)\tfalse\tfalse\tAction potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances .\tnn(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.25798224628800415\t0.0119\t635\t0.7167042889390519\t(he; be a Master of; Arts)\tfalse\tfalse\tWhile 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 .\tdep(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.2567293934561119\t0.0331\t635\t0.7158962795941376\t(southern Hungary; be region in; Southern Great Plain)\tfalse\tfalse\tLakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary .\tnsubj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0331\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.2565178699697837\t0.0084\t635\t0.7150900900900901\t(it; is particularly; interested)\tfalse\tfalse\tHarken , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.25299570924899534\t0.0079\t636\t0.7154105736782902\t(Applied Power Inc.; be transforming in; the global market)\tfalse\tfalse\tRichard 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.25299570924899534\t0.0079\t637\t0.7157303370786516\t(Applied Power Inc.; be transforming into; a feisty player)\tfalse\tfalse\tRichard 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.25299570924899534\t0.0079\t638\t0.7160493827160493\t(an item; be filming for; Countryfile)\tfalse\tfalse\tWhile filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair .\tpcomp(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.25227566039598587\t0.7345\t638\t0.7152466367713004\t(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)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.2473339107155083\t0.0119\t638\t0.7144456886898096\t(it; the previously announced purchase of; Imperial Cup Corp.)\tfalse\tfalse\tFederal 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 .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0119\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.24672366389798675\t0.0067\t638\t0.7136465324384788\t(strong ties; be has by; Mr. Inouye)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0067\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.24349764043648267\t0.0079\t639\t0.7139664804469273\t(the archegonia; be entering in; response)\tfalse\tfalse\tFlagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.24007594315179578\t0.0067\t640\t0.7142857142857143\t(it; to suffer from; the high cost carrying nonperforming assets)\tfalse\tfalse\tMoody '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 .\tpossessive(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0067\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.23864402766794252\t0.9555\t641\t0.7146042363433668\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.9555\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.23342222907298363\t0.0132\t642\t0.7149220489977728\t(Equitec; would be replace under; the proposal)\tfalse\tfalse\tUnder 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.22943532654374016\t0.0444\t643\t0.7152391546162402\t(adaptations; have evolved enable most aquatic animals to be very efficient in gas exchange in; the context of these challenges)\tfalse\tfalse\tIn the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.22447191468175065\t0.0191\t643\t0.7144444444444444\t(he; is not captured; home)\tfalse\tfalse\tHowever his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation .\tposs(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0191\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n1\t0.22277700681354495\t0.111\t644\t0.7147613762486127\t(the freeway segment; be known as; the Cypress structure)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.111\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2227673107089999\t0.7345\t645\t0.7150776053215078\t(the band; reached a wider audience supporting U.S. goth-metal act Type O Negative in; 1997)\tfalse\tfalse\tIn 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.22254466022892352\t0.0079\t645\t0.7142857142857143\t(it; be breaking into; its parts)\tfalse\tfalse\tOn the one hand , we can not fully explain a higher level of order by breaking it down into its parts .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.22163287485371197\t0.006\t645\t0.713495575221239\t(he; said of; I)\tfalse\tfalse\t\" 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 .\tnsubj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.006\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t1.0\n1\t0.21851645044959095\t0.1443\t646\t0.7138121546961326\t(Susan; phones the real estate agency to tell; Jerry)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1443\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2182239652508405\t0.0084\t646\t0.7130242825607064\t(Mr. Inouye; is; able)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0084\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.21709886071443948\t0.0416\t647\t0.7133406835722161\t(76 %; have; a favorable opinion of her)\tfalse\tfalse\tAmong professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0416\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.21626093986258596\t0.1349\t647\t0.7125550660792952\t(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)\tfalse\tfalse\tTherefore , 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 .\tcc(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.21477367315706544\t0.0132\t647\t0.7117711771177118\t(a higher level of order; can be not fully explain on; the one hand)\tfalse\tfalse\tOn the one hand , we can not fully explain a higher level of order by breaking it down into its parts .\tpobj(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)\t0.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0132\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.20960831565057927\t0.0155\t647\t0.710989010989011\t(0.1 %; be rose on; a seasonally adjusted basis)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.20893674207645418\t0.0084\t648\t0.7113062568605928\t(GDP; is; the total value of a nation 's output of goods and services)\tfalse\tfalse\tGDP is the total value of a nation 's output of goods and services .\tnsubj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0084\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\n0\t0.2087794370410841\t0.0079\t648\t0.7105263157894737\t(countryman Tommy Robredo; be defeating in; the first round and Italian Davide Sanguinetti)\tfalse\tfalse\tHe 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 .\tnsubj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.2087794370410841\t0.0079\t648\t0.7097480832420592\t(its women 's magazine portfolio; be selling to; the Meredith Corporation and its business magazine portfolio)\tfalse\tfalse\tIn 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 .\tpobj(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.2087794370410841\t0.0079\t649\t0.7100656455142232\t(demos; be recording for; their next album)\tfalse\tfalse\tThe band began recording demos for their next album at The Gallows Studio in Muncie , Indiana .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.20810428267890088\t0.1349\t649\t0.7092896174863388\t(we; can not fully explain a higher level of order on; the one hand)\tfalse\tfalse\tOn the one hand , we can not fully explain a higher level of order by breaking it down into its parts .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.2080512889741795\t0.7345\t650\t0.7096069868995634\t(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)\tfalse\tfalse\tAs 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.7345\t1.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.20719804071979295\t0.0079\t651\t0.7099236641221374\t(the soil; be affecting in; a way)\tfalse\tfalse\tThe 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 .\tdet(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\n0\t0.20374160519204396\t0.3797\t651\t0.7091503267973857\t(Jr.; linked; Senator Panfilo Lacson)\tfalse\tfalse\tArmed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2016678985903059\t0.0444\t651\t0.7083786724700761\t(chemiosmosis; has helped of; its central importance)\tfalse\tfalse\tBecause of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics .\tdep(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.2010895709903177\t0.0079\t651\t0.7076086956521739\t(Mr. Miller; said; response)\tfalse\tfalse\tIn response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.1971501007736681\t0.0444\t651\t0.7068403908794788\t(chemiosmosis; its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify; the study of bioenergetics)\tfalse\tfalse\tBecause of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics .\tdep(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0444\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.19148155610938786\t0.7345\t652\t0.7071583514099783\t(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)\tfalse\tfalse\tAfter 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t1.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.18521423976058438\t0.7345\t652\t0.7063921993499458\t(July; saw bringing to; an ignominious close)[enabler=As if early elimination from the playoff race was n't enough]\ttrue\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.17953692638336752\t0.0155\t652\t0.7056277056277056\t(their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; nearly two decades)\tfalse\tfalse\tNow 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 .\tdep(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.17876001014411533\t0.3797\t653\t0.705945945945946\t(Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly; Immediately instituted; legal action)\tfalse\tfalse\tImmediately , 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 .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.17805830632398745\t0.0054\t653\t0.7051835853131749\t(Mr. Inouye; to insert; a claim)\tfalse\tfalse\tJamaica , 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 .\tpunct(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0054\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.17757573578880137\t0.0577\t654\t0.7055016181229773\t(he; besieged; the town)\tfalse\tfalse\tBut 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 .\tdet(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0577\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\n0\t0.1763505556877926\t0.3797\t654\t0.7047413793103449\t(he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing; an 11-yard sack of Brady)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t1.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.171405556467821\t0.0079\t654\t0.7039827771797632\t(13-0; be trailing in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game]\ttrue\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0079\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.16973592019305225\t1.0\t654\t0.7032258064516129\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.16770193788121904\t0.2444\t655\t0.7035445757250268\t(he; expects to name a new group president to head that operation following; the Nov. 8 board meeting)[attrib=Mr. Bailey said]\tfalse\ttrue\tMr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.2444\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.16532737265460923\t0.7345\t655\t0.7027896995708155\t(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)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.16256196782354992\t0.0155\t655\t0.7020364415862809\t(the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.16256196782354992\t0.0155\t655\t0.7012847965738758\t(the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.16136428146081588\t0.7345\t656\t0.7016042780748664\t(Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio to; the Meredith Corporation and its business magazine portfolio)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.15589581465104194\t0.0155\t656\t0.7008547008547008\t(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)\tfalse\tfalse\tAnd 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 .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.15461839701478508\t0.0305\t656\t0.7001067235859125\t(its common stock dividend; be reinstated in; this year)\tfalse\tfalse\tCMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a \" modest level \" later this year .\tnn(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0305\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\n1\t0.14704461479396946\t0.3797\t657\t0.7004264392324094\t(July; saw suffer; two 8-0 demolitions)[enabler=As if early elimination from the playoff race was n't enough]\ttrue\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t1.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.14281035771963146\t0.0071\t657\t0.6996805111821086\t(1980; came to; He)\tfalse\tfalse\tHe came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang .\tnsubj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0071\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n1\t0.14232393373584143\t0.1473\t658\t0.7\t(Dr. Novello; would succeed; C. Everett Koop)[enabler=If she is nominated by President Bush and confirmed by the Senate]\ttrue\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t1.0\t0.0\t0.1473\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.13456659745447175\t0.3797\t658\t0.6992561105207227\t(he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.3797\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.1314968860500101\t0.0155\t658\t0.6985138004246284\t(0.1 %; be rose in; September)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.1314968860500101\t0.0155\t658\t0.6977730646871686\t(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)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.1314968860500101\t0.0155\t658\t0.6970338983050848\t(the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.13137131096445323\t0.0155\t658\t0.6962962962962963\t(0.1 %; be rose from; the previous month)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.13137131096445323\t0.0155\t658\t0.6955602536997886\t(0.1 %; be rose to; 2.5 million)\tfalse\tfalse\tIn September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis .\tpobj(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)\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n0\t0.12054297199339997\t0.0079\t658\t0.6948257655755016\t(Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam; a case that threatens a popular advertising industry practice)\tfalse\tfalse\tSinger 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 .\tnn(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0079\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t1.0\n0\t0.11816614735714406\t0.7345\t658\t0.6940928270042194\t(he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses on; December 10)\tfalse\tfalse\tOn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.7345\t0.0\t1.0\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.11729588290783442\t0.1349\t659\t0.6944151738672286\t(the team; suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season)\tfalse\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.1349\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.11420136506504475\t0.0509\t659\t0.6936842105263158\t(PLC; has practiced law with; Boult)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0509\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.11420136506504475\t0.0509\t659\t0.6929547844374343\t(PLC; has practiced law with; Boult)\tfalse\tfalse\tShe 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 .\tnsubj(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)\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0509\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.11360950693592399\t0.1349\t660\t0.6932773109243697\t(he; will receive an $ 107,500 annually , or $ 537,000 total , from; the Booster club)\tfalse\tfalse\tAs 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.10183616495893723\t0.0132\t661\t0.6935991605456453\t(two 8-0 demolitions; be suffer by; Des Moines Menace and in the last game of the season)\tfalse\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0132\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.0981908038196948\t0.1349\t661\t0.6928721174004193\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.09287150831236092\t0.0307\t662\t0.6931937172774869\t(76 %; have a favorable opinion of her among; professionals)\tfalse\tfalse\tAmong professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance .\tpobj(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)\t1.0\t1.0\t1.0\t1.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0307\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.09127825067320518\t0.0509\t662\t0.6924686192468619\t(2003; be released on; March 6)\tfalse\tfalse\tAmuro returned to solo activities on her own with the single \" Shine More \" , released on March 6 , 2003 .\tnsubj(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)\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0509\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.08526106540263802\t0.1473\t663\t0.6927899686520376\t(the team; suffer; two 8-0 demolitions)\tfalse\tfalse\tAs 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 .\tamod(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)\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.1473\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.08254269274013405\t0.1349\t664\t0.6931106471816284\t(he; will receive an $ 107,500 annually , or $ 537,000 total , as; a part of Jeff Bowden 's agreement)\tfalse\tfalse\tAs 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n0\t0.08166781495966251\t0.0477\t664\t0.6923879040667362\t(pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility for; example)\tfalse\tfalse\tFor 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 .\tpobj(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)\t0.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0477\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\n0\t0.07024024418080231\t0.0388\t664\t0.6916666666666667\t(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)\tfalse\tfalse\tIn 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 .\tpobj(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)\t1.0\t1.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0388\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\n1\t0.06811636875046262\t0.1349\t665\t0.6919875130072841\t(he; will receive an $ 107,500 annually , or $ 537,000 total , through; August 2012)\tfalse\tfalse\tAs 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 .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.1349\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.058232215411916234\t0.02\t666\t0.6923076923076923\t(C. Everett Koop; rattled conservatives alike with; his outspoken views)\tfalse\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.02\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.058232215411916234\t0.02\t667\t0.6926272066458983\t(C. Everett Koop; rattled liberals alike with; his outspoken views)\tfalse\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.02\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.0579112400897685\t0.0155\t668\t0.6929460580912863\t(liberals and conservatives; be rattled alike with; his outspoken views)\tfalse\tfalse\tIf 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 .\tmark(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)\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t1.0\t0.0\t0.0155\t0.0\t1.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n1\t0.04122387589030051\t0.0025\t669\t0.6932642487046632\t(62 %; approve of; her husband 's performance)\tfalse\tfalse\tAmong professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance .\tpobj(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)\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0025\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t1.0\t0.0\t0.0\t0.0\t0.0\t0.0\t0.0\n"
  },
  {
    "path": "core/pom.xml",
    "content": "<?xml version=\"1.0\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <parent>\n    <groupId>edu.washington.cs.knowitall</groupId>\n    <artifactId>knowitall-oss</artifactId>\n    <version>1.0.2</version>\n  </parent>\n  <groupId>edu.washington.cs.knowitall.ollie</groupId>\n  <artifactId>ollie-core_2.9.2</artifactId>\n  <version>1.0.4-SNAPSHOT</version>\n  <name>ollie-core</name>\n  <description>Ollie is an open information extractor for binary relations.</description>\n  <scm>\n    <url>https://github.com/knowitall/ollie</url>\n    <connection>scm:git://github.com/knowitall/ollie.git</connection>\n    <developerConnection>scm:git:git@github.com:knowitall/ollie.git</developerConnection>\n    <tag>HEAD</tag>\n  </scm>\n  <licenses>\n    <license>\n      <name>Ollie Software License Agreement</name>\n      <url>https://raw.github.com/knowitall/ollie/master/LICENSE</url>\n      <distribution>repo</distribution>\n    </license>\n  </licenses>\n  <organization>\n    <name>University of Washington CSE</name>\n    <url>http://cs.washington.edu/</url>\n  </organization>\n  <developers>\n    <developer>\n      <name>Michael Schmitz</name>\n    </developer>\n    <developer>\n      <name>Robert Bart</name>\n    </developer>\n  </developers>\n  <inceptionYear>2012</inceptionYear>\n  <properties>\n    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n    <nlptools.version>2.4.1</nlptools.version>\n  </properties>\n  <dependencies>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-core_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-stem-morpha_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-conf-breeze_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <dependency>\n      <groupId>org.scalaz</groupId>\n      <artifactId>scalaz-core_2.9.2</artifactId>\n      <version>7.0.0</version>\n    </dependency>\n    <!-- Logging -->\n    <dependency>\n      <groupId>org.slf4j</groupId>\n      <artifactId>slf4j-api</artifactId>\n      <version>1.7.2</version>\n    </dependency>\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-classic</artifactId>\n      <version>1.0.9</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-core</artifactId>\n      <version>1.0.9</version>\n      <scope>test</scope>\n    </dependency>\n    <!-- Test -->\n    <dependency>\n      <groupId>junit</groupId>\n      <artifactId>junit</artifactId>\n      <version>4.11</version>\n      <scope>test</scope>\n    </dependency>\n    <dependency>\n      <groupId>org.specs2</groupId>\n      <artifactId>specs2_2.9.2</artifactId>\n      <version>1.12.3</version>\n      <scope>test</scope>\n    </dependency>\n  </dependencies>\n  <build>\n    <sourceDirectory>src/main/scala</sourceDirectory>\n    <testSourceDirectory>src/test/scala</testSourceDirectory>\n    <plugins>\n      <plugin>\n        <groupId>net.alchim31.maven</groupId>\n        <artifactId>scala-maven-plugin</artifactId>\n        <version>3.1.1</version>\n        <executions>\n          <execution>\n            <goals>\n              <goal>compile</goal>\n              <goal>testCompile</goal>\n              <goal>doc-jar</goal>\n            </goals>\n          </execution>\n        </executions>\n        <configuration>\n          <args>\n            <arg>-deprecation</arg>\n            <arg>-unchecked</arg>\n          </args>\n          <jvmArgs>\n            <jvmArg>-Xms128m</jvmArg>\n            <jvmArg>-Xmx1024m</jvmArg>\n          </jvmArgs>\n        </configuration>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "core/project/plugins.sbt",
    "content": "resolvers += Resolver.url(\"sbt-plugin-releases\", new URL(\"http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases\")) (Resolver.ivyStylePatterns)\n\naddSbtPlugin(\"com.jsuereth\" % \"xsbt-gpg-plugin\" % \"0.6\")\n"
  },
  {
    "path": "core/scripts/applypatterns.sh",
    "content": "# 1 -- patterns\n# 2 -- sentences\nmvn -q -e -f ../pom.xml compile exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.PatternExtractor -Dexec.args=\"--patterns $1 --sentences $2\"\n"
  },
  {
    "path": "core/scripts/build_templates.sh",
    "content": "mkdir \"$1/templates/\"\nmvn 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/\"\n"
  },
  {
    "path": "core/scripts/create_patterns.sh",
    "content": "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\n"
  },
  {
    "path": "core/scripts/create_test_train.sh",
    "content": "# 1 -- lda directory\nROWS=\"$1/raw/patterned.txt\"\nTEST=\"$1/raw/test.txt\"\nTRAIN=\"$1/raw/train.txt\"\nmvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.lda.CreateTestSet -Dexec.args=\"$ROWS $TEST $TRAIN\"\n\n"
  },
  {
    "path": "core/scripts/extractor.sh",
    "content": "echo \"$*\"\nmvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.OpenParse -Dexec.args=\"$*\"\n"
  },
  {
    "path": "core/scripts/keep_common_patterns.sh",
    "content": "# 1 -- lda directory\ncut -f5 \"$1/raw/patterned-all.txt\" | sort | uniq -c | sort -nr > \"$1/raw/patterns.txt\"\nmvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.KeepCommonPatterns -Dexec.args=\"$1/raw/patterned-all.txt 10\" > \"$1/raw/patterned.txt\"\n"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/ollie/cognitiveWords.txt",
    "content": "accept\r\nadmit\r\naffirm\r\naim\r\nallow\r\napprehend\r\nassert\r\nattest\r\naver\r\navouch\r\navow\r\nbelieve\r\nclaim\r\ncomprehend\r\nconfirm\r\nconjecture\r\nconsider\r\ncontend\r\ndefine\r\ndeny\r\ndescribe\r\ndiscover\r\ndoubt\r\ndream\r\nenvisage\r\nexpect\r\nfathom\r\nfeel\r\nfollow\r\nforeknow\r\nforesee\r\nforetell\r\ngrant\r\ngrasp\r\nguarantee\r\nguess\r\nhold\r\nhope\r\nidentify\r\nimagine\r\ninfer\r\nintend\r\nknow\r\nmaintain\r\nmean\r\nmisapprehend\r\nmisconstrue\r\nmisinterpret\r\nmisunderstand\r\nobserve\r\nplan\r\nportray\r\npresume\r\nprophesy\r\npropose\r\nreaffirm\r\nrealize\r\nrecognize\r\nrecollect\r\nremember\r\nreport\r\nrepresent\r\nrepute\r\nreveal\r\nsee\r\nshow\r\nspeculate\r\nsuppose\r\nsurmise\r\nsuspect\r\nswear\r\nthink\r\ntrust\r\nunderstand\r\nvaticinate\r\nvisualize\r\nwish\r\nyen"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/ollie/communicationWords.txt",
    "content": "acknowledge\r\nacquaint\r\nadd\r\nadvise\r\naffirm\r\nallege\r\nannounce\r\napprise\r\narticulate\r\nbelieve\r\nblab\r\nblurt\r\nclaim\r\ncomment\r\ncommunicate\r\nconfess\r\nconfide\r\nconfirm\r\nconsider\r\nconvey\r\ncorroborate\r\ndeclare\r\ndeem\r\ndemonstrate\r\ndisclose\r\ndivulge\r\nelaborate\r\nelucidate\r\nestablish\r\nesteem\r\nexclaim\r\nexplain\r\nexplicate\r\nexpound\r\nfeel\r\nillustrate\r\nimagine\r\ninform\r\ninsinuate\r\ninsist\r\nintimate\r\njustify\r\nknow\r\nleak\r\nlecture\r\nmention\r\nmoralize\r\nnarrate\r\nnote\r\nnotify\r\nobserve\r\npose\r\npreach\r\nproclaim\r\npromulgate\r\npropose\r\nprove\r\nrant\r\nrate\r\nread\r\nreaffirm\r\nrecite\r\nreckon\r\nrecount\r\nreiterate\r\nrelate\r\nrelay\r\nremark\r\nremember\r\nremind\r\nrepeat\r\nreply\r\nreport\r\nrespond\r\nretort\r\nreveal\r\nsay\r\nsee\r\nshow\r\nsniff\r\nspeak\r\nstate\r\nsuppose\r\nsuspect\r\ntalk\r\nteach\r\ntell\r\ntestify\r\ntheorize\r\nthink\r\nupdate\r\nutter\r\nventure\r\nverify\r\nview\r\nvoice\r\nwrite"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/ollie/confidence/default-classifier.txt",
    "content": "args start and end with noun\t0.030924657084179144\nrel ends with of\t0.1013506657501542\narg1 contains pronoun\t0.19630801348782667\narg2 contains pronoun\t-0.13341646099789348\nlong relation\t-0.3547145229191737\ngap of 10 in rel\t-0.34306426484946456\nvacuous extraction\t-0.6389807893982924\nnn edges in pattern\t0.9130032848389\narg1 is proper\t0.07933280909554899\nIntercept\t0.0\nsentence begins with arg1\t-0.1588407285556643\nif right before arg1\t-1.2206208992816086\narg2 is proper\t-0.04306420146120506\narg2 borders appositive\t-0.0017006187220647805\nrel contains gerund\t-0.26200297625650837\narg1 borders appositive\t-0.13448972417475485\nnoun-verb-noun in arg1\t0.0\nprep right after arg2\t0.19212879336967245\nprep in arg2\t0.16539493294341892\narg2 contains infinitive\t-0.0\nprep mismatch in pattern\t-0.20092201136389673\nsentence is imperative\t0.11745202578145564\nhyp words in rel\t-0.1449927441123399\nsentence ends with arg2\t0.11610654106632967\nnoun-verb-noun in arg2\t0.07217080739835992\nrel is contiguous\t0.12562188545360878\nnon-contiguous rel\t-0.1849662870655201\nsemantic constraints in pattern\t-0.4343558913425681\nopenparse confidence\t0.43411514029724824\narg1 bad characters\t-0.40339032821185783\nsentence starts with extraction\t0.18854224217974247\narg2 bad characters\t-0.009939551407472108\nrel contains verb\t0.4757113580400253\nrel starts with be\t0.0\nprep right before arg1\t-0.2350155331052106\nsentence has question mark\t0.0\narg2 before arg1\t-0.35791735399208685\narg2 before rel\t-0.023882392179128745\nrel bad characters\t-0.11794120943690224\n"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/ollie/prefixWords.txt",
    "content": "after\r\nalthough\r\nbecause\r\nbefore\r\nbut\r\nhowever\r\nif\r\nonce\r\nthat\r\nthough\r\nwhen\r\nwhenever\r\nwhether\r\nwhere\r\nwhile\r\nwould"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/openparse/categories/location.txt",
    "content": "abbacy\nabode\nabutment\nabysm\nabyss\nacme\naddition\naddress\naerie\naerospace\naery\naim\nair\nairhead\nairspace\nairway\nambiance\nambience\nanchorage\nangle\nanomaly\nantapex\nantinode\nantipodes\naperture\napex\naphelion\napoapsis\napogee\napojove\napolune\naposelene\napproach\napron\narchbishopric\narchdeaconry\narchdiocese\narchduchy\narea\narena\narrowhead\nashram\nasthenosphere\natelier\natmosphere\naxil\naxis\nazimuth\nback\nbackside\nbackwater\nbackwoods\nbackyard\nbailiwick\nbakehouse\nbakery\nbakeshop\nbarb\nbarony\nbarren\nbarrio\nbarycenter\nbase\nbasin\nbattlefield\nbattlefront\nbattleground\nbeachhead\nbeak\nbearing\nbeat\nbed\nbedground\nbedside\nbeehive\nbeeline\nbeginning\nbelly\nbellybutton\nbelt\nbent\nbenthos\nberm\nberth\nbight\nbilge\nbilges\nbilocation\nbindery\nbiosphere\nbirthplace\nbishopric\nbitthead\nbivouac\nblock\nboatyard\nbookbindery\nboondocks\nborder\nborderland\nborderline\nborough\nbottom\nbound\nboundary\nbounds\nbourn\nbourne\nbowels\nbreach\nbreadbasket\nbreak\nbrickfield\nbrickyard\nbridgehead\nbrink\nbrokerage\nbrow\nbuffer\nbull\nburg\nbush\ncabstand\ncaliphate\ncambium\ncamp\ncampground\ncampong\ncampsite\ncampus\ncanthus\ncanton\ncap\ncapital\ncapitulum\ncarrefour\ncasbah\ncavern\ncavity\ncell\ncemetery\ncenter\ncenterfield\ncentral\ncentre\ncentrex\ncentroid\nchap\nchapiter\ncharnel\nchasm\ncheckpoint\nchink\nchokepoint\nchromosphere\nchurchyard\ncircle\ncircuit\ncircumference\ncircus\ncity\nclear\nclearing\ncleft\ncloverleaf\ncoalfield\ncoastline\ncol\ncolliery\ncolony\ncolumbarium\ncommon\ncommons\ncommonwealth\ncommune\ncommunity\ncompartment\nconfluence\nconurbation\ncore\ncorium\ncorncob\ncorner\ncorneum\ncornfield\ncountry\ncountryside\ncounty\ncourse\ncourt\ncowtown\ncrack\ncradle\ncranny\ncrawlspace\ncreamery\ncrenel\ncrenelle\ncrest\ncrevasse\ncrevice\ncrinion\ncroft\ncrosscut\ncrossing\ncrossroad\ncrossway\ncrotch\ncrown\ncrud\ncrust\ncrypt\ncubbyhole\nculmination\ncurtilage\ncusp\ncuticle\ndairy\ndanger\ndark\ndarkness\ndateline\ndec\ndeclination\ndefile\ndelimitation\ndemarcation\ndemesne\nden\ndepartment\ndependency\ndepth\nderivation\nderma\ndermis\ndesert\ndesktop\ndestination\ndeterminant\ndevelopment\ndiamond\ndiastema\ndig\ndiocese\ndip\ndirection\ndistance\ndistrict\ndivide\ndockside\ndockyard\ndogleg\ndomain\ndomicile\ndominion\ndooryard\ndowntown\ndrop\nduchy\ndukedom\ndump\ndumpsite\nearldom\nearreach\nearshot\nearth\neast\necliptic\nedge\nedging\nelement\nemirate\nempire\nemptiness\nempyrean\nencampment\nenclave\nenclosure\nend\nendpoint\nentrepot\nenvironment\nenvirons\neparchy\nepicenter\nepicentre\nepidermis\nepiscopate\nepitope\nequator\nequinoctial\nequinox\nexaltation\nexarchate\nexcavation\nexchange\nexosphere\nexpanse\nexterior\nextreme\nextremity\nextremum\nexurbia\neye\neyeshot\neyrie\neyry\nface\nfairground\nfairway\nfarm\nfarmland\nfarmplace\nfarmstead\nfatherland\nfaubourg\nfault\nfaulting\nfiefdom\nfield\nfingertip\nfinish\nfirebreak\nfireguard\nfireside\nfirmament\nfishery\nfissure\nflies\nfloor\nflowerbed\nfluke\nflyway\nfocus\nfoot\nfoothold\nforamen\nforefront\nforepart\nforge\nfork\nfountainhead\nfracture\nfringe\nfront\nfrontier\nfunfair\ngaff\ngap\ngarden\ngasfield\ngasworks\ngeosphere\nghetto\nglade\nglassworks\ngoal\ngoldfield\ngorge\ngrainfield\ngrange\ngrassland\ngrave\ngraveyard\ngreen\ngreenbelt\ngreenway\ngridiron\nground\ngrounds\ngrove\ngulf\nhabitat\nhabitation\nhairline\nhamlet\nhand\nhangout\nharbor\nharborage\nharbour\nharbourage\nhatchery\nhaunt\nhaven\nhayfield\nhead\nheading\nheadspring\nheadwater\nhearing\nheart\nhearth\nheartland\nheath\nheathland\nheaven\nheavens\nheel\nheights\nheliopause\nheliosphere\nhell\nhellhole\nhem\nhemisphere\nhemline\nhere\nheronry\nhiatus\nhideaway\nhideout\nhigh\nhilltop\nhilum\nhinterland\nhip\nhipline\nhole\nhollow\nholy\nhome\nhomeland\nhometown\nhorizon\nhorst\nhotbed\nhotspot\nhouse\nhub\nhydathode\nhydrosphere\nimperium\ninclination\ninferno\ninfield\ninnersole\ninside\ninsole\ninterchange\ninterface\ninterior\nintersection\nionosphere\nironworks\nirredenta\nirridenta\nisarithm\nisland\nisobar\nisochrone\nisoclinal\nisogone\nisogram\nisohel\nisopleth\nisotherm\nitinerary\njob\njunction\njungle\njunkyard\njurisdiction\njusticiary\njuxtaposition\nkampong\nkasbah\nkey\nkhanate\nkingdom\nknothole\nkraal\nlab\nlaboratory\nlair\nland\nlandmark\nlandscape\nlandscaping\nlatitude\nlaunderette\nlaundry\nlawn\nlayer\nlea\nlead\nleak\nlee\nleeward\nleft\nleftfield\nlenticel\nley\nlie\nlight\nlimb\nlimit\nline\nlineation\nlithosphere\nlocale\nlocality\nlocation\nlocus\nlongitude\nlookout\nlot\nloxodrome\nluff\nlumberyard\nmandate\nmandatory\nmansion\nmantle\nmarch\nmarchland\nmare\nmaria\nmastaba\nmastabah\nmasthead\nmatrix\nmausoleum\nmaximum\nmeadow\nmecca\nmedina\nmedium\nmeeting\nmegalopolis\nmeridian\nmesosphere\nmete\nmetropolis\nmicropyle\nmidair\nmidden\nmiddle\nmidfield\nmidland\nmidpoint\nmidst\nmidstream\nmidway\nminefield\nminimum\nmolding\nmonument\nmoorage\nmooring\nmotherland\nmoulding\nmouth\nmunicipality\nnadir\nnape\nnavel\nnecropolis\nneighborhood\nneighbourhood\nnest\nnib\nnidus\nnirvana\nnode\nnombril\nnook\nnorth\nnortheast\nnorthland\nnorthwest\nnotch\nnucha\nnucleus\noasis\noccident\noilfield\nomphalos\nomphalus\nopen\nopening\norbit\norchard\norient\norigin\norphrey\noutback\noutdoors\noutfield\noutline\noutport\noutpost\noutside\noutskirt\noutskirts\noutsole\noutstation\noverhead\noverlook\nozonosphere\npaddy\npaint\npalaestra\npalate\npalatinate\npalestra\npallium\npampas\npanhandle\nparadise\nparallel\nparcel\nparies\nparish\npark\nparkland\npart\nparterre\nparting\nparts\npass\npasture\npastureland\npatch\npatchboard\npate\npath\npatisserie\npatriarchate\npattern\npeak\npenetralia\nperch\nperforation\nperiapsis\nperigee\nperigon\nperihelion\nperijove\nperilune\nperiselene\npesthole\nphotosphere\npiazza\npigeonhole\npiggery\npike\npinnacle\npinpoint\npiscary\npiste\npit\npitch\nplace\nplantation\nplate\nplayground\nplaza\npleasance\nplot\nplugboard\npocket\npoint\npole\npoll\npolls\npool\npore\nport\nposition\npossession\npost\npottery\npouch\nprairie\nprecinct\nprefecture\npremises\npresence\npreserve\nprincedom\nprincipality\nproperty\nproprioceptor\nprotectorate\nprovenance\nprovenience\nprovince\nproximity\npuddle\npueblo\npunctum\npupil\npurlieu\nqibla\nquadrant\nquarter\nradius\nrailhead\nrailyard\nranch\nrange\nrathole\nreach\nrealm\nrear\nrearward\nrefuge\nregion\nrendezvous\nrent\nrepair\nrepository\nreservation\nreserve\nresidence\nresort\nretreat\nrhumb\nrift\nright\nrightfield\nrip\nroads\nroadside\nroadstead\nrockery\nrooftop\nrookery\nroot\nrootage\nropewalk\nrotary\nrough\nround\nroundabout\nroundhouse\nroute\nsac\nsack\nsaddle\nsaddleback\nsaddlery\nsafety\nsanctuary\nsanctum\nsandlot\nsavanna\nsavannah\nscenario\nscene\nscenery\nschoolyard\nscissure\nscour\nscrapheap\nscrubland\nscruff\nseafront\nseam\nseaport\nseascape\nseat\nsection\nsector\nsee\nseedbed\nselvage\nselvedge\nsemidesert\nsemitropics\nseparation\nsepulcher\nsepulchre\nsepulture\nsetting\nsettlement\nshadow\nshantytown\nsheeprun\nsheepwalk\nsheet\nsheikdom\nsheikhdom\nshift\nshipside\nshipyard\nshire\nshop\nshoreline\nshort\nshoulder\nshowplace\nshrubbery\nside\nsign\nsilhouette\nsite\nsituation\nskyline\nskyway\nslack\nslip\nslit\nslot\nslum\nsmithy\nsnag\nsnow\nsodom\nsoil\nsole\nsolitude\nsomewhere\nsource\nsouth\nsoutheast\nsouthland\nsouthwest\nspa\nspace\nspearhead\nspearpoint\nsphere\nspike\nsplit\nspoor\nspot\nsprawl\nspread\nspring\nsquare\nstage\nstand\nstate\nstation\nsteps\nstoma\nstomate\nstop\nstopover\nstratosphere\nstratum\nstretch\nstudio\nsubdivision\nsubstrate\nsubstratum\nsubtopia\nsubtropics\nsuburb\nsuburbia\nsultanate\nsummit\nsuperstrate\nsuperstratum\nsurface\nsurround\nsurroundings\nsuzerainty\nswath\nswitchboard\ntack\ntannery\ntape\ntarget\ntaxistand\ntear\ntee\ntelomere\ntendency\ntenderloin\nterminal\ntermination\nterminus\nterrain\nterreplein\nterritory\ntheater\ntheatre\nthere\nthermosphere\nthick\ntiltyard\ntimberline\ntip\ntiptoe\ntiptop\ntomb\ntonsure\ntop\ntopiary\ntown\ntownship\ntrack\ntract\ntrail\ntrailhead\ntreetop\ntrend\ntrichion\ntropic\ntropics\ntropopause\ntroposphere\ntrusteeship\nturf\nturnery\numbilicus\nunderbelly\nunderside\nundersurface\nunknown\nupside\nuptown\nvacancy\nvacuity\nvacuum\nvantage\nvariation\nvault\nveld\nveldt\nvent\nvenue\nverge\nvertex\nviceroyalty\nvicinity\nview\nviewpoint\nvillage\nvinery\nvineyard\nviscounty\nvoid\nvolcano\nwall\nward\nwarren\nwashhouse\nwaste\nwasteland\nwasteyard\nwaterfront\nwaterline\nwatermark\nwatershed\nwaterworks\nwavefront\nway\nwayside\nweald\nwedge\nwelkin\nwellhead\nwellspring\nwest\nwheatfield\nwhereabouts\nwild\nwilderness\nwindow\nwindward\nwing\nwire\nwold\nwoodlet\nwork\nworkplace\nworkshop\nworkspace\nyard\nyardarm\nzenith\nzodiac\nzone\n"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/openparse/categories/person.txt",
    "content": "abator\nabbe\nabbess\nabbot\nabbreviator\nabdicator\nabductor\nabecedarian\naberrant\nabetter\nabettor\nabhorrer\nabiogenist\nabjurer\nabnegator\nabolitionist\nabomination\nabominator\naboriginal\naborigine\nabortionist\nabridger\nabrogator\nabsconder\nabseiler\nabsentee\nabsolutist\nabsolver\nabstainer\nabstinent\nabstracter\nabstractionist\nabstractor\nabuser\nabutter\nacademic\nacademician\nacceptor\naccessary\naccessory\naccommodator\naccompanist\naccompanyist\naccomplice\naccordionist\naccoucheur\naccoucheuse\naccountant\naccumulator\naccused\naccuser\nace\nachiever\nacolyte\nacoustician\nacquaintance\nacquirer\nacrobat\nactive\nactivist\nactor\nactress\nactuary\nadapter\nadder\naddict\naddlehead\naddressee\nadducer\nadept\nadherent\nadjudicator\nadjunct\nadjuster\nadjustor\nadjutant\nadman\nadministrator\nadmiral\nadmirer\nadmonisher\nadolescent\nadonis\nadoptee\nadopter\nadorer\nadulator\nadult\nadulterator\nadulterer\nadulteress\nadvancer\nadventurer\nadventuress\nadversary\nadvertiser\nadvertizer\nadvisee\nadviser\nadvisor\nadvocate\nadvocator\naerialist\naeronaut\naerophile\naesthete\naesthetician\naetiologist\naffiant\naffiliate\naffine\naffirmer\naffluent\naficionado\nagent\naggravator\naggregator\naggressor\nagitator\nagnate\nagnostic\nagonist\nagriculturalist\nagriculturist\nagronomist\naide\naircraftman\naircraftsman\naircrewman\nairhead\nairman\nairwoman\nalarmist\nalbino\nalcalde\nalchemist\nalcoholic\nalderman\nalexic\nalgebraist\nalien\nalienator\nalienee\nalienist\nalienor\naliterate\nalky\nallayer\nallegoriser\nallegorizer\nallergist\nalleviator\nalliterator\nallocator\nally\nalmoner\nalmsgiver\nalphabetiser\nalphabetizer\nalpinist\nalternate\nalto\naltoist\naltruist\nalum\nalumna\nalumnus\namah\namalgamator\namanuensis\namateur\namazon\nambassador\nambassadress\nambler\nambusher\nameer\namigo\namir\namnesiac\namnesic\namora\namoralist\namorist\namputator\namputee\nanachronism\nanaesthetist\nanagnost\nanalogist\nanalphabet\nanalphabetic\nanalysand\nanalyst\nanarchist\nanathema\nanatomist\nancestor\nancestress\nanchor\nanchorite\nanchorman\nanchorperson\nancient\nandrogyne\nanecdotist\nanesthesiologist\nanesthetist\nangel\nangiologist\nangler\nanglophil\nanglophile\nanglophobe\nanimator\nanimist\nannalist\nannihilator\nannotator\nannouncer\nannoyance\nannoyer\nannuitant\nanointer\nanomalist\nanomaly\nanorectic\nanorexic\nanswerer\nantagonist\nantecedent\nantediluvian\nanthologist\nanthropoid\nanthropologist\nanthropophagite\nanthropophagus\nanti\nanticipant\nanticipator\nantifeminist\nantinomian\nantipope\nantiquarian\nantiquary\nantique\napache\nape\naper\naphakic\naphasic\naphorist\napiarist\napiculturist\napologist\napostate\napostle\napothecary\napotheosis\napparatchik\nappeaser\nappellant\napplauder\napplicant\napplier\nappointee\nappointment\nappraiser\nappreciator\napprehender\napprentice\nappropriator\napprover\naquanaut\narb\narbiter\narbitrager\narbitrageur\narbitrator\narboriculturist\narborist\narchaeologist\narchaist\narchbishop\narchdeacon\narchduchess\narchduke\narcheologist\narcher\narchimandrite\narchitect\narchivist\narchpriest\nargonaut\narguer\narianist\naristocrat\narithmetician\narmiger\narmorer\narmourer\narouser\narranger\narrival\narriver\narriviste\narrogator\narrowsmith\narsonist\narthritic\narticulator\nartificer\nartilleryman\nartisan\nartist\nartiste\nascendant\nascendent\nascender\nascetic\nasker\naspirant\naspirer\nass\nassailant\nassassin\nassassinator\nassaulter\nassayer\nassemblyman\nassemblywoman\nassenter\nasserter\nassessee\nassessor\nasseverator\nasshole\nassignee\nassignor\nassimilator\nassistant\nassociate\nasthmatic\nastrogator\nastrologer\nastrologist\nastronaut\nastronomer\nastrophysicist\natheist\nathlete\nattache\nattacker\nattempter\nattendant\nattendee\nattender\nattestant\nattestator\nattester\nattestor\nattorney\nattracter\nattraction\nattractor\nauctioneer\naudile\nauditor\naugur\naunt\nauntie\naunty\nauspex\nauteur\nauthenticator\nauthor\nauthoress\nauthoriser\nauthoritarian\nauthority\nauthorizer\nautobiographer\nautochthon\nautocrat\nautodidact\nautomaton\nauxiliary\navatar\navenger\naviator\naviatress\naviatrix\navower\nayah\nayatollah\nbaas\nbabbler\nbabe\nbaboo\nbabu\nbaby\nbabyminder\nbabysitter\nbacchanal\nbacchant\nbacchante\nbachelor\nbachelorette\nback\nbackbencher\nbackbiter\nbacker\nbackpacker\nbackscratcher\nbackslapper\nbackslider\nbackstop\nbackstroker\nbackup\nbackwoodsman\nbacteriologist\nbadgerer\nbag\nbaggage\nbaggageman\nbagger\nbagman\nbagpiper\nbailee\nbailiff\nbailor\nbairn\nbaker\nbalancer\nbaldhead\nbaldpate\nbaldy\nbalker\nballadeer\nballerina\nballetomane\nballoonist\nballplayer\nbambino\nbanderillero\nbandit\nbandleader\nbandmaster\nbandsman\nbanker\nbankrupt\nbanneret\nbantamweight\nbarbarian\nbarber\nbard\nbargainer\nbargee\nbargeman\nbaritone\nbarkeep\nbarkeeper\nbarker\nbarmaid\nbarman\nbarnburner\nbarnstormer\nbaron\nbaroness\nbaronet\nbarrater\nbarrator\nbarrister\nbartender\nbarterer\nbarytone\nbasileus\nbasketeer\nbasketmaker\nbasketweaver\nbass\nbassist\nbasso\nbassoonist\nbastard\nbaster\nbather\nbatman\nbatsman\nbatter\nbattler\nbaulker\nbawd\nbawler\nbeachcomber\nbeadle\nbeadsman\nbear\nbeard\nbearer\nbeast\nbeat\nbeater\nbeatnik\nbeau\nbeautician\nbeauty\nbedesman\nbedfellow\nbedlamite\nbedwetter\nbeefeater\nbeekeeper\nbegetter\nbeggar\nbeggarman\nbeggarwoman\nbeginner\nbeguiler\nbegum\nbehaviorist\nbehaviourist\nbehemoth\nbeholder\nbeldam\nbeldame\nbeliever\nbellboy\nbelle\nbellhop\nbelligerent\nbellman\nbellower\nbellwether\nbellyacher\nbeloved\nbenedick\nbenedict\nbenefactor\nbenefactress\nbeneficiary\nbereaved\nberk\nberserk\nberserker\nbesieger\nbest\nbestower\nbetrayer\nbetrothed\nbetter\nbettor\nbey\nbibliographer\nbibliophile\nbibliopole\nbibliopolist\nbibliothec\nbibliotist\nbicycler\nbicyclist\nbidder\nbigamist\nbigot\nbigwig\nbilingual\nbilingualist\nbillionaire\nbimbo\nbimetallist\nbinger\nbiochemist\nbiographer\nbiologist\nbiophysicist\nbird\nbirdbrain\nbirder\nbirth\nbisexual\nbishop\nbitch\nbiter\nblabber\nblabbermouth\nblackamoor\nblackguard\nblackleg\nblackmailer\nblacksmith\nblade\nblasphemer\nblaster\nbleacher\nbleeder\nblighter\nblocker\nblockhead\nblogger\nbloke\nblond\nblonde\nblood\nblowhard\nblubberer\nbludgeoner\nbluecoat\nbluejacket\nbluenose\nbluestocking\nbluffer\nblunderer\nblusterer\nboarder\nboaster\nboatbuilder\nboater\nboatman\nboatswain\nbobby\nbobbysoxer\nbodybuilder\nbodyguard\nboffin\nbohemian\nbolshie\nbolshy\nbombardier\nbomber\nbombshell\nbondholder\nbondmaid\nbondman\nbondsman\nbondswoman\nbondwoman\nbonehead\nbonesetter\nboniface\nboob\nbooby\nbookbinder\nbookdealer\nbooker\nbookie\nbookkeeper\nbooklover\nbookmaker\nbookman\nbookseller\nbookworm\nboomer\nboor\nbooster\nbootblack\nbootlegger\nbootlicker\nbootmaker\nboozer\nborderer\nbore\nborrower\nboss\nbosun\nbotanist\nbotcher\nboulevardier\nbouncer\nbounder\nbourgeois\nbowdleriser\nbowdlerizer\nbowler\nbowman\nboxer\nboy\nboyfriend\nbozo\nbracero\nbrachycephalic\nbraggart\nbragger\nbrahman\nbrahmin\nbrain\nbrainiac\nbrainworker\nbrakeman\nbrat\nbrave\nbravo\nbrawler\nbreadwinner\nbreaker\nbreaststroker\nbreeder\nbrewer\nbriber\nbrick\nbricklayer\nbride\nbridegroom\nbridesmaid\nbrigadier\nbrigand\nbroad\nbroadcaster\nbroker\nbroncobuster\nbrother\nbrowser\nbruiser\nbrunet\nbrunette\nbrute\nbuccaneer\nbuckaroo\nbuckeroo\nbucolic\nbuddy\nbuff\nbuffoon\nbugger\nbugler\nbugologist\nbuilder\nbulimic\nbull\nbullfighter\nbully\nbullyboy\nbum\nbumbler\nbumpkin\nbungler\nbunkmate\nbunny\nbunter\nbureaucrat\nburgess\nburgher\nburglar\nburgomaster\nburgrave\nbursar\nbusboy\nbushman\nbushwhacker\nbusinessman\nbusinessperson\nbusinesswoman\nbusker\nbuster\nbusybody\nbutch\nbutcher\nbutler\nbutt\nbutter\nbutterball\nbutterfingers\nbuttinsky\nbuyer\nbystander\ncabalist\ncabinetmaker\ncad\ncaddie\ncadet\ncadger\ncaffer\ncaffre\ncager\ncaitiff\ncalculator\ncalif\ncaliph\ncaller\ncalligrapher\ncalligraphist\ncameraman\ncampaigner\ncamper\ncampmate\ncanary\ncandidate\ncandlemaker\ncandymaker\ncannibal\ncannoneer\ncanoeist\ncanon\ncanonist\ncantor\ncanvasser\ncapitalist\ncapo\ncaptain\ncaptive\ncaptor\ncapturer\ncarabineer\ncarabinier\ncarbineer\ncard\ncardholder\ncardinal\ncardiologist\ncardsharp\ncardsharper\ncareerist\ncaregiver\ncaretaker\ncarhop\ncaricaturist\ncarillonneur\ncaroler\ncaroller\ncarouser\ncarpenter\ncarper\ncarpetbagger\ncarrier\ncarrottop\ncarter\ncartographer\ncartoonist\ncartwright\ncarver\ncase\ncaseworker\ncashier\ncastaway\ncaster\ncastrate\ncastrato\ncasualty\ncasuist\ncat\ncataleptic\ncataloger\ncataloguer\ncatamite\ncatch\ncatcher\ncatechist\ncatechumen\ncaterer\ncattleman\ncavalier\ncavalryman\ncaveman\ncaviler\ncaviller\ncelebrant\ncelebrater\ncelebrator\ncelebrity\ncelibate\ncellist\ncenobite\ncensor\ncentenarian\ncenter\ncenterfielder\ncentrist\ncenturion\nceramicist\nceramist\nchachka\nchair\nchairman\nchairperson\nchairwoman\nchallenger\nchamberlain\nchambermaid\nchameleon\nchamp\nchampion\nchancellor\nchandler\nchangeling\nchanger\nchap\nchapelgoer\nchaperon\nchaperone\nchaplain\nchapman\nchar\ncharacter\ncharge\nchargeman\ncharioteer\ncharlatan\ncharmer\nchartist\ncharwoman\nchased\nchaser\nchatelaine\nchatterbox\nchatterer\nchauvinist\nchawbacon\ncheapjack\ncheapskate\ncheat\ncheater\nchebab\nchecker\ncheerer\ncheerleader\ncheesemonger\nchef\nchela\nchemist\ncherub\nchevalier\nchewer\nchichi\nchick\nchicken\nchief\nchieftain\nchild\nchiliast\nchimneysweep\nchimneysweeper\nchink\nchiromancer\nchiropodist\nchiropractor\nchiseler\nchiseller\nchit\nchoirboy\nchoirmaster\nchoker\nchooser\nchoragus\nchoreographer\nchorine\nchorister\nchosen\nchrist\nchronicler\nchum\nchump\nchurchgoer\nchurchman\nchurchwarden\nchurl\nchutzpanik\ncicerone\ncinematographer\ncipher\ncitizen\ncivilian\nclaimant\nclairvoyant\nclansman\nclanswoman\nclapper\nclarinetist\nclarinettist\nclassic\nclassicist\nclassifier\nclassmate\nclaustrophobe\ncleaner\nclergyman\ncleric\nclericalist\nclerk\nclient\nclimatologist\nclimber\nclinician\ncloakmaker\nclockmaker\nclocksmith\nclod\nclone\ncloser\nclotheshorse\nclothier\nclown\ncoach\ncoachbuilder\ncoachman\ncoadjutor\ncoalman\ncoaster\ncoastguardsman\ncoauthor\ncoaxer\ncobber\ncobbler\ncockscomb\ncocksucker\ncoconspirator\ncocotte\ncoddler\ncodefendant\ncoder\ncodetalker\ncodger\ncoenobite\ncoeval\ncofounder\ncog\ncognate\ncognoscente\ncoiffeur\ncoiffeuse\ncoiner\ncollaborationist\ncollaborator\ncolleague\ncollectivist\ncollector\ncolleen\ncollegian\ncollier\ncolonel\ncolonial\ncolonialist\ncoloniser\ncolonist\ncolonizer\ncoloratura\ncolored\ncolorist\ncolossus\ncolumnist\ncombatant\ncomber\ncomedian\ncomedienne\ncomer\ncomforter\ncomic\ncommandant\ncommander\ncommando\ncommentator\ncommie\ncommissar\ncommissionaire\ncommissioner\ncommitteeman\ncommitteewoman\ncommodore\ncommoner\ncommunicant\ncommunicator\ncommunist\ncommuter\ncompanion\ncompany\ncompatriot\ncompeer\ncompere\ncompetition\ncompetitor\ncompiler\ncomplainant\ncomplainer\ncomplexifier\ncomposer\ncompositor\ncompromiser\ncomptroller\ncompulsive\ncomputer\ncomrade\ncon\nconceiver\nconcessionaire\nconcessioner\nconchologist\nconcierge\nconciliator\nconcubine\nconditioner\nconductor\nconductress\nconfectioner\nconfederate\nconferee\nconferrer\nconfessor\nconfidant\nconfidante\nconformist\nconfrere\nconfuter\ncongregant\ncongressman\ncongresswoman\nconjurer\nconjuror\nconnection\nconnoisseur\nconqueror\nconquistador\nconscript\nconservationist\nconservative\nconservativist\nconservator\nconsignee\nconsigner\nconsignor\nconsort\nconspirator\nconstable\nconstituent\nconstitutionalist\nconstructivist\nconstructor\nconsul\nconsultant\nconsumer\nconsumptive\ncontact\ncontadino\ncontemplative\ncontemporary\ncontender\ncontestant\ncontestee\ncontester\ncontortionist\ncontrabandist\ncontractor\ncontralto\ncontrapuntist\ncontrarian\ncontributor\ncontriver\ncontroller\ncontroversialist\nconvalescent\nconvener\nconventioneer\nconversationalist\nconversationist\nconvert\nconveyancer\nconveyer\nconveyor\nconvict\ncook\ncookie\ncooky\ncoolie\ncooly\ncoon\ncooper\ncooperator\ncoordinator\ncop\ncopartner\ncopilot\ncopper\ncoppersmith\ncopycat\ncopyist\ncopyreader\ncopywriter\ncoquette\ncoreligionist\ncorespondent\ncornerback\ncornetist\ncornhusker\ncoroner\ncorporal\ncorporatist\ncorrespondent\ncorsair\ncosignatory\ncosigner\ncosmetician\ncosmetologist\ncosmographer\ncosmographist\ncosmologist\ncosmonaut\ncosmopolitan\ncosmopolite\ncostermonger\ncostumer\ncostumier\ncotenant\ncottager\ncottar\ncotter\ncottier\ncouncillor\ncouncilman\ncouncilwoman\ncounsel\ncounsellor\ncounselor\ncount\ncounter\ncounterdemonstrator\ncounterfeiter\ncounterman\ncounterperson\ncounterrevolutionary\ncounterrevolutionist\ncounterspy\ncountertenor\ncounterterrorist\ncounterwoman\ncountess\ncountryman\ncountrywoman\ncourier\ncourser\ncourtesan\ncourtier\ncousin\ncouturier\ncow\ncoward\ncowboy\ncowgirl\ncowhand\ncowherd\ncowman\ncowpoke\ncowpuncher\ncox\ncoxcomb\ncoxswain\ncoyote\ncrab\ncracker\ncrackerjack\ncrackpot\ncracksman\ncrafter\ncraftsman\ncragsman\ncrammer\ncraniologist\ncrank\ncrapshooter\ncrasher\ncraven\ncrawler\ncrazy\ncreator\ncreature\ncreditor\ncreep\ncreeper\ncretin\ncrewman\ncricketer\ncrier\ncriminal\ncriminologist\ncrimp\ncrimper\ncriollo\ncripple\ncritic\ncrofter\ncrone\ncrony\ncrook\ncrookback\ncrooner\ncropper\ncrossbencher\ncrossover\ncrosspatch\ncroupier\ncruiserweight\ncrumb\ncrusader\ncrybaby\ncryptanalyst\ncryptographer\ncryptologist\ncrystallographer\ncub\ncubist\ncuckold\ncuckoo\ncuirassier\nculprit\ncultist\ncultivator\ncummings\ncunctator\ncunt\ncupbearer\ncur\ncurandera\ncurandero\ncurate\ncurator\ncurmudgeon\ncurrier\ncuss\ncustodian\ncustomer\ncutler\ncutpurse\ncutter\ncutthroat\ncybernaut\ncyberpunk\ncyborg\ncyclist\ncymbalist\ncynic\ncypher\ncyprian\ncytogeneticist\ncytologist\nczar\nczarina\nczaritza\ndabbler\ndacoit\ndad\ndada\ndaddy\ndago\ndairymaid\ndairyman\ndakoit\ndalesman\ndallier\ndame\ndamoiselle\ndamosel\ndamozel\ndamsel\ndancer\ndandy\ndanseur\ndanseuse\ndaredevil\ndarkey\ndarkie\ndarky\ndarling\ndarner\ndastard\ndate\ndauber\ndaughter\ndauphin\ndawdler\ndayboy\ndaydreamer\ndaygirl\ndeacon\ndeaconess\ndeadbeat\ndeadeye\ndeadhead\ndealer\ndean\ndear\ndearest\ndearie\ndeary\ndeb\ndebaser\ndebater\ndebauchee\ndebaucher\ndebitor\ndebtor\ndebutante\ndecadent\ndeceased\ndecedent\ndeceiver\ndecipherer\ndeckhand\ndeclarer\ndecoder\ndecorator\ndecoy\ndefalcator\ndefamer\ndefaulter\ndefeatist\ndefecator\ndefector\ndefendant\ndefender\ndefiler\ndefrauder\ndegenerate\ndegrader\ndeification\ndeipnosophist\ndeist\ndelayer\ndelegate\ndelinquent\ndeliverer\ndeliveryman\ndemagog\ndemagogue\ndemander\ndemigod\ndemimondaine\ndemocrat\ndemographer\ndemographist\ndemoiselle\ndemon\ndemoniac\ndemonstrator\ndenier\ndenizen\ndentist\ndenturist\ndeparted\ndeparter\ndependant\ndependent\ndeponent\ndeportee\ndeposer\ndepositor\ndepreciator\ndepressive\ndeputy\nderelict\ndermatologist\ndervish\ndescendant\ndescendent\ndescender\ndeserter\ndesigner\ndeskman\ndesperado\ndesperate\ndespoiler\ndespot\ndestroyer\ndetainee\ndetective\ndeterminist\ndetractor\ndeveloper\ndeviant\ndeviate\ndeviationist\ndevil\ndevisee\ndeviser\ndevisor\ndevotee\ndevourer\ndiabetic\ndiabolist\ndiagnostician\ndialectician\ndiarist\ndichromat\ndick\ndickhead\ndictator\ndiehard\ndiemaker\ndiesinker\ndieter\ndietician\ndietitian\ndifferentiator\ndigger\ndignitary\ndike\ndilettante\ndillydallier\ndimwit\ndiner\ndingbat\ndiocesan\ndip\ndiplomat\ndiplomate\ndiplomatist\ndipsomaniac\ndirector\ndisarmer\ndisbeliever\ndisburser\ndisciple\ndisciplinarian\ndiscoverer\ndiscriminator\ndiscussant\ndisentangler\ndish\ndishwasher\ndisparager\ndispatcher\ndispenser\ndisprover\ndisputant\ndissembler\ndisseminator\ndissenter\ndissident\ndissimulator\ndistiller\ndistortionist\ndistributer\ndistributor\ndisturber\ndiva\ndiver\ndiversionist\ndivider\ndivine\ndiviner\ndivorcee\ndj\ndoc\ndocent\ndocker\ndockhand\ndockworker\ndoctor\ndoctrinaire\ndodderer\ndodger\ndodo\ndoer\ndog\ndoge\ndogfighter\ndogmatist\ndogsbody\ndolichocephalic\ndoll\ndolt\ndomestic\ndominatrix\ndomine\ndominee\ndominie\ndominus\ndon\ndonee\ndonna\ndonor\ndoofus\ndoorkeeper\ndoorman\ndoormat\ndope\ndork\ndosser\ndotard\ndouble\ndoubter\ndoughboy\ndoula\ndove\ndowager\ndowser\ndoxy\ndoyen\ndoyenne\ndraftee\ndrafter\ndraftsman\ndraftsperson\ndragger\ndragoman\ndragon\ndragoon\ndramatist\ndraper\ndraughtsman\ndraw\ndrawee\ndrawer\ndrawler\ndreamer\ndresser\ndressmaker\ndribbler\ndrifter\ndrinker\ndriveller\ndriver\ndrone\ndrooler\ndropkicker\ndropout\ndrover\ndrudge\ndruggist\ndrumbeater\ndrummer\ndrunk\ndrunkard\ndry\ndualist\nduce\nduchess\nducky\ndud\ndude\ndueler\nduelist\ndueller\nduellist\nduenna\nduffer\nduke\ndulcinea\ndullard\ndumbass\ndumbbell\ndummy\ndunce\ndunderhead\ndunker\ndupe\ndustman\ndwarf\ndweeb\ndweller\ndyer\ndyke\ndynamiter\ndynamitist\ndynast\ndyslectic\ndyspeptic\nearl\nearner\nearthling\nearthman\neasterner\neater\neavesdropper\neccentric\necclesiastic\necdysiast\neclectic\neclecticist\necologist\neconometrician\neconometrist\neconomiser\neconomist\neconomizer\nectomorph\nedger\neditor\neditorialist\neducatee\neducationalist\neducationist\neducator\neffecter\neffector\neffendi\negalitarian\negghead\negocentric\negoist\negomaniac\negotist\nejaculator\nejector\nelder\neldest\nelector\nelectrician\nelectrocutioner\nelectrologist\nelectroplater\nelectrotherapist\nelegist\nelitist\nelocutionist\nemancipationist\nemancipator\nembalmer\nembassador\nembezzler\nembodiment\nembroiderer\nembroideress\nembryologist\nemcee\nemeer\nemeritus\nemigrant\nemigre\nemigree\nemir\nemissary\nemperor\nempiricist\nemployable\nemployee\nemployer\nempress\nemptor\nemulator\nenate\nenchanter\nenchantress\nencroacher\nencyclopaedist\nencyclopedist\nend\nendocrinologist\nendodontist\nendomorph\nendorser\nenemy\nenergiser\nenergizer\nenforcer\nengineer\nengraver\nenjoyer\nenlistee\nenologist\nenophile\nenquirer\nenrollee\nensign\nenterpriser\nentertainer\nenthusiast\nentomologist\nentrant\nentrepreneur\nenumerator\nenvironmentalist\nenvoy\nenzymologist\neparch\nepicene\nepicure\nepicurean\nepidemiologist\nepigon\nepigone\nepileptic\nepistemologist\nequal\nequalitarian\nequerry\nequestrian\nequivocator\neradicator\neremite\neristic\nerotic\nescalader\nescapee\nescapist\nescapologist\neschatologist\nescort\nesquire\nessayer\nessayist\nesthete\nesthetician\nestimator\netcher\nethician\nethicist\nethnarch\nethnic\nethnographer\nethnologist\nethologist\netiologist\netymologist\neulogist\neunuch\nevacuee\nevaluator\nevangelist\neveryman\nevildoer\nevolutionist\nex\nexaminee\nexaminer\nexarch\nexcavator\nexchanger\nexciseman\nexcogitator\nexcursionist\nexcuser\nexecutant\nexecutioner\nexecutive\nexecutor\nexecutrix\nexegete\nexhibitioner\nexhibitionist\nexhibitor\nexile\nexistentialist\nexodontist\nexorciser\nexorcist\nexpat\nexpatriate\nexpectorator\nexpender\nexperimenter\nexpert\nexploiter\nexplorer\nexponent\nexporter\nexpositor\nexpounder\nexpressionist\nexpurgator\nexterminator\nextern\nextoller\nextortioner\nextortionist\nextra\nextravert\nextremist\nextrovert\neyeful\neyewitness\nfabricator\nfabulist\nface\nfacilitator\nfactor\nfactotum\nfaddist\nfag\nfaggot\nfagot\nfailure\nfairy\nfake\nfakeer\nfaker\nfakir\nfalangist\nfalconer\nfaller\nfalsifier\nfamiliar\nfamily\nfamulus\nfan\nfanatic\nfancier\nfantasist\nfantast\nfaqir\nfaquir\nfare\nfarmer\nfarmerette\nfarmhand\nfarrier\nfascist\nfascista\nfashionmonger\nfastener\nfatalist\nfathead\nfather\nfatso\nfatty\nfaultfinder\nfauvist\nfavorite\nfavourite\nfawner\nfeatherweight\nfederalist\nfeeder\nfella\nfellah\nfeller\nfellow\nfelon\nfemale\nfeminist\nfence\nfencer\nfencesitter\nfermentologist\nferryman\nfetishist\nfeudatory\nfiance\nfiancee\nfibber\nfiddler\nfiduciary\nfielder\nfieldhand\nfieldsman\nfieldworker\nfiend\nfighter\nfigure\nfigurehead\nfigurer\nfiler\nfilibuster\nfilibusterer\nfilicide\nfille\nfilmmaker\nfinagler\nfinalist\nfinancier\nfinder\nfinisher\nfink\nfireball\nfirebrand\nfirebug\nfirefighter\nfireman\nfirstborn\nfisher\nfisherman\nfishmonger\nfishwife\nfitter\nfixer\nfixture\nflack\nflagellant\nflak\nflake\nflamen\nflanker\nflapper\nflasher\nflatfoot\nflatmate\nflatterer\nflautist\nfledgeling\nfledgling\nfleer\nflibbertigibbet\nflier\nflirt\nfloater\nflogger\nfloorwalker\nfloozie\nfloozy\nflop\nflorist\nflouter\nflunkey\nflunky\nflutist\nflyer\nflyweight\nfodder\nfoe\nfoeman\nfogey\nfogy\nfollower\nfomenter\nfondler\nfoodie\nfool\nfoot\nfootballer\nfooter\nfootman\nfootpad\nfootslogger\nfop\nforager\nforbear\nforebear\nforecaster\nforefather\nforeigner\nforelady\nforeman\nforemother\nforeperson\nforerunner\nforester\nforewoman\nforger\nforgiver\nfornicator\nfornicatress\nfortuneteller\nforward\nfossil\nfossilist\nfosterling\nfounder\nfoundling\nfoundress\nfowler\nfox\nframer\nfranklin\nfratricide\nfraud\nfreak\nfreebooter\nfreedman\nfreedwoman\nfreeholder\nfreelance\nfreelancer\nfreeloader\nfreeman\nfreethinker\nfreewheeler\nfreewoman\nfrequenter\nfresher\nfreshman\nfriar\nfriend\nfrog\nfrogman\nfront\nfrontbencher\nfrontiersman\nfrontierswoman\nfrotteur\nfruitcake\nfruiterer\nfrump\nfry\nfucker\nfuckhead\nfuckup\nfugitive\nfugleman\nfullback\nfuller\nfumbler\nfumigator\nfunambulist\nfunctionalist\nfunctionary\nfundamentalist\nfundraiser\nfurrier\nfusilier\nfusspot\nfuturist\nfuzz\ngadabout\ngadfly\ngadgeteer\ngaffer\ngagman\ngagster\ngagwriter\ngainer\ngal\ngallant\ngaloot\ngalvaniser\ngalvanizer\ngambist\ngambler\ngamecock\ngamekeeper\ngamin\ngamine\nganef\nganger\ngangsta\ngangster\nganof\ngaolbird\ngaoler\ngarbageman\ngardener\ngarmentmaker\ngarnishee\ngarroter\ngarrotter\ngasbag\ngasman\ngastroenterologist\ngastronome\ngatecrasher\ngatekeeper\ngatherer\ngaucho\ngawk\ngawker\ngay\ngazetteer\ngeek\ngeezer\ngeisha\ngem\ngendarme\ngenealogist\ngeneral\ngeneralissimo\ngeneralist\ngenerator\ngeneticist\ngenitor\ngenius\ngent\ngentile\ngentleman\ngentlewoman\ngeographer\ngeologist\ngeomancer\ngeometer\ngeometrician\ngeophysicist\ngeriatrician\ngerontologist\nghost\nghostwriter\nghoul\ngiant\ngiggler\ngigolo\ngilder\ngillie\nginzo\ngipsy\ngirl\ngirlfriend\ngit\ngitana\ngitano\ngiver\ngladiator\nglassblower\nglassmaker\nglassworker\nglazer\nglazier\ngleaner\nglobetrotter\nglossarist\nglutton\ngoalie\ngoalkeeper\ngoaltender\ngoat\ngoatherd\ngob\ngobbler\ngod\ngodchild\ngoddaughter\ngodfather\ngodmother\ngodparent\ngodson\ngoer\ngofer\ngoffer\ngoldbeater\ngoldbrick\ngoldsmith\ngoldworker\ngolfer\ngoliard\ngoliath\ngondolier\ngondoliere\ngoner\ngonif\ngoniff\ngoof\ngoofball\ngook\ngoon\ngoose\ngopher\ngorger\ngospeler\ngospeller\ngossip\ngossiper\ngossipmonger\ngouger\ngourmand\ngourmandizer\ngourmet\ngoverness\ngovernor\ngoy\ngrabber\ngrad\ngrader\ngraduate\ngrammarian\ngramps\ngran\ngrandad\ngrandaunt\ngrandchild\ngranddad\ngranddaddy\ngranddaughter\ngrandee\ngrandfather\ngrandma\ngrandmaster\ngrandmother\ngrandnephew\ngrandniece\ngrandpa\ngrandparent\ngrandson\ngrandstander\ngranduncle\ngranger\ngrannie\ngranny\ngrantee\ngranter\ngrantor\ngraphologist\ngrappler\ngrass\ngravedigger\ngraverobber\ngravida\ngraybeard\ngrazier\ngreaseball\ngreaser\ngreat\ngreengrocer\ngreenhorn\ngreenskeeper\ngreeter\ngrenadier\ngreyback\ngreybeard\ngriever\ngrifter\ngrind\ngringo\ngrinner\ngriot\ngrip\ngroaner\ngrocer\ngroom\ngroomsman\ngrouch\ngroundbreaker\ngroundkeeper\ngroundling\ngroundskeeper\ngroundsman\ngroupie\ngroveler\ngroveller\ngrower\ngrowler\ngrownup\ngrumbler\ngrump\ngrunt\ngrunter\nguarantor\nguard\nguardian\nguardsman\nguerilla\nguerrilla\nguesser\nguest\nguestworker\nguide\nguitarist\ngull\ngulper\ngumshoe\ngun\ngunman\ngunner\ngunrunner\ngunslinger\ngunsmith\nguru\ngutter\nguttersnipe\nguvnor\nguy\nguzzler\ngymnast\ngymnosophist\ngynaecologist\ngynandromorph\ngynecologist\ngypsy\nhaberdasher\nhabitant\nhabitue\nhack\nhacker\nhadji\nhaematologist\nhaemophile\nhaemophiliac\nhag\nhaggler\nhagiographer\nhagiographist\nhagiologist\nhairdresser\nhairsplitter\nhairstylist\nhaji\nhajji\nhakeem\nhakim\nhalberdier\nhalfback\nham\nhammerhead\nhand\nhandicapper\nhandler\nhandmaid\nhandmaiden\nhandyman\nhanger\nhangman\nhangover\nharanguer\nharasser\nhardliner\nhardwareman\nharlequin\nharlot\nharmoniser\nharmonizer\nharper\nharpist\nharpooneer\nharpooner\nharpsichordist\nharpy\nharridan\nharrier\nharvester\nhatemonger\nhater\nhatmaker\nhatter\nhauler\nhaulier\nhave\nhawk\nhawker\nhawkshaw\nhayseed\nhazan\nhead\nheadcounter\nheadhunter\nheadliner\nheadman\nheadmaster\nheadmistress\nheadsman\nheadwaiter\nhealer\nhearer\nheartbreaker\nheartthrob\nheathen\nheaver\nheavy\nheavyweight\nheckler\nhedger\nhedonist\nheel\nheir\nheiress\nhellcat\nheller\nhellhound\nhellion\nhelmsman\nhelot\nhelp\nhelper\nhelpmate\nhelpmeet\nhematologist\nhemiplegic\nhemophile\nhemophiliac\nhenchman\nherald\nherbalist\nherder\nherdsman\nheretic\nheritor\nhermaphrodite\nhermit\nhero\nheroine\nherpetologist\nhesitater\nhesitator\nheterosexual\nhewer\nhick\nhierarch\nhighbinder\nhighbrow\nhighflier\nhighflyer\nhighjacker\nhighwayman\nhijacker\nhiker\nhillbilly\nhippie\nhippy\nhipster\nhire\nhireling\nhirer\nhisser\nhistologist\nhistorian\nhistoriographer\nhistrion\nhitchhiker\nhitman\nhitter\nhoarder\nhoaxer\nhobbledehoy\nhobbler\nhobbyist\nhobo\nhodman\nhog\nholder\nholdout\nholdover\nholidaymaker\nhombre\nhomebody\nhomeboy\nhomebuilder\nhomegirl\nhomeless\nhomemaker\nhomeopath\nhomeowner\nhomesteader\nhomo\nhomoeopath\nhomophile\nhomophobe\nhomosexual\nhomunculus\nhoncho\nhoney\nhoneymooner\nhonkey\nhonkie\nhonky\nhonoree\nhood\nhoodlum\nhoodoo\nhoofer\nhooker\nhooligan\nhope\nhopeful\nhoper\nhopper\nhornist\nhorologer\nhorologist\nhorseman\nhorseshoer\nhorsewoman\nhorticulturist\nhosier\nhost\nhostage\nhosteller\nhostess\nhostler\nhotdog\nhotelier\nhotelkeeper\nhotelman\nhothead\nhotshot\nhotspur\nhound\nhouri\nhousebreaker\nhousebuilder\nhousefather\nhouseguest\nhouseholder\nhousehusband\nhousekeeper\nhousemaid\nhouseman\nhousemaster\nhousemate\nhousemother\nhousewife\nhousewrecker\nhoyden\nhubby\nhuckster\nhuddler\nhugger\nhulk\nhumanist\nhumanitarian\nhumdinger\nhummer\nhumorist\nhumourist\nhumpback\nhunchback\nhunk\nhunter\nhuntress\nhuntsman\nhurdler\nhurler\nhusband\nhusbandman\nhussar\nhussy\nhustler\nhydrologist\nhydromancer\nhygienist\nhymie\nhyperope\nhypertensive\nhypnotiser\nhypnotist\nhypnotizer\nhypochondriac\nhypocrite\nhypotensive\nhysteric\nianfu\niceman\nichthyologist\niconoclast\nideal\nidealist\nidealogue\nideologist\nideologue\nidiot\nidler\nidol\nidolater\nidolatress\nidoliser\nidolizer\nignoramus\nillegitimate\nilliterate\nillusionist\nillustrator\nimage\nimam\nimaum\nimbecile\nimbiber\nimitator\nimmigrant\nimmortal\nimmune\nimmunologist\nimp\nimperialist\nimpersonator\nimport\nimportee\nimporter\nimposter\nimpostor\nimpresario\nimpressionist\nimprover\ninamorata\ninamorato\nincarnation\nincendiary\ninciter\nincompetent\nincubus\nincumbent\nincurable\nindependent\nindexer\nindigen\nindigene\nindividual\nindividualist\nindorser\ninducer\ninductee\nindustrialist\nindweller\ninebriate\ninfant\ninfanticide\ninfantryman\ninferior\ninfernal\ninfidel\ninfielder\ninfiltrator\ninformant\ninformer\ningenue\ningrate\ninhabitant\ninheritor\ninheritress\ninheritrix\ninitiate\ninitiator\ninmate\ninnkeeper\ninnocent\ninnovator\ninoculator\ninpatient\ninquirer\ninquisitor\ninsect\ninsider\ninsolvent\ninsomniac\ninspector\ninspirer\ninstigant\ninstigator\ninstructor\ninstructress\ninstrument\ninstrumentalist\ninsured\ninsurgent\ninsurrectionist\nintellect\nintellectual\nintercessor\ninterlocutor\ninterloper\nintermediary\nintermediator\nintern\ninternationalist\ninterne\ninternee\ninternist\ninternuncio\ninterpreter\ninterrogator\nintersex\nintervenor\ninterviewee\ninterviewer\nintimate\nintriguer\nintrovert\nintruder\ninvader\ninvalid\ninvalidator\ninventor\ninvestigator\ninvestor\ninvigilator\ninvitee\nironist\nironman\nironmonger\nironside\nironworker\nirredentist\nirregular\nirreligionist\nirridentist\nislander\nisolationist\nissue\nitinerant\njabberer\njack\njackanapes\njackass\njade\njailbird\njailer\njailor\njanissary\njanitor\njawan\njaywalker\njazzman\njeerer\njerk\njerker\njester\njewel\njeweler\njeweller\njezebel\njigaboo\njilt\njimdandy\njimhickey\njingo\njingoist\njinx\njobber\njobholder\njock\njockey\njogger\njohn\njoiner\njoker\njokester\njonah\njongleur\njournalist\njourneyer\njourneyman\njudge\njuggler\njuicer\njumper\njunior\njunkie\njunky\njurist\njuror\njuryman\njurywoman\njustice\njusticiar\njusticiary\njustifier\njuvenile\nkabbalist\nkachina\nkaffir\nkafir\nkalif\nkaliph\nkamikaze\nkeeper\nkeyboardist\nkhalif\nkhalifah\nkhan\nkibbutznik\nkibitzer\nkicker\nkid\nkiddy\nkidnaper\nkidnapper\nkike\nkiller\nkilljoy\nkin\nkindergartener\nkindergartner\nking\nkingmaker\nkingpin\nkink\nkinsman\nkinsperson\nkinswoman\nkisser\nkleptomaniac\nklutz\nknacker\nknave\nkneeler\nknight\nknitter\nknocker\nknockout\nknower\nknucklehead\nkolkhoznik\nkook\nkvetch\nlaborer\nlabourer\nlacer\nlackey\nlad\nladdie\nladino\nlady\nladylove\nlaggard\nlagger\nlaird\nlama\nlamb\nlame\nlamenter\nlaminator\nlamplighter\nlampooner\nlancer\nlandgrave\nlandholder\nlandlady\nlandlord\nlandlubber\nlandman\nlandowner\nlandscaper\nlandscapist\nlandsman\nlanglaufer\nlanguisher\nlapidarist\nlapidary\nlapidator\nlapidist\nlarcener\nlarcenist\nlascar\nlasher\nlass\nlassie\nlatecomer\nlather\nlatitudinarian\nlaudator\nlauder\nlaugher\nlaughingstock\nlaundress\nlaundryman\nlaundrywoman\nlaureate\nlawbreaker\nlawgiver\nlawmaker\nlawman\nlawyer\nlayabout\nlayman\nlayperson\nlazar\nlazybones\nlead\nleader\nleaker\nleaper\nlearner\nleaseholder\nleatherneck\nleaver\nlech\nlecher\nlector\nlecturer\nledgeman\nleech\nlefthander\nleftist\nlefty\nlegate\nlegatee\nlegionary\nlegionnaire\nlegislator\nlender\nlensman\nleper\nlepidopterist\nlepidopterologist\nlesbian\nlessee\nlessor\nletch\nletter\nletterer\nletterman\nleveler\nleveller\nlexicographer\nlexicologist\nliar\nlibber\nlibeler\nliberal\nliberalist\nliberator\nlibertarian\nlibertine\nlibrarian\nlibrettist\nlicensee\nlicenser\nlicentiate\nliege\nliegeman\nlieutenant\nlife\nlifeguard\nlifer\nlifesaver\nlifter\nlight\nlighterman\nlightweight\nlilliputian\nlimey\nlimner\nlimnologist\nlimper\nlinebacker\nlineman\nlinendraper\nlinesman\nlingerer\nlinguist\nlinkboy\nlinkman\nlinksman\nlion\nliquidator\nlisper\nlistener\nlister\nliterate\nlithographer\nlithomancer\nlitigant\nlitigator\nlitterateur\nlitterbug\nlitterer\nliturgist\nliver\nliveryman\nlizard\nloader\nloafer\nloaner\nloather\nlobbyist\nlobsterback\nlobsterman\nlocater\nlocator\nlockkeeper\nlockman\nlockmaster\nlocksmith\nlocum\nlodger\nlogger\nloggerhead\nlogician\nlogistician\nlogomach\nlogomachist\nloiterer\nloner\nlongbowman\nlonger\nlongshoreman\nlooker\nlookout\nloon\nlooney\nloony\nlooter\nlord\nloser\nloudmouth\nlounger\nlouse\nlout\nlove\nlovely\nlover\nlowbrow\nlowerclassman\nlowlife\nloyalist\nlubber\nluger\nlulu\nlumberjack\nlumberman\nluminary\nlummox\nlump\nlumper\nlunatic\nluncher\nlunger\nlunkhead\nlurcher\nlurker\nlush\nlutanist\nlutenist\nluthier\nlutist\nlyricist\nlyrist\nma\nmacaroni\nmace\nmacebearer\nmacer\nmachinator\nmachine\nmachinist\nmacho\nmacroeconomist\nmacushla\nmadam\nmadame\nmadcap\nmadman\nmadrigalist\nmadwoman\nmaenad\nmaestro\nmafioso\nmagdalen\nmagician\nmagistrate\nmagnate\nmagnifico\nmagpie\nmagus\nmaharaja\nmaharajah\nmaharanee\nmaharani\nmahatma\nmahout\nmaid\nmaiden\nmaidservant\nmailer\nmailman\nmaimer\nmainstay\nmaintainer\nmajor\nmajorette\nmaker\nmalacologist\nmalahini\nmalcontent\nmale\nmalefactor\nmalfeasant\nmaligner\nmalik\nmalingerer\nmaltman\nmaltreater\nmaltster\nmama\nmamma\nmammalogist\nmammy\nman\nmanager\nmanageress\nmanakin\nmandarin\nmandatary\nmandator\nmandatory\nmaneuverer\nmangler\nmaniac\nmanicurist\nmanikin\nmanipulator\nmannequin\nmannikin\nmanoeuvrer\nmanservant\nmanslayer\nmantrap\nmanufacturer\nmanumitter\nmapper\nmarathoner\nmarauder\nmarcher\nmarchioness\nmargrave\nmarine\nmariner\nmark\nmarketer\nmarksman\nmaroon\nmarquess\nmarquis\nmarquise\nmarried\nmarshal\nmarshall\nmartinet\nmartyr\nmarveller\nmasher\nmasker\nmasochist\nmason\nmasquer\nmasquerader\nmassager\nmasseur\nmasseuse\nmaster\nmastermind\nmasturbator\nmatador\nmatch\nmatcher\nmatchmaker\nmate\nmater\nmaterfamilias\nmaterial\nmaterialist\nmathematician\nmatman\nmatriarch\nmatricide\nmatriculate\nmatrikin\nmatrisib\nmatron\nmauler\nmaven\nmaverick\nmavin\nmayor\nmayoress\nmeanie\nmeany\nmeasurer\nmeatman\nmechanic\nmechanist\nmedalist\nmedallist\nmeddler\nmediator\nmediatrix\nmedic\nmedico\nmediocrity\nmedium\nmeeter\nmegalomaniac\nmelancholiac\nmelancholic\nmeliorist\nmelter\nmember\nmemoriser\nmemorizer\nmemsahib\nmender\nmendicant\nmenial\nmensch\nmensh\nmentioner\nmentor\nmercenary\nmercer\nmerchandiser\nmerchant\nmerrymaker\nmeshuggeneh\nmeshuggener\nmesmerist\nmesmerizer\nmesomorph\nmessenger\nmessiah\nmessmate\nmestiza\nmestizo\nmetalhead\nmetallurgist\nmetalworker\nmeteorologist\nmetic\nmetropolitan\nmezzo\nmicrobiologist\nmicroeconomist\nmicroscopist\nmiddlebrow\nmiddleman\nmiddleweight\nmidget\nmidinette\nmidshipman\nmidwife\nmigrant\nmigrator\nmikado\nmiler\nmilitant\nmilitarist\nmilitiaman\nmilkmaid\nmilkman\nmilksop\nmillenarian\nmillenarist\nmiller\nmilliner\nmillionaire\nmillionairess\nmillwright\nmilord\nmime\nmimer\nmimic\nmimicker\nmind\nminder\nminer\nmineralogist\nmineworker\nminiaturist\nminimalist\nminion\nminister\nministrant\nminor\nminstrel\nminter\nminx\nmisanthrope\nmisanthropist\nmisbeliever\nmiscreant\nmiser\nmisfit\nmisleader\nmisogamist\nmisogynist\nmiss\nmissionary\nmissioner\nmissis\nmissus\nmissy\nmistress\nmixologist\nmnemonist\nmoaner\nmobster\nmocker\nmod\nmodel\nmodeler\nmodeller\nmoderate\nmoderationist\nmoderator\nmodern\nmodernist\nmodifier\nmodiste\nmogul\nmole\nmolester\nmoll\nmollycoddle\nmollycoddler\nmom\nmomma\nmommy\nmonarch\nmonarchist\nmonastic\nmonetarist\nmoneyer\nmoneygrubber\nmoneylender\nmoneymaker\nmoneyman\nmonger\nmongoloid\nmonitor\nmonitrice\nmonk\nmonkey\nmonochromat\nmonogamist\nmonogynist\nmonolingual\nmonologist\nmonomaniac\nmonopoliser\nmonopolist\nmonopolizer\nmonotheist\nmonster\nmooch\nmoocher\nmoonlighter\nmoonshiner\nmope\nmopper\nmoppet\nmoralist\nmoron\nmorosoph\nmortal\nmortgagee\nmortgager\nmortgagor\nmortician\nmossback\nmother\nmotherfucker\nmotile\nmotorcyclist\nmotormouth\nmoujik\nmountaineer\nmountebank\nmounter\nmourner\nmouse\nmouth\nmouthpiece\nmover\nmoviegoer\nmuadhdhin\nmuazzin\nmuckraker\nmudslinger\nmuezzin\nmufti\nmug\nmuggee\nmugger\nmuggins\nmugwump\nmujahid\nmujik\nmujtihad\nmulatto\nmuleteer\nmuller\nmum\nmumbler\nmummer\nmummy\nmuncher\nmuralist\nmurderee\nmurderer\nmurderess\nmurmurer\nmuscle\nmusclebuilder\nmuscleman\nmuser\nmusher\nmusician\nmusicologist\nmusketeer\nmute\nmutilator\nmutineer\nmutterer\nmuttonhead\nmuzhik\nmuzjik\nmuzzler\nmycologist\nmycophage\nmycophagist\nmyope\nmyrmidon\nmystic\nmythologist\nnabob\nnag\nnagger\nnaif\nnailer\nname\nnamer\nnamesake\nnan\nnance\nnanna\nnanny\nnanus\nnaprapath\nnarc\nnarcissist\nnarcist\nnarcoleptic\nnark\nnarrator\nnatator\nnational\nnationalist\nnative\nnativist\nnatural\nnaturalist\nnaturist\nnaturopath\nnavigator\nnavvy\nnawab\nnaysayer\nnazi\nnebbech\nnebbish\nnecessitarian\nnecker\nnecromancer\nneeder\nneedlewoman\nneedleworker\nnegativist\nneglecter\nnegotiant\nnegotiator\nnegotiatress\nnegotiatrix\nneighbor\nneighbour\nneoclassicist\nneocon\nneoconservative\nneoliberal\nneologist\nneonate\nneophyte\nnephew\nnepotist\nnerd\nnester\nnestling\nnetkeeper\nnetminder\nneurasthenic\nneurobiologist\nneurolinguist\nneurologist\nneuroscientist\nneurosurgeon\nneurotic\nneutral\nneutralist\nnewbie\nnewborn\nnewcomer\nnewlywed\nnewsagent\nnewsboy\nnewscaster\nnewsdealer\nnewsman\nnewsmonger\nnewspaperman\nnewspaperwoman\nnewsperson\nnewsreader\nnewsvendor\nnewswoman\nnewswriter\nnibbler\nniece\nnigga\nniggard\nnigger\nniggler\nnightbird\nnighthawk\nnightrider\nnigra\nnihilist\nnincompoop\nninja\nninny\nnipper\nniqaabi\nnitpicker\nnitwit\nnob\nnoble\nnobleman\nnoblewoman\nnobody\nnoctambulist\nnomad\nnominalist\nnominator\nnominee\nnonachiever\nnonagenarian\nnonattender\nnonbeliever\nnoncandidate\nnoncitizen\nnoncom\nnoncombatant\nnoncompliant\nnonconformist\nnondescript\nnondrinker\nnondriver\nnonentity\nnonesuch\nnonmember\nnonpareil\nnonparticipant\nnonpartisan\nnonpartizan\nnonperson\nnonreader\nnonresident\nnonsmoker\nnonstarter\nnonsuch\nnonworker\nnormaliser\nnormalizer\nnosher\nnotability\nnotable\nnotary\nnoticer\nnovelist\nnovice\nnovillero\nnovitiate\nnude\nnudger\nnudist\nnudnick\nnudnik\nnuisance\nnullifier\nnullipara\nnumerologist\nnumismatist\nnumismatologist\nnumskull\nnun\nnuncio\nnurse\nnurseling\nnursemaid\nnurser\nnurseryman\nnursling\nnut\nnutcase\nnutritionist\nnutter\nnymph\nnymphet\nnympho\nnympholept\nnymphomaniac\noaf\noarsman\noarswoman\nobjector\noblate\nobliger\noboist\nobscurantist\nobserver\nobsessive\nobstetrician\nobstructer\nobstructionist\nobstructor\noccultist\noccupant\noccupier\noceanaut\noceanographer\noctogenarian\noctoroon\noculist\nodalisque\noddball\nodist\noenologist\noenophile\noffender\nofferer\nofferor\nofficeholder\nofficer\nofficial\nofficiant\noffspring\nogler\nogre\noiler\noilman\noldster\noldtimer\noligarch\nombudsman\nomnivore\nonanist\noncologist\noneiromancer\nonlooker\nonomancer\nopener\noperagoer\noperative\noperator\nophthalmologist\nopponent\nopportunist\nopposer\nopposite\nopposition\noppressor\noptician\noptimist\noptometrist\noracle\norator\norchestrator\nordainer\norderer\norderly\nordinand\nordinary\norganiser\norganist\norganizer\norientalist\noriginator\nornamentalist\nornithologist\norphan\northodontist\northoepist\northopaedist\northopedist\northoptist\nosculator\nosteologer\nosteologist\nosteopath\nosteopathist\nostiarius\nostiary\nostler\nostrich\notolaryngologist\notologist\notorhinolaryngologist\nouster\noutcast\noutcaste\noutdoorsman\noutdoorswoman\noutfielder\noutfitter\noutgoer\noutlander\noutlaw\noutlier\noutpatient\noutrider\noutsider\noverachiever\novercomer\noverlord\novernighter\noverseer\nowner\noyabun\npa\npacha\npachuco\npacificist\npacifier\npacifist\npacker\npackman\npackrat\npadder\npaddler\npadre\npadrone\npaederast\npaediatrician\npaedophile\npagan\npage\npageboy\npain\npainter\npal\npaladin\npalaeontologist\npalatine\npaleface\npaleographer\npaleographist\npaleontologist\npallbearer\npalmist\npalmister\npalooka\npalsgrave\npamperer\npamphleteer\npandar\npander\npanderer\npanegyrist\npanelist\npanellist\npanhandler\npanjandrum\npansexual\npansy\npantheist\npantomimer\npantomimist\npantryman\npantywaist\npapa\npaparazzo\npaperboy\npaperer\npaperhanger\npapist\npapoose\npappa\npappoose\npara\nparachuter\nparachutist\nparader\nparagon\nparagrapher\nparalegal\nparalytic\nparamedic\nparamedical\nparamour\nparanoiac\nparanoid\nparaplegic\nparaprofessional\nparapsychologist\nparasite\nparatrooper\npardner\npardoner\nparent\nparer\nparetic\npariah\nparishioner\nparliamentarian\nparlormaid\nparlourmaid\nparodist\nparolee\nparricide\nparrot\nparson\npartaker\nparticipant\npartisan\npartitionist\npartizan\npartner\nparty\npartygoer\nparvenu\npasha\npassenger\npasser\npasserby\npaster\npastor\npatentee\npater\npaterfamilias\npathfinder\npathologist\npatient\npatrial\npatriarch\npatrician\npatricide\npatrikin\npatriot\npatrioteer\npatrisib\npatroller\npatrolman\npatron\npatroness\npatronne\npatsy\npatternmaker\npatzer\npauper\npawer\npawn\npawnbroker\npayee\npayer\npaymaster\npaynim\npeacekeeper\npeacemaker\npeacenik\npeach\npeanut\npearler\npeasant\npeculator\npedagog\npedagogue\npedaler\npedaller\npedant\npeddler\npederast\npedestrian\npediatrician\npediatrist\npedlar\npedodontist\npedophile\npeeler\npeeper\npeer\npeeress\npeewee\npelter\npendragon\npenetrator\npenitent\npenman\npenologist\npenpusher\npensionary\npensioner\npentathlete\npeon\nperceiver\npercher\npercipient\npercussionist\nperfecter\nperfectionist\nperformer\nperfumer\nperi\nperinatologist\nperiodontist\nperipatetic\nperisher\nperjurer\nperpetrator\npersecutor\nperson\npersonage\npersonality\npersonification\nperspirer\npersuader\npervert\npeshmerga\npessimist\npest\npesterer\npet\npetitioner\npetter\npettifogger\nphalangist\npharisee\npharmacist\npharmacologist\nphilanderer\nphilanthropist\nphilatelist\nphilhellene\nphilhellenist\nphilistine\nphilologist\nphilologue\nphilomath\nphilosopher\nphilosophiser\nphilosophizer\nphlebotomist\nphoner\nphonetician\nphoney\nphonologist\nphony\nphotographer\nphotojournalist\nphotometrician\nphotometrist\nphrenologist\nphysician\nphysicist\nphysiologist\nphysiotherapist\nphytochemist\nphytologist\npianist\npicador\npicaninny\npiccaninny\npickaninny\npicker\npicket\npicklepuss\npicknicker\npickpocket\npickup\npicnicker\npig\npigman\npigmy\npilferer\npilgrim\npill\npillager\npillar\npillock\npilot\npimp\npinchgut\npinhead\npink\npinko\npioneer\npiper\npiranha\npirate\npisser\npistoleer\npitcher\npitchman\npitman\npivot\nplaceholder\nplacekicker\nplaceman\nplaceseeker\nplagiariser\nplagiarist\nplagiarizer\nplainclothesman\nplainsman\nplaintiff\nplaiter\nplanet\nplanner\nplant\nplanter\nplantsman\nplasterer\nplatelayer\nplater\nplatitudinarian\nplayactor\nplayboy\nplayer\nplayfellow\nplaygoer\nplaymaker\nplaymate\nplaywright\npleader\npleaser\npleb\nplebe\nplebeian\npledge\npledgee\npledger\nplenipotentiary\nplier\nplodder\nplotter\nploughboy\nploughman\nploughwright\nplowboy\nplower\nplowman\nplowwright\nplugger\nplumber\nplunderer\nplunger\npluralist\nplutocrat\nplyer\npoacher\npodiatrist\npoet\npoetess\npoetiser\npoetizer\npoilu\npointillist\npointsman\npoisoner\npoke\npol\npolack\npolemic\npolemicist\npolemist\npoliceman\npolicewoman\npolicyholder\npolitician\npolitico\npollster\npolluter\npoltroon\npolyandrist\npolygamist\npolyglot\npolygynist\npolymath\npolytheist\npom\npommy\npomologist\nponce\nponderer\npontifex\npontiff\npoof\npooler\npoop\npoove\npop\npope\npopinjay\npopulariser\npopularizer\npopulist\npornographer\nporter\nportraitist\nportrayer\nportwatcher\nposer\nposeur\nposeuse\npositivist\nposseman\npossessor\npossible\npostdoc\nposter\npostgraduate\npostilion\npostillion\npostman\npostmaster\npostmistress\npostponer\npostulant\npostulator\nposturer\npotboy\npotentate\npothead\npotholer\npothunter\npotman\npotter\npotterer\npouf\npoulterer\npoultryman\npouter\npowderer\npower\npowerbroker\npowerhouse\npractician\npractitioner\npraetor\npragmatist\nprankster\nprater\nprattler\nprayer\npreacher\nprebendary\nprecentor\npreceptor\nprecursor\npredator\npredecessor\npredestinarian\npredestinationist\npredictor\npreemie\npreemptor\nprefect\nprelate\npremie\npremier\nprentice\npresbyope\npresbyter\npreschooler\npresenter\npresentist\npreservationist\npreserver\npresident\npressman\nprestidigitator\npreteen\npreteenager\npretender\npreterist\npretor\nprevaricator\nprexy\nprey\nprick\nprickteaser\npriest\npriestess\nprig\nprimate\nprimigravida\nprimipara\nprimitive\nprimogenitor\nprimus\nprince\nprinceling\nprincess\nprincipal\nprinter\nprintmaker\nprior\nprioress\nprisoner\nprivate\nprivateer\nprivateersman\nprizefighter\npro\nprobable\nprobationer\nprocessor\nproconsul\nprocrastinator\nproctologist\nproctor\nprocurator\nprocurer\nprocuress\nprodigal\nprodigy\nproducer\nprof\nprofessional\nprofessor\nprofiteer\nprofligate\nprogenitor\nprogeny\nprognosticator\nprogrammer\nprogressive\nprohibitionist\nprojectionist\nprole\nproletarian\npromisee\npromiser\npromisor\npromoter\nprompter\npromulgator\nproofreader\npropagandist\npropagator\nprophesier\nprophet\nprophetess\npropman\nproponent\nproposer\npropositus\nproprietor\nproprietress\nprosecutor\nproselyte\nprospect\nprospector\nprosthetist\nprosthodontist\nprostitute\nprotagonist\nprotectionist\nprotector\nprotege\nprotegee\nprotester\nprotozoologist\nprovider\nprovincial\nprovisioner\nprovocateur\nprovoker\nprovost\nprowler\nproxy\nprude\npruner\npsalmist\npsephologist\npseud\npseudo\npseudohermaphrodite\npsychiatrist\npsychic\npsycho\npsychoanalyst\npsycholinguist\npsychologist\npsychoneurotic\npsychopath\npsychophysicist\npsychotherapist\npsychotic\npteridologist\npublican\npubliciser\npublicist\npublicizer\npublisher\npuddler\npudge\npuerpera\npugilist\npuke\npuller\npuncher\npundit\npunk\npunster\npunter\npup\npupil\npuppet\npuppeteer\npuppy\npurchaser\npurist\npuritan\npurser\npursued\npursuer\npurveyor\npusher\npushover\npussycat\nputter\nputterer\nputz\npygmy\npyrographer\npyromancer\npyromaniac\nqadi\nquack\nquad\nquadripara\nquadriplegic\nquadroon\nquadruplet\nquaestor\nquaffer\nquaker\nqualifier\nquarreler\nquarreller\nquarrier\nquarry\nquarryman\nquarter\nquarterback\nquartermaster\nqueen\nqueer\nquerier\nquester\nquestioner\nquibbler\nquidnunc\nquietist\nquin\nquint\nquintipara\nquintuplet\nquisling\nquitter\nquizmaster\nquizzer\nquoter\nrabbi\nracialist\nracist\nracker\nracketeer\nraconteur\nradical\nradiobiologist\nradiochemist\nradiographer\nradiologist\nradiotherapist\nrafter\nraftman\nraftsman\nragamuffin\nragpicker\nragsorter\nraider\nrailbird\nrailroader\nrailwayman\nrainmaker\nraiser\nraja\nrajah\nrake\nrakehell\nrambler\nramrod\nrancher\nranee\nranger\nrani\nranker\nranter\nraper\nrapist\nrappeller\nrapper\nrapporteur\nrapscallion\nrascal\nrat\nratepayer\nratifier\nratiocinator\nrationalist\nratter\nraver\nravisher\nreactionary\nreader\nrealist\nreaper\nreasoner\nrebel\nrebuker\nrebutter\nreceiver\nreceptionist\nrecidivist\nrecipient\nrecitalist\nreciter\nreckoner\nrecluse\nreconciler\nrecorder\nrecoverer\nrecreant\nrecruit\nrecruiter\nrectifier\nrector\nrecusant\nred\nredact\nredactor\nredcap\nredcoat\nredeemer\nredhead\nredheader\nredneck\nreeler\nreenactor\nref\nreferee\nreferral\nrefiner\nrefinisher\nreformer\nreformist\nrefugee\nrefuter\nregent\nregicide\nregistrant\nregistrar\nregular\nregulator\nreincarnation\nrelation\nrelative\nrelief\nreliever\nreligionist\nreligious\nreminder\nremover\nremunerator\nrenegade\nrenovator\nrenter\nrentier\nrep\nrepairer\nrepairman\nrepatriate\nrepeater\nreplacement\nreporter\nrepository\nrepresentative\nreproacher\nreprobate\nreprover\nrepublican\nrequester\nrescuer\nresearcher\nreserve\nreservist\nresident\nresister\nrespecter\nrespondent\nresponder\nrestauranter\nrestaurateur\nrester\nrestorer\nrestrainer\nretailer\nretainer\nretaliator\nretard\nretiree\nretreatant\nreveler\nreveller\nrevenant\nrevenuer\nreverend\nreversioner\nreversionist\nreviewer\nreviser\nrevisionist\nrevivalist\nrevolutionary\nrevolutionist\nrewriter\nrhabdomancer\nrhetorician\nrheumatic\nrheumatologist\nrhinolaryngologist\nrhymer\nrhymester\nribald\nrider\nridiculer\nrifleman\nrigger\nrighthander\nrightist\nringer\nringleader\nringmaster\nrioter\nrip\nripper\nriser\nritualist\nrival\nriveter\nrivetter\nroadman\nroamer\nroarer\nroaster\nrobber\nrock\nrocker\nrogue\nroisterer\nrollerblader\nromantic\nromanticist\nromp\nromper\nroofer\nrookie\nroomer\nroomie\nroommate\nroomy\nroot\nrooter\nropedancer\nropemaker\nroper\nropewalker\nrosebud\nrotter\nroue\nroughneck\nroughrider\nrounder\nroundhead\nroundsman\nrouser\nroustabout\nrouter\nrover\nrowdy\nrower\nroyalist\nrubberneck\nrubbernecker\nrube\nruffian\nruiner\nruler\nruminator\nrummy\nrumormonger\nrumourmonger\nrumrunner\nrunaway\nrunner\nrunt\nruralist\nrusher\nrustic\nrustler\nsaboteur\nsabra\nsachem\nsacrificer\nsacristan\nsaddhu\nsaddler\nsadhu\nsadist\nsadomasochist\nsafebreaker\nsafecracker\nsagamore\nsage\nsahib\nsailmaker\nsailor\nsaint\nsalesclerk\nsalesgirl\nsaleslady\nsalesman\nsalesperson\nsaleswoman\nsalter\nsalutatorian\nsaluter\nsalvager\nsalvor\nsampler\nsamurai\nsandbagger\nsandboy\nsandwichman\nsangoma\nsannup\nsannyasi\nsannyasin\nsanyasi\nsap\nsaphead\nsapper\nsartor\nsatellite\nsatirist\nsatrap\nsatyr\nsaunterer\nsavage\nsavant\nsaver\nsavior\nsaviour\nsawbones\nsawyer\nsaxist\nsaxophonist\nscab\nscalawag\nscallywag\nscalper\nscammer\nscamp\nscandalmonger\nscanner\nscapegoat\nscapegrace\nscaremonger\nscatterbrain\nscattergood\nscavenger\nscenarist\nsceneshifter\nsceptic\nschemer\nschizophrenic\nschlemiel\nschlep\nschlepper\nschlimazel\nschlockmeister\nschmo\nschmoozer\nschmuck\nschnook\nschnorrer\nscholar\nscholastic\nscholiast\nschoolboy\nschoolchild\nschoolfellow\nschoolfriend\nschoolgirl\nschoolman\nschoolmarm\nschoolmaster\nschoolmate\nschoolmistress\nschoolteacher\nscientist\nsciolist\nscion\nscoffer\nscofflaw\nscold\nscolder\nscorekeeper\nscorer\nscorner\nscoundrel\nscourer\nscourge\nscourger\nscout\nscouter\nscoutmaster\nscrag\nscrambler\nscrapper\nscratch\nscratcher\nscrawler\nscreamer\nscreecher\nscreener\nscreenwriter\nscrew\nscrewball\nscrewballer\nscribbler\nscribe\nscrimshanker\nscriptwriter\nscrivener\nscrooge\nscrounger\nscrubber\nscrutineer\nscrutiniser\nscrutinizer\nsculler\nscullion\nsculptor\nsculptress\nsculpturer\nseafarer\nsealer\nseaman\nseamster\nseamstress\nsearcher\nseasonal\nseasoner\nsecessionist\nsecond\nseconder\nsecretary\nsectarian\nsectarist\nsectary\nsecular\nsecularist\nsecundigravida\nsecurer\nseducer\nseductress\nseed\nseeder\nseedman\nseedsman\nseeker\nseer\nsegregate\nsegregationist\nsegregator\nseigneur\nseignior\nseismologist\nseizer\nselectman\nselector\nselectwoman\nself\nseller\nsemanticist\nsemifinalist\nseminarian\nseminarist\nsemiotician\nsemipro\nsemiprofessional\nsempstress\nsenator\nsendee\nsender\nseneschal\nsenior\nsensation\nsensationalist\nsensitive\nsensualist\nsentimentalist\nsentinel\nsentry\nseparationist\nseparatist\nseptuagenarian\nserf\nsergeant\nsericulturist\nserjeant\nsermoniser\nsermonizer\nserologist\nservant\nserver\nserviceman\nservitor\nsetter\nsettler\nsettlor\nsewer\nsexagenarian\nsexist\nsexpot\nsexton\nshadow\nshadower\nshaheed\nshaker\nsham\nshaman\nshammer\nshamus\nshanghaier\nshaper\nsharecropper\nshareholder\nshareowner\nsharer\nshark\nsharper\nsharpie\nsharpshooter\nsharpy\nshaver\nshearer\nshedder\nsheeny\nsheep\nsheepherder\nsheepman\nshegetz\nsheik\nsheika\nsheikh\nsheikha\nsheller\nshelver\nshepherd\nshepherdess\nsheriff\nsherlock\nshielder\nshifter\nshiksa\nshikse\nshill\nshingler\nshipbuilder\nshipmate\nshipowner\nshipper\nshipwright\nshirker\nshirtlifter\nshirtmaker\nshit\nshithead\nshitter\nshlemiel\nshlep\nshlepper\nshlimazel\nshlockmeister\nshmo\nshmuck\nshnook\nshnorrer\nshocker\nshoeblack\nshoemaker\nshogun\nshoofly\nshooter\nshopaholic\nshopkeeper\nshoplifter\nshopper\nshopwalker\nshortstop\nshot\nshouter\nshoveler\nshoveller\nshover\nshower\nshowgirl\nshowman\nshrew\nshrimp\nshrink\nshuffler\nshutterbug\nshylock\nshyster\nsib\nsibling\nsibyl\nsidekick\nsidesman\nsightreader\nsightseer\nsignaler\nsignaller\nsignalman\nsignatory\nsigner\nsignior\nsignor\nsignora\nsignore\nsignorina\nsilly\nsilversmith\nsilverworker\nsimperer\nsimple\nsimpleton\nsinger\nsinner\nsipper\nsir\nsirdar\nsire\nsiren\nsirrah\nsis\nsissy\nsister\nsitter\nskateboarder\nskater\nskeptic\nsketcher\nskidder\nskier\nskimmer\nskinflint\nskinhead\nskinner\nskipper\nskirmisher\nskirt\nskivvy\nskulker\nskunk\nskycap\nskydiver\nslacker\nslammer\nslanderer\nslapper\nslasher\nslattern\nslaughterer\nslave\nslaveholder\nslaver\nslavey\nslayer\nsledder\nsleeper\nsleepwalker\nsleepyhead\nsleuth\nsleuthhound\nslicer\nslicker\nslider\nslinger\nslip\nslipper\nslob\nslobberer\nsloganeer\nslogger\nslopseller\nslouch\nsloucher\nsloven\nslowcoach\nslowpoke\nslug\nslugabed\nsluggard\nslugger\nslumberer\nslut\nslyboots\nsmallholder\nsmarta\nsmasher\nsmiler\nsmirker\nsmith\nsmoker\nsmoothie\nsmoothy\nsmotherer\nsmuggler\nsnacker\nsnake\nsnapper\nsnarer\nsnatcher\nsneak\nsneaker\nsneerer\nsneezer\nsniffer\nsniffler\nsniper\nsnitch\nsnitcher\nsniveler\nsniveller\nsnob\nsnoop\nsnooper\nsnoot\nsnorer\nsnorter\nsnot\nsnowboarder\nsnuffer\nsnuffler\nsoaker\nsobersides\nsocialiser\nsocialist\nsocialite\nsocializer\nsociobiologist\nsociolinguist\nsociologist\nsociopath\nsod\nsodalist\nsodbuster\nsodomist\nsodomite\nsoftie\nsofty\nsojourner\nsolderer\nsoldier\nsolicitor\nsolitary\nsolitudinarian\nsoloist\nsolon\nsolver\nsomebody\nsomeone\nsommelier\nsomnambulist\nsomniloquist\nson\nsongster\nsongstress\nsongwriter\nsonneteer\nsonny\nsoothsayer\nsoph\nsophist\nsophisticate\nsophomore\nsoprano\nsorcerer\nsorceress\nsorehead\nsorrower\nsort\nsorter\nsot\nsoubrette\nsoul\nsoundman\nsource\nsourdough\nsourpuss\nsouse\nsouthpaw\nsovereign\nsower\nspaceman\nspacewalker\nspade\nspammer\nspanker\nsparer\nspastic\nspeaker\nspearhead\nspecialiser\nspecialist\nspecializer\nspecifier\nspectator\nspeculator\nspeechifier\nspeechmaker\nspeechwriter\nspeedskater\nspelaeologist\nspeleologist\nspellbinder\nspeller\nspelunker\nspender\nspendthrift\nspewer\nsphinx\nspic\nspick\nspik\nspiller\nspindlelegs\nspindleshanks\nspinmeister\nspinner\nspinster\nspiritualist\nspitfire\nspitter\nspiv\nsplicer\nsplitter\nspoiler\nspoilsport\nspokesman\nspokesperson\nspokeswoman\nsponge\nsponger\nsponsor\nspook\nsport\nsportscaster\nsportsman\nsportswoman\nsportswriter\nspotter\nspouse\nspouter\nsprawler\nsprayer\nsprigger\nsprinter\nsprog\nspurner\nspy\nspymaster\nsquabbler\nsquanderer\nsquare\nsquatter\nsquaw\nsquawker\nsquealer\nsqueeze\nsquinter\nsquire\nsquirmer\nsquirt\nstabber\nstableboy\nstableman\nstacker\nstaffer\nstagehand\nstager\nstaggerer\nstainer\nstakeholder\nstalker\nstalwart\nstammerer\nstamper\nstandardiser\nstandardizer\nstandby\nstar\nstarer\nstarets\nstargazer\nstarlet\nstarter\nstarveling\nstater\nstatesman\nstateswoman\nstationer\nstationmaster\nstatistician\nsteady\nstealer\nsteamfitter\nsteelmaker\nsteelman\nsteelworker\nsteeplejack\nsteerer\nsteersman\nstemmer\nstenographer\nstentor\nstepbrother\nstepchild\nstepdaughter\nstepfather\nstepmother\nstepparent\nstepper\nstepsister\nstepson\nstevedore\nsteward\nstewardess\nstickler\nstiff\nstifler\nstigmatic\nstigmatist\nstinker\nstinkpot\nstinter\nstipendiary\nstippler\nstirrer\nstitcher\nstockbroker\nstockholder\nstockist\nstockjobber\nstockman\nstocktaker\nstoic\nstoker\nstomper\nstonecutter\nstonemason\nstoner\nstonewaller\nstooge\nstoolie\nstoolpigeon\nstooper\nstorekeeper\nstoryteller\nstowaway\nstrafer\nstraggler\nstraight\nstranger\nstrangler\nstraphanger\nstrapper\nstrategian\nstrategist\nstrawman\nstrayer\nstreaker\nstreetwalker\nstrider\nstrikebreaker\nstriker\nstringer\nstriper\nstripling\nstripper\nstriptease\nstripteaser\nstriver\nstroke\nstroller\nstrongman\nstruggler\nstrumpet\nstud\nstudent\nstudy\nstuffer\nstumblebum\nstumbler\nstunner\nstupe\nstupid\nstutterer\nstyler\nstylist\nstylite\nsubaltern\nsubcontractor\nsubdeacon\nsubdivider\nsubduer\nsubeditor\nsubject\nsubjectivist\nsubjugator\nsublieutenant\nsubmariner\nsubmitter\nsubnormal\nsubordinate\nsuborner\nsubscriber\nsubsidiary\nsubsidiser\nsubsidizer\nsubsister\nsubstitute\nsubtracter\nsuburbanite\nsubversive\nsubverter\nsubvocaliser\nsubvocalizer\nsucceeder\nsuccess\nsuccessor\nsuccorer\nsuccourer\nsucker\nsuckling\nsuer\nsufferer\nsuffragan\nsuffragette\nsuffragist\nsuggester\nsuicide\nsuit\nsuitor\nsultan\nsummercater\nsummercaters\nsun\nsunbather\nsundowner\nsuper\nsupercargo\nsupergrass\nsuperintendent\nsuperior\nsuperman\nsupermarketeer\nsupermarketer\nsupermodel\nsupermom\nsupernumerary\nsuperordinate\nsuperstar\nsupervisor\nsupplanter\nsuppliant\nsupplicant\nsupplier\nsupporter\nsuppresser\nsuppressor\nsupremacist\nsuprematist\nsupremo\nsurety\nsurfboarder\nsurfer\nsurgeon\nsurmounter\nsurpriser\nsurrealist\nsurrenderer\nsurrogate\nsurveyor\nsurvivalist\nsurvivor\nsuspect\nsustainer\nsutler\nswagger\nswaggerer\nswaggie\nswagman\nswain\nswami\nswashbuckler\nswayer\nswearer\nsweater\nsweep\nsweeper\nsweetheart\nsweetie\nswell\nswellhead\nswimmer\nswindler\nswineherd\nswinger\nswitcher\nswordsman\nswot\nsybarite\nsycophant\nsyllogiser\nsyllogist\nsyllogizer\nsylph\nsymboliser\nsymbolist\nsymbolizer\nsympathiser\nsympathizer\nsymphonist\nsymposiarch\nsymposiast\nsyncopator\nsyndic\nsyndicalist\nsyndicator\nsynonymist\nsyntactician\nsynthesiser\nsynthesist\nsynthesizer\nsyphilitic\nsystematiser\nsystematist\nsystematizer\nsystemiser\nsystemizer\ntablemate\ntacker\ntackle\ntackler\ntaco\ntactician\ntagalong\ntagger\ntail\ntailback\ntailor\ntaker\ntalebearer\ntalent\ntaleteller\ntalker\ntallyman\ntamer\ntanker\ntanner\ntantaliser\ntantalizer\ntaoiseach\ntapper\ntapster\ntar\ntarget\ntart\ntartar\ntaskmaster\ntaskmistress\ntaster\ntatterdemalion\ntattler\ntattletale\ntaxer\ntaxidermist\ntaxman\ntaxonomer\ntaxonomist\ntaxpayer\ntchotchke\ntchotchkeleh\nteacher\nteammate\nteamster\ntearaway\ntease\nteaser\ntec\ntechie\ntechnician\ntechnocrat\ntechnologist\ntechnophile\ntechnophobe\nteen\nteenager\nteetotaler\nteetotalist\nteetotaller\ntekki\ntelecaster\nteleologist\ntelepathist\ntelephoner\ntelevangelist\nteller\ntelltale\ntellurian\ntemp\ntemporary\ntemporiser\ntemporizer\ntempter\ntemptress\ntenant\ntender\ntenderfoot\ntenno\ntenor\ntenorist\ntentmaker\ntergiversator\ntermagant\ntermer\nterminator\nterpsichorean\nterritorial\nterror\nterrorist\ntertigravida\ntestate\ntestator\ntestatrix\ntestee\ntester\ntestifier\nthane\nthatcher\nthaumaturge\nthaumaturgist\ntheatergoer\ntheatregoer\ntheist\ntheologian\ntheologiser\ntheologist\ntheologizer\ntheoretician\ntheoriser\ntheorist\ntheorizer\ntheosophist\ntherapist\nthespian\nthief\nthinker\nthirster\nthoroughbred\nthrall\nthreat\nthrottler\nthrowaway\nthrower\nthrowster\nthrush\nthruster\nthug\nthurifer\nthwarter\ntiddler\ntier\ntiger\ntightwad\ntike\ntiler\ntiller\ntilter\ntimberman\ntimekeeper\ntimer\ntimeserver\ntimpanist\ntinker\ntinkerer\ntinner\ntinsmith\ntinter\ntipper\ntippler\ntipster\ntiro\ntitan\ntither\ntitterer\ntoady\ntoast\ntoaster\ntoastmaster\ntobacconist\ntobogganist\ntoddler\ntoff\ntoiler\ntoller\ntollgatherer\ntollkeeper\ntollman\ntomboy\ntomfool\ntool\ntoolmaker\ntoper\ntopper\ntorchbearer\ntoreador\ntorero\ntormenter\ntormentor\ntorpedo\ntortfeasor\ntorturer\ntosser\ntot\ntotalitarian\ntotemist\ntoter\ntotterer\ntoucher\ntough\ntoughie\ntourer\ntourist\ntout\ntouter\ntovarich\ntovarisch\ntowhead\ntownee\ntowner\ntownie\ntownsman\ntowny\ntoxicologist\ntracer\ntracker\ntracklayer\ntrader\ntradesman\ntraditionalist\ntraducer\ntrafficker\ntragedian\ntragedienne\ntrailblazer\ntrailer\ntrainbandsman\ntrainbearer\ntrainee\ntrainer\ntrainman\ntrainmaster\ntraitor\ntraitress\ntramp\ntramper\ntrampler\ntransactor\ntransalpine\ntranscendentalist\ntranscriber\ntransexual\ntransfer\ntransferee\ntransferer\ntransferor\ntransferrer\ntransgressor\ntransient\ntranslator\ntransmigrante\ntransmitter\ntransplanter\ntranssexual\ntransvestite\ntrapper\ntrapshooter\ntraveler\ntraveller\ntraverser\ntrawler\ntreasonist\ntreasurer\ntreater\ntrekker\ntrembler\ntrencher\ntrencherman\ntrespasser\ntribade\ntribesman\ntribologist\ntribune\ntrick\ntricker\ntrickster\ntrier\ntrifler\ntriggerman\ntrigonometrician\ntrimmer\ntriplet\ntripper\ntritheist\ntriumvir\ntroglodyte\ntroller\ntrollop\ntrombonist\ntrooper\ntroubadour\ntroublemaker\ntroubler\ntroubleshooter\ntrouper\ntruant\ntruckler\ntrudger\ntruelove\ntrumpeter\ntrustbuster\ntrustee\ntruster\ntrustor\ntrusty\ntsar\ntsarina\ntsaritsa\ntsatske\ntshatshke\ntubercular\ntucker\ntugger\ntumbler\ntuner\nturkey\nturncoat\nturncock\nturner\nturnkey\nturtler\ntutee\ntutor\ntwaddler\ntwat\ntwerp\ntwiddler\ntwin\ntwiner\ntwirler\ntwirp\ntwit\ntycoon\ntyke\ntympanist\ntype\ntypesetter\ntypist\ntypographer\ntyrant\ntyro\ntzar\ntzarina\nultraconservative\nultramontane\nump\numpire\nunbeliever\nuncle\nunderachiever\nunderboss\nunderclassman\nunderdog\nundergrad\nundergraduate\nunderling\nunderperformer\nundersecretary\nunderseller\nunderstudy\nundertaker\nunderwriter\nundesirable\nundoer\nunfastener\nunfortunate\nunicyclist\nunilateralist\nunionist\nunknown\nunperson\nunraveler\nunraveller\nuntier\nuntouchable\nupbraider\nupholder\nupholsterer\nuprooter\nupsetter\nupstager\nupstart\nuranologist\nurchin\nurinator\nurologist\nuser\nusher\nusherette\nusufructuary\nusurer\nusurper\nutiliser\nutilitarian\nutilizer\nutterer\nuxor\nuxoricide\nvacationer\nvacationist\nvaccinator\nvaccinee\nvacillator\nvagabond\nvagrant\nvaledictorian\nvalentine\nvalet\nvaletudinarian\nvaluator\nvaluer\nvamp\nvamper\nvandal\nvanisher\nvanquisher\nvaquero\nvarlet\nvarmint\nvarnisher\nvassal\nvaticinator\nvaudevillian\nvaulter\nvaunter\nvegan\nvegetarian\nvendee\nvender\nvendor\nvenerator\nventer\nventriloquist\nventurer\nverbaliser\nverbalizer\nverger\nverifier\nvermin\nversifier\nvestal\nvestryman\nvestrywoman\nvet\nveteran\nveterinarian\nveterinary\nvexer\nvibist\nvibraphonist\nvicar\nvicegerent\nvicereine\nviceroy\nvictim\nvictimiser\nvictimizer\nvictor\nvictualer\nvictualler\nviewer\nvigilante\nvilifier\nvillager\nvillain\nvillainess\nvillein\nvindicator\nvintager\nvintner\nviolator\nviolinist\nviolist\nvioloncellist\nvirago\nvirgin\nvirologist\nvirtuoso\nviscount\nviscountess\nvisionary\nvisitant\nvisitor\nvisualiser\nvisualizer\nvitaliser\nvitalist\nvitalizer\nviticulturist\nvivisectionist\nvixen\nvizier\nvocaliser\nvocalist\nvocalizer\nvociferator\nvoice\nvoicer\nvoider\nvoluntary\nvolunteer\nvoluptuary\nvomiter\nvotary\nvoter\nvouchee\nvoucher\nvower\nvoyager\nvoyeur\nvulcaniser\nvulcanizer\nvulgarian\nvulgariser\nvulgarizer\nvulture\nwacko\nwaddler\nwaffler\nwag\nwagerer\nwaggoner\nwaggonwright\nwagoner\nwagonwright\nwaif\nwailer\nwainwright\nwaiter\nwaitress\nwaker\nwalker\nwallah\nwallflower\nwalloper\nwallpaperer\nwally\nwaltzer\nwanderer\nwangler\nwanker\nwannabe\nwannabee\nwanter\nwanton\nwarbler\nward\nwarden\nwarder\nwardress\nwarehouseman\nwarehouser\nwarhorse\nwarlord\nwarmonger\nwarner\nwarrantee\nwarranter\nwarrantor\nwarrener\nwarrior\nwasher\nwasherman\nwasherwoman\nwashout\nwashwoman\nwassailer\nwaster\nwastrel\nwatch\nwatchdog\nwatcher\nwatchmaker\nwatchman\nwatercolorist\nwatercolourist\nwaterer\nwaterman\nwaver\nwaverer\nwayfarer\nweakling\nwearer\nweasel\nweatherman\nweaver\nwebmaster\nweeder\nweekender\nweeper\nweigher\nweightlifter\nweirdie\nweirdo\nweirdy\nweisenheimer\nwelcher\nwelcomer\nwelder\nwelsher\nwelterweight\nwench\nwencher\nwesterner\nwetback\nwetnurse\nwetter\nwhacko\nwhale\nwhaler\nwheedler\nwheeler\nwheelwright\nwhiffer\nwhiner\nwhip\nwhipper\nwhippersnapper\nwhirler\nwhisperer\nwhistleblower\nwhistler\nwhiteface\nwhitey\nwhittler\nwhiz\nwhizz\nwholesaler\nwhore\nwhoremaster\nwhoremonger\nwhoreson\nwidow\nwidower\nwidowman\nwife\nwiggler\nwight\nwigmaker\nwildcat\nwildcatter\nwimp\nwindbag\nwinder\nwindtalker\nwinemaker\nwing\nwingback\nwinger\nwingman\nwinker\nwinner\nwino\nwiper\nwireman\nwirer\nwiretapper\nwiseacre\nwisenheimer\nwisp\nwit\nwitch\nwithdrawer\nwithholder\nwithstander\nwitness\nwitnesser\nwittol\nwiz\nwizard\nwog\nwolf\nwoman\nwomaniser\nwomanizer\nwonderer\nwonk\nwoodcarver\nwoodcutter\nwoodman\nwoodsman\nwoodworker\nwooer\nwoolgatherer\nwoolsorter\nwop\nwordmonger\nwordsmith\nworkaholic\nworker\nworkfellow\nworkingman\nworkman\nworkmate\nworldling\nworm\nworrier\nworrywart\nworshiper\nworshipper\nworthy\nwrangler\nwrecker\nwrester\nwrestler\nwretch\nwriggler\nwright\nwriter\nwrongdoer\nwuss\nxylophonist\nyachtsman\nyachtswoman\nyahoo\nyakuza\nyanker\nyardbird\nyardie\nyardman\nyardmaster\nyawner\nyearling\nyearner\nyeller\nyenta\nyeoman\nyid\nyielder\nyob\nyobbo\nyobo\nyodeller\nyogi\nyokel\nyoungster\nyounker\nyouth\nyuppie\nzany\nzealot\nzombi\nzombie\nzoologist\n"
  },
  {
    "path": "core/src/main/resources/edu/knowitall/openparse/openparse.model",
    "content": "template\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0000\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\nbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\n{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\n{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\nbe {rel} of\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.1492\n{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\n{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\n{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1473\n{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.1473\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\n{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\n{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.1443\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\nbe {rel} by\t{arg1} <nsubjpass< {rel:postag=VBN} >agent> {arg2}\t0.1148\nbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.1110\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=abbreviation|acronym|airline|airport|align|alternative|archipelago|area|arm|author|base|birth|birthplace|bishop|book|borough|branch|brother|campaign|capital|chairman|child|citizen|city|clone|combination|community|comprise|country|county|courtesy|creator|dance|daughter|defeat|department|descendant|dialect|director|disciple|district|division|editor|environment|export|extension|father|festival|flavor|follower|form|founder|gateway|go|god|government|governor|group|head|headquarter|hill|holiday|home|image|implementation|industry|island|issue|king|lake|land|language|launch|leader|locate|majority|man|master|mayor|member|mine|minority|mother|mountain|move|museum|name|native|neighborhood|newspaper|officer|park|part|party|peak|people|play|plugin|port|portion|pray|present|president|problem|professor|program|province|queen|quote|rage|rank|read|region|release|religion|restaurant|retrograde|return|revelation|river|ruler|run|school|sect|section|servant|service|set|sign|slave|son|source|speak|star|state|station|story|style|subject|subset|subsidiary|suburb|support|symbol|talk|territory|threat|town|trademark|tribe|type|unit|university|use|version|village|volcano|vote|wife|word|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0961\nbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0901\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{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}\t0.0839\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=come|go|look|lose|move|nod|present|return|say|take|turn} >prep_at> {arg2}\t0.0623\n{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\n{rel}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0577\n{rel}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0577\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=announce|arrest|assassinate|bear|capture|celebrate|complete|declare|defeat|establish|form|found|give|hold|incorporate|list|locate|make|offer|pass|present|publish|raise|release|show|situate|take} >prep_on> {arg2}\t0.0565\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=acclaim|announce|appoint|baptize|bear|beget|call|choose|consider|crown|declare|deem|designate|dub|elect|establish|hail|inaugurate|know|label|license|locate|make|name|proclaim|project|rank|rate|reelect|registare|register|registrate|resister|tame|vote} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0530\nbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBN}\t0.0509\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\nbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=assassinate|base|bear|build|bury|celebrate|establish|found|headquarter|hold|keep|kill|locate|make|perform|permit|play|present|see|situate} >prep_at> {arg2}\t0.0432\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=actor|actress|agency|aircraft|airline|airport|analyst|application|archipelago|architect|area|arena|art|artist|attraction|author|aviator|body|book|borough|browser|build|business|campus|capital|cay|celebration|center|child|citizen|city|civilization|client|collection|college|colony|community|company|compiler|composer|compound|conference|consultant|corporation|country|county|crime|database|democracy|designer|dialect|director|distribution|distro|document|economist|editor|entertainer|event|explorer|facility|father|file|firm|footballer|format|franchise|game|grape|group|holiday|home|hospital|hotel|implementation|institution|island|journalist|language|lawyer|magazine|man|manufacturer|mathematician|meet|megachurch|messenger|mission|missionary|monarchy|monk|monument|mountain|museum|musician|nation|native|novelist|o|oasis|organisation|organization|package|painter|park|part|person|philosopher|photographer|photojournalist|physician|physicist|place|playwright|poet|politician|practice|president|program|proof|property|prophet|protocol|provider|publisher|region|religion|remix|republic|research|residence|resort|revelation|school|scientist|script|serb|server|singer|site|slave|society|software|solution|son|stadium|standard|state|structure|subgroup|suburb|system|teacher|team|temple|term|territory|text|therapy|tool|town|township|track|traveller|university|venue|village|wikus|writer} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0428\n{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\n{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0416\n{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0416\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBG} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBG} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=agency|airline|airport|area|bishop|body|book|borough|capital|center|centre|city|community|country|county|currency|dance|dish|district|enclave|festival|figure|government|governor|hero|hub|ingredient|island|king|landmark|language|law|leader|member|mountain|museum|neighborhood|part|person|point|port|president|priest|professor|prophet|province|region|religion|sign|slave|sport|state|suburb|symbol|text|town|trademark|university} >prep_in> {arg2}\t0.0388\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|bury|celebrate|establish|find|give|grow|headquarter|hold|introduce|involve|locate|publish|raise|reveal|set|situate|speak|write} >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}\t0.0377\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=announce|appear|arrive|begin|believe|close|come|commence|convene|die|end|explode|fall|hold|land|launch|live|locate|meet|open|pass|post|report|resign|say|sign|start|strike|surrender|write} >prep_on> {arg2}\t0.0371\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=appear|call|come|cry|give|go|pray|return|say|speak} >prep_unto> {arg2}\t0.0363\nbe {rel} in\t{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}\t0.0360\nbe {rel} in\t{arg1} <nsubj< {rel:postag=NN:regex=airline|airport|area|bank|book|borough|city|community|country|county|court|currency|district|festival|food|group|industry|ingredient|island|lake|language|law|metropolis|mountain|museum|nation|neighborhood|person|point|port|power|priest|province|region|religion|republic|river|sport|star|state|suburb|team|town|volcano} >prep_of> {arg2}\t0.0338\nbe {rel} in\t{arg1:postag=NNP} <prep_of< {rel:postag=NN:regex=arrest|book|borough|city|community|country|county|district|headquarter|island|nation|neighborhood|province|region|release|state|suburb|town|village} >nn> {arg2:postag=NNP}\t0.0331\nbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\n{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} >tmod> {arg2}\t0.0305\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN} >poss> {arg2}\t0.0297\n{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\n{rel}\t{arg1} <nsubj< {rel1:postag=VBG} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0292\n{rel}\t{arg1} <nsubj< {rel1:postag=VBG} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0292\nbe {rel} {prep}\t{arg1} <appos< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0282\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2}\t0.0254\nbe {rel} of\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=accept|acknowledge|acquire|add|administer|admit|adopt|annex|announce|anoint|appoint|approve|associate|bear|beget|bind|build|call|celebrate|certify|choose|claim|classify|commit|conceive|concern|confirm|consider|count|create|credit|declare|define|depict|describe|designate|develop|elect|engage|entitle|establish|expect|explain|fame|found|give|govern|hail|hold|honor|honour|horizon|identify|inaguarate|inaugerate|inaugurate|include|incorporate|induct|install|introduce|involve|know|list|make|manifest|mention|name|nominate|note|obligate|oblige|open|oust|pay|picture|portray|position|present|proclaim|qualify|rank|reborn|recognise|recognize|record|reelect|refer|regard|reinstate|reject|release|remember|remove|renown|represent|require|respect|reveal|revere|rule|see|select|sell|send|serve|set|show|speak|supply|suppose|swear|take|term|think|tout|treat|understand|update|use|view|vote|welcome|worship} >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}\t0.0239\n{rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=appeal|begin|call|campaign|change|collapse|come|comprise|consist|control|convene|convert|crash|deal|defeat|descend|dwell|escape|export|fall|fight|file|fire|flee|fly|focus|glance|go|graduate|grant|hire|jump|land|lead|live|lock|look|march|meet|move|note|offer|open|operate|originate|plan|play|point|pray|preach|progress|promise|protest|rage|report|reside|resign|return|revolve|rise|run|sail|serve|set|show|sign|speak|stand|star|stare|start|submit|subscribe|surrender|talk|teach|transfer|travel|turn|vote|walk|win|work|write} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0233\nbe {rel} in\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >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}\t0.0230\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|achieve|announce|appear|arrive|attend|attract|be|begin|believe|belong|break|bring|certify|claim|come|complete|contract|create|cut|de|debut|decide|declare|develop|die|discover|display|do|dream|drop|earn|emigrate|emmigrate|endure|enjoy|enlist|enrol|enter|escape|establish|excel|exhibit|fail|fall|feel|fight|find|flee|follow|form|found|gain|get|give|go|graduate|grow|have|help|hinge|immigrate|inherit|join|know|launch|lead|learn|leave|listen|live|lose|love|major|make|marry|migrate|move|name|note|null|obtain|offer|open|pass|perform|pick|play|prefer|prove|publish|pursue|quit|read|realize|receive|release|relocate|remain|report|respond|return|reveal|rise|say|seek|serve|set|settle|show|spend|split|star|start|state|study|suffer|survive|take|teach|tell|train|travel|turn|use|visit|want|win|work|write} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0227\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBD:regex=acquire|aka|announce|appoint|approve|attack|beat|belate|bless|buy|call|choose|command|control|create|cross|de|defeat|deny|devastate|develop|die|discover|elect|enter|find|found|get|go|habe|have|head|hit|hold|import|introduce|invade|invent|issue|join|kill|launch|lead|leave|lose|love|make|marry|meet|occupy|pass|ratify|register|reject|release|replace|see|sell|send|set|ship|steal|strike|support|take|tell|unveil|wa|win|write} >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}\t0.0221\n{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\nbe {rel} by\t{arg1} >partmod> {rel:postag=VBN} >agent> {arg2}\t0.0214\nbe {rel} {prep}\t{arg1:postag=NNP} <nsubjpass< {rel:postag=VBN:regex=add|analyze|announce|baptize|base|bear|build|celebrate|close|compose|comprise|conduct|counterstain|create|crucify|design|develop|digest|do|download|enter|export|find|found|give|grow|headquarter|hold|involve|know|locate|make|marry|name|obtain|offer|perform|play|post|present|provide|publish|purchase|quote|raise|register|relate|require|reveal|save|sell|send|situate|speak|stain|store|subject|suspend|translate|upload|use|write} >{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}\t0.0213\nbe {rel} in\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=area|book|borough|city|country|county|district|festival|island|language|minority|neighborhood|province|region|release|river|state|suburb|town} >prep_of> {arg2:postag=NNP}\t0.0210\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=accept|acknowledge|allow|appoint|baptize|bear|believe|bless|build|call|choose|claim|consider|declare|design|destine|elect|elevate|expect|fit|force|give|guarantee|hold|inaugurate|intend|invite|know|locate|make|mean|name|nominate|perceive|poise|prepare|proclaim|project|prove|qualify|recognize|reelect|register|report|repute|require|say|schedule|see|select|set|show|slate|state|suppose|swear|take|think|understand|unqualify|use|vote} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0208\nbe {rel} of\t{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}\t0.0208\nbe {rel} of\t{arg1} >appos> {rel:postag=NN} >poss> {arg2}\t0.0206\n{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0200\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\n{rel} {prep}\t{arg1} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0192\nbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|advise|agree|allow|appoint|arrive|ask|attempt|be|beat|begin|bring|call|challenge|choose|claim|come|command|compel|continue|convince|cross|cut|dare|decide|decline|defeat|depart|desire|determine|didn|direct|do|drop|elect|encourage|expect|fail|feel|flee|force|gather|get|go|happen|have|instruct|intend|interrupt|invite|leave|long|make|manage|mean|move|need|offer|open|opt|order|pause|permit|persuade|plan|pledge|pray|prepare|pretend|proceed|promise|pull|raise|receive|refuse|request|require|resign|resolve|return|rise|roll|seek|seem|send|set|shift|sit|snap|start|suspend|swivel|take|teach|tear|tell|threaten|tilt|try|turn|urge|use|volunteer|vote|vow|want|win|wish|work} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0181\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=assassinate|bear|hold|locate|situate} >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}\t0.0178\nbe {rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=NN:regex=acronym|act|affiliate|agency|alternative|author|authority|birthplace|birthstone|body|capital|cause|center|chairman|character|city|clone|color|component|continuation|contractor|country|creator|currency|depository|descendant|dialect|download|editor|end|environment|extension|face|father|festival|form|founder|fulfillment|gateway|gift|governor|head|heart|heartland|holder|home|implementation|island|jewel|king|land|language|leader|mayor|member|month|mother|name|officer|owner|part|player|port|president|property|publisher|rank|reason|religion|replacement|resource|revelation|river|ruler|son|source|sponsor|star|state|story|subsidiary|successor|supporter|symbol|team|threat|town|trademark|type|university|version|way|word|work} >{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}\t0.0175\n{rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBD:regex=accept|agree|appear|arrive|begin|believe|belong|borrow|come|die|do|fall|flee|focus|give|glance|go|graduate|hold|land|leave|lie|live|locate|look|lose|make|meet|move|open|originate|post|power|prepare|present|provide|publish|qualify|report|resign|return|run|say|serve|slam|smile|speak|stare|start|submit|support|surrender|switch|top|travel|turn|vote|win|withdraw|work|wrap|write} >{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}\t0.0174\nbe {rel} of\t{arg1} <appos< {rel:postag=NN} >poss> {arg2}\t0.0169\nbe {rel} for\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0162\nbe {rel} of\t{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} <nn< {arg1:postag=NNP} >poss> {arg2:postag=NNP}\t0.0162\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ:regex=accept|appoint|bless|cause|contain|control|deny|enter|hate|have|include|invade|love|need|offer|own|play|publish|receive|release|represent|require|rule|see|support|take|use|want|win} >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}\t0.0160\nbe {rel} to\t{arg1} >appos> {rel:postag=NN:regex=home|precursor|successor} >prep_of> {arg2}\t0.0157\nbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\n{rel} to\t{arg1} <prep_unto< {rel:postag=VBD:regex=go|say|speak} >nsubj> {arg2}\t0.0152\nbe {rel} of\t{arg1:postag=NNP} <nsubj< {rel:postag=NN:regex=agency|airline|ally|application|art|birthstone|body|book|borough|brother|candidate|capital|celebration|center|chairman|chief|citizen|city|clone|color|component|county|creation|day|dialect|director|disciple|father|festival|friend|gift|goddess|governor|graduate|head|home|implementation|inhibitor|island|king|language|leader|man|mayor|member|messenger|month|mother|name|native|officer|part|people|person|president|product|program|project|prophet|province|religion|revelation|secretary|servant|sign|son|speaker|sport|state|subsidiary|suburb|supporter|symbol|territory|trademark|variant|version|veteran|wife|winner|word|work} >nn> {arg2:postag=NNP}\t0.0152\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >tmod> {arg2}\t0.0151\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|headquarter|hold|locate|present} >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}\t0.0146\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=a|activity|airport|application|archipelago|area|b|board|book|branch|brother|browser|build|campus|care|ceremony|character|child|city|class|clip|code|company|competition|conference|contribution|county|course|crystal|daughter|day|deposit|document|donation|estate|event|examination|fabric|facility|farmer|father|file|footage|form|format|founder|fragment|framework|game|gemstone|genome|gift|gospel|headquarters|hotel|house|island|kernel|language|line|location|man|manuscript|meet|meeting|member|membership|mouse|museum|night|nucleus|office|page|parent|park|passage|payment|people|platform|play|plc|plugin|portion|practitioner|product|program|programme|project|property|prophecy|protocol|review|score|scripture|session|set|share|site|size|software|spear|standard|stockpile|stone|store|style|system|template|text|university|use|version|work|writer|year} <nsubjpass< {rel:postag=VBN:regex=accept|appoint|associate|ban|base|bear|celebrate|close|compose|comprise|conduct|connect|convert|counterstain|cover|develop|digest|direct|do|elect|establish|find|fulfil|give|grow|headquarter|hold|introduce|invent|know|license|list|locate|make|marry|name|obtain|offer|persecute|play|post|publish|quote|read|relate|release|return|reveal|schedule|send|set|show|situate|speak|stain|submit|teach|translate|use|write} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0141\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|achieve|address|announce|appoint|approve|ascend|assume|attend|back|be|begin|break|bring|celebrate|claim|come|complete|consider|continue|declare|defend|define|depict|develop|do|earn|elect|emerge|end|enjoy|enter|establish|exercise|exist|express|face|flourish|follow|gain|get|give|go|grow|have|help|hold|identify|inaugurate|incarnate|include|issue|join|know|live|lose|make|meet|move|name|nominate|occupy|oppose|participate|pass|play|precede|preside|proclaim|prophetzlyy|raise|receive|recognize|refer|regain|regard|reign|reject|remain|replace|represent|resign|retain|retire|return|reveal|rise|rule|run|say|see|send|serve|share|sign|speak|spend|stand|start|step|succeed|support|surpass|swear|take|teach|tell|think|use|view|visit|vote|walk|welcome|win|work} >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}\t0.0134\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >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}\t0.0132\nbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\nbe {rel} in\t{arg1} <nsubj< {rel:postag=NN:regex=belief|city|country|county|district|hill|industry|island|lake|language|mountain|neighborhood|newspaper|park|problem|province|region|religion|river|star|state|team|town|village} >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}\t0.0131\n{rel}\t{arg1:postag=NNP} <nn< {arg2: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}\t0.0128\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJR} >{prep:regex=prep_(.*)}> {arg2}\t0.0128\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=africa|anoint|apr|association|august|bird|boaz|camillum|canada|chair|chairman|china|christ|dec|december|democrat|director|europe|feb|february|god|hanover|head|him|house|immanuel|indium|iraq|israel|jan|jesus|johnson|june|king|london|lord|louisville|mar|march|mark|mary|may|mayor|md|messiah|nazareth|oct|october|orlando|ottawa|person|president|redeemer|representative|san|savior|september|springfield|trinity|washington|word|yeshua} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0126\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD:regex=look|present|smile} >prep_at> {slot0:postag=NN:regex=aspect|chapter|conference|congress|convention|form|history|meet|meeting|proceedings|section|seminar|session|symposium} >prep_of> {arg2}\t0.0126\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=assassinate|base|bear|bury|headquarter|hold|locate|play|present|shoot} >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}\t0.0126\nbe {rel} of\t{arg1} <prep_of< {slot0:postag=NN:regex=announcement|appointment|ceremony|day|declaration|departure|election|emergence|impression|inaguration|inauguration|installation|instatement|nomination|victory} >prep_as> {rel:postag=NNP:regex=chairman|head|president|president-elect|speaker|word} >prep_of> {arg2}\t0.0126\n{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0125\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=announce|appoint|bear|call|choose|declare|elect|inaugurate|install|make|name|notice|proclaim|reelect|refer|slate|swear|vote} >dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0124\n{rel} in\t{arg1} <nsubj< {rel:postag=VBZ} >tmod> {arg2}\t0.0124\nbe {rel} of\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=admit|announce|appoint|call|certify|choose|confirm|elect|employ|feature|hail|impeach|inagurate|inaugerate|inaugurate|install|know|name|nominate|offer|proclaim|recognize|reelect|refer|regard|release|remember|select|swear|vote|wear} >prep_as> {rel:postag=NNP:regex=capital|chairman|city|crossroads|father|goddess|island|king|land|member|president|queen|secretary|speaker} >prep_of> {arg2}\t0.0123\nbe {rel} {prep}\t{arg1} <conj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0120\nbe {rel} {prep}\t{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}\t0.0118\nbe {rel} {prep}\t{arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0117\n{rel} to\t{arg1} <nsubj< {rel:postag=VBZ:regex=apply|come|give|go|move|return|say|speak|write} >prep_in> {arg2}\t0.0115\n{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=accept|adopt|amend|announce|appoint|approve|attack|beat|become|bless|bomb|call|choose|conquer|control|convene|create|deliver|destroy|devastate|develop|discover|enter|have|hit|inspire|introduce|invade|join|launch|leave|lose|love|marry|obey|occupy|pass|play|preach|promise|publish|reject|release|save|see|send|speak|strike|suspend|take|tell|win|write} >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}\t0.0114\n{rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBZ:regex=apply|begin|believe|belong|come|consist|die|fall|file|fly|go|grow|lead|look|meet|move|offer|operate|recommend|refer|report|reside|return|run|s|sail|say|sound|speak|specialize|stand|start|turn|work|write} >{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}\t0.0110\nbe {rel} {prep}\t{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}\t0.0109\nbe {rel} {prep}\t{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}\t0.0109\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=actor|apr|aug|august|author|biography|brooklyn|btw|composer|daughter|dec|december|feb|february|founder|home|jan|january|jul|july|jun|june|king|light|mar|march|may|mcguire|monday|nakamura|nov|novelist|oct|p|poet|president|princeton|quality|senator|sep|september|siggraph|south|system|william|williamstown} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0108\nbe {rel} of\t{arg1:postag=NNP} <appos< {rel:postag=NN:regex=airline|author|body|book|candidate|capital|chairman|city|co-founder|commissioner|creator|daughter|director|drummer|editor|father|founder|governor|home|leader|mayor|member|minister|moon|native|newspaper|owner|president|scripture|secretary|secretary-general|son|speaker|subsidiary|suburb|version|wife|winner} >nn> {arg2:postag=NNP}\t0.0108\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0105\nbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >conj> {arg2}\t0.0105\nbe {rel} {prep}\t{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}\t0.0104\n{rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|anticipate|appoint|approach|ask|believe|call|certify|charge|choose|command|commission|commit|compel|deem|design|destine|determine|direct|elect|encourage|entitle|establish|excite|expect|force|grant|instruct|invite|lead|make|mandate|motivate|need|nominate|oblige|order|permit|persuade|pick|plan|poise|prepare|project|prompt|recruit|request|require|say|schedule|select|send|set|sign|slate|summon|suppose|tell|think|use} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0104\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD:regex=glance|happen|look|lose|nod|present|speak} >prep_to> {arg2}\t0.0104\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} <rcmod< {arg2}\t0.0103\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=act|ally|apostle|brother|city|cousin|enemy|extension|father|friend|home|language|member|mother|officer|part|president|signatory|son|successor|temple|tributary|wife} >prep_to> {arg2}\t0.0102\nbe {rel} of\t{arg1} <prep_of< {slot0:postag=NN:regex=acceptance|accession|admission|adoption|appointment|choice|concept|confession|day|denial|description|designation|dignity|doctrine|election|elevation|emergence|endorsement|establishment|government|history|idea|identification|identity|inauguration|inclusion|introduction|mission|nomination|notion|person|position|presence|recognition|rejection|removal|resignation|resurrection|revelation|rise|role|selection|sonship|status|story|testimony|triumph|understand|uniqueness|use|victory|witness} >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}\t0.0102\n{rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=act|attack|bear|call|camera|convert|drive|escort|file|go|hire|land|live|look|meet|move|post|report|retreat|return|run|set|stand|start|surrender|talk|triumph|vote|wait|walk|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0101\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=ban|bear|collect|hold|locate|publish|situate} >prep_from> {arg2}\t0.0101\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|assume|broaden|capture|demonstrate|expand|fatten|gain|get|have|hold|inspire|keep|lose|maintain|order|preach|recapture|regain|retain|retake|secure|seize|show|solidify|take|teach|win|wrest|wrestle} >dobj> {rel:postag=NN:regex=close|control|end|launch|love|release|write} >prep_of> {arg2}\t0.0100\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBZ:regex=accept|acquire|beat|become|blame|bless|buy|call|cause|control|create|deny|destroy|develop|enter|get|go|grow|have|hold|include|introduce|invade|join|launch|lead|love|make|meet|need|offer|own|pass|play|prefer|quote|reject|release|replace|require|sing|support|tell|use|wear|win} >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}\t0.0100\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{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}\t0.0099\nbe {rel} of\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=airport|area|capital|city|country|county|currency|district|father|festival|government|island|language|part|people|province|region|religion|river|state|territory} >prep_in> {arg2:postag=NNP}\t0.0098\n{rel} in\t{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}\t0.0097\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=ad|adword|airport|analytic|application|area|bark|be|brand|browser|build|button|cease|character|citrate|city|company|complex|consciousness|device|emblem|experience|game|host|iphone|island|junior|king|logo|mark|medallion|minus|mission|name|null|oil|page|pc|peninsula|people|product|program|project|pronunciation|property|province|reader|region|service|settlement|site|software|son|state|suburb|symbol|talk|territory|today|tv|valley|virus|volcano|vpro|wrestle} <nsubj< {rel:postag=NN:regex=alternative|birthstone|capital|cause|city|country|creation|currency|form|gateway|gift|group|home|hub|ingredient|king|language|member|mountain|name|part|president|project|property|region|river|son|source|sport|state|subsidiary|symbol|threat|town|trademark|type|version|word} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0096\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0095\nbe {rel} of\t{arg1} <prep_in< {slot0:postag=NN:regex=aborigine|action|activity|arrival|attack|background|bank|basis|bird|business|buyer|capitalism|case|centre|century|change|child|church|city|client|club|community|company|concert|condition|conference|conflict|consumption|country|culture|customer|demand|design|destination|development|dictatorship|employer|event|experience|facility|factory|family|festival|flood|force|form|friend|girl|group|growth|history|holiday|home|hotel|impact|income|interest|investment|issue|job|lawyer|leader|library|life|lime|line|location|majority|manufacturer|market|member|militancy|mission|movement|museum|network|number|operation|operator|opportunity|organization|originate|partner|people|place|plant|player|power|practice|presence|problem|product|program|project|property|protection|protest|range|refugee|religion|revolution|rise|sale|scene|service|site|situation|soil|sport|store|student|study|temple|terrorism|time|town|tradition|train|travel|travels|trouble|use|user|village|violence|voter|website|woman|work|year} >prep_in> {rel:postag=NN:regex=capital|city|heart|member|part|region|state|suburb} >prep_of> {arg2}\t0.0095\nbe {rel} by\t{arg1} <nsubj< {slot0:postag=NN:regex=agency|agent|angel|art|being|body|book|browser|casino|channel|character|church|clone|company|condition|country|disease|document|drug|enclave|epic|film|format|game|gift|group|head|infection|institution|kernel|kingdom|language|law|legislation|majority|man|medication|method|nation|organisation|organization|panel|percent|person|platform|play|position|product|program|project|protocol|religion|series|service|sign|site|software|son|spirit|state|system|technique|technology|tool|trademark|tragedy|website|word} >partmod> {rel:postag=VBN} >agent> {arg2}\t0.0094\n{rel} in\t{arg1} <nsubj< {rel:postag=VBZ:regex=begin|believe|close|convene|die|end|fall|meet|open|say|start} >prep_on> {arg2}\t0.0093\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|equip|export|find|give|hold|locate|offer|place|provide|require|send|use|waste|write} >{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}\t0.0093\nbe {rel} {prep}\t{arg1} <nsubj< {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|agency|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|college|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|combination|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|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|hour|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|institution|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|mile|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|minute|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|nation|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|organization|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|product|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|tenth|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|university|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|world|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} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0092\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VB:regex=accept|acknowledge|add|admit|adore|affirm|annex|anoint|believe|bow|bring|call|celebrate|change|claim|confess|confirm|congratulate|consider|declare|define|deny|depose|describe|elect|endorse|establish|exalt|forget|give|have|honor|identify|inaugurate|include|join|keep|know|love|maintain|make|name|nominate|obey|portray|present|preserve|proclaim|promote|prove|receive|recognise|recognize|regard|reject|remember|replace|represent|respect|retain|see|serve|show|succeed|support|take|treat|understand|view|vote|welcome|worship} >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}\t0.0091\n{rel}\t{arg1} <amod< {arg2} >amod> {rel:postag=JJ:regex=belate|control|edit|elect|executive|head|leave|occupy|register}\t0.0091\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0091\nbe {rel} by\t{arg1} >rcmod> {rel:postag=VBN} >agent> {arg2}\t0.0090\n{rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=hold|locate|reveal|write} >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}\t0.0089\nbe {rel} at\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|defeat|enrol|hold|locate|purchase|see} >prep_in> {arg2}\t0.0089\nbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {slot0:postag=NN:regex=agency|company|conglomerate|giant|group|movement|organization|virus} <appos< {arg2}\t0.0088\nbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >xcomp> {arg2}\t0.0087\nbe {rel} of\t{rel:postag=NN:regex=author|capital|ceo|creator|director|god|home|island|king|language|leader|member|president|queen} <nn< {arg1:postag=NNP} >amod> {arg2:postag=NNP}\t0.0087\n{rel}\t{arg1} <prep_of< {slot0:postag=NN:regex=dau|daughter|heiress|sister|son|widow} <appos< {arg2} <dobj< {rel:postag=VBD:regex=marry}\t0.0087\nbe {rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=author|bear|boom|business|capital|child|citizen|city|color|component|comprise|enemy|follower|form|group|implementation|industry|king|lamb|language|member|mine|minority|mother|name|neighborhood|newspaper|part|people|province|region|river|secretary|son|speak|square|story|style|trademark|way|will|word|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0086\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD:regex=say|speak|write} >prep_to> {arg2}\t0.0086\nbe {rel} in\t{arg1:postag=NNP} <nsubj< {rel:postag=NN:regex=airport|bank|base|city|country|county|holiday|industry|island|lake|language|market|mountain|neighborhood|officer|park|player|province|religion|river|sport|state|team|town|university} >nn> {arg2:postag=NNP}\t0.0085\n{rel} in\t{arg1} <nsubj< {rel:postag=VB:regex=begin|close|convene|die|end|fall|live|meet|open|start|surrender} >prep_on> {arg2}\t0.0084\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD:regex=deliver|present} >prep_at> {slot0:postag=NNP:regex=academy|association|conference|congress|meet|proceed|society} >prep_of> {arg2}\t0.0084\n{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\nbe {rel} {prep}\t{rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0083\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=appear|arrive|begin|crash|die|follow|hold|land|live|locate|meet|open|play|preach|present|remain|say|settle|stay|work|write} >prep_at> {arg2}\t0.0083\n{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VB}\t0.0080\n{rel}\t{arg1} >appos> {slot0:postag=NN:regex=actor|boy|group|movement|virus} >rcmod> {rel:postag=VBZ} >dobj> {arg2}\t0.0080\n{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=archipelago|book|branch|brother|cache|campus|ceremony|child|city|community|contribution|copy|country|criticism|daughter|descendant|dialect|division|edition|event|evidence|facility|father|form|founder|glory|gospel|grandchild|granddaughter|grandson|headquarters|island|issue|language|life|litter|love|majority|manuscript|meet|member|office|parent|part|people|prophecy|republic|revelation|righteousness|session|son|source|state|stockpile|story|subsidiary|text|town|use|version|writings} <nsubjpass< {rel:postag=VBN:regex=ban|base|bear|develop|establish|find|fulfil|headquarter|hold|locate|publish|reveal|situate|speak|write} >prep_in> {arg2}\t0.0079\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >xcomp> {slot0:postag=CD:regex=one} >nsubj> {arg2}\t0.0079\nbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=come|go|present|report|return} >prep_at> {slot0:postag=NN:regex=aspect|conference|convention|destruction|meet|meeting|proceedings|session} >prep_of> {arg2}\t0.0078\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=birthplace|boundary|brother|child|city|daughter|edition|grandson|hometown|issue|kilometer|kilometre|minute|nephew|north|son|stockpile} <dobj< {rel:postag=VBN:regex=bear|find|locate|publish|write} >prep_in> {arg2}\t0.0078\nbe {rel} in\t{arg1} >appos> {rel:postag=NN:regex=book|borough|city|country|island|language|neighborhood|officer|person|province|region|river|state|town} >prep_of> {arg2}\t0.0077\nbe {rel} to\t{arg1} <nsubj< {rel:postag=NN:regex=affiliate|gateway|head|home|precursor|sequel|signatory|successor} >prep_of> {arg2}\t0.0076\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=accutouch|adobe|amd|apple|contrary|fall|famous|father|google|home|hungary|imax|indium|jan|jesus|mac|may|mcconnell|microsoft|president|washington|wikipedium|window} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0076\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=acknowledge|adopt|appoint|apprentice|award|baptize|base|bear|bind|bite|border|bring|build|call|captivate|classify|comprise|conceive|consider|create|dedicate|destine|develop|discover|draw|dub|educate|elect|encourage|enrol|establish|expose|fascinate|form|found|give|grow|headquarter|hold|idolise|include|incorporate|influence|inspire|interest|introduce|involve|kidnap|know|locate|make|marry|name|note|organize|orphan|own|pack|position|raise|rank|reach|rear|recognize|regard|remember|renown|say|sell|send|set|settle|situate|surround|take|teach|train} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0076\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VBZ:regex=act|appear|apply|arrive|be|begin|believe|bring|come|compete|continue|cover|define|describe|do|emerge|enjoy|enter|exist|face|follow|function|give|have|identify|implement|introduce|know|lead|leaf|make|occur|offer|operate|play|present|provide|qualify|receive|recognize|refer|regards|remains|replace|represent|reveal|see|serve|sit|speak|stand|start|succeed|support|take|tout|use|walk|win|work} >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}\t0.0076\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{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}\t0.0076\nbe {rel} by\t{rel:postag=VBN:regex=appoint|elect} >dobj> {arg1} >prep_of> {arg2}\t0.0075\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=actor|age|application|area|article|author|book|browser|campus|character|child|city|client|code|college|community|company|conference|coronado|corporation|country|court|day|dialect|distribution|document|editor|estate|event|executive|facility|file|firm|format|group|hotel|hotspot|inscription|language|leader|library|manuscript|meet|office|official|organization|page|painter|place|practitioner|product|program|project|school|script|scroll|server|service|singer|site|software|son|species|standard|suburb|summit|system|team|term|tournament|town|translation|university|variety|war|year} >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}\t0.0075\n{rel} in\t{arg1} <nsubj< {slot0:postag=VBD:regex=answer|appear|ask|baptize|be|bless|breathe|bring|call|carry|cast|cause|choose|come|command|create|curse|deliver|descend|desire|destroy|die|do|drive|exist|form|fulfil|get|give|go|hate|have|heal|help|know|lay|leave|look|love|make|move|pray|promise|put|raise|repent|rest|reveal|see|send|show|speak|stop|take|teach|tell|use|walk|want|weep|write} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0075\nbe {rel} {prep}\t{arg1} <appos< {slot0: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|college|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|day|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|description|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|event|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|number|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|year|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0074\nbe {rel} in\t{arg1} >partmod> {rel:postag=VBN} >tmod> {arg2}\t0.0073\nbe {rel} {prep}\t{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} <appos< {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0072\n{rel} in\t{arg1} <nsubj< {rel:postag=VB:regex=begin|follow|live|meet|play|start|stay} >prep_at> {arg2}\t0.0072\nbe {rel} {prep}\t{arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0071\n{rel}\t{arg1} <amod< {rel:postag=NN:regex=attack|post} >prep_on> {arg2}\t0.0071\n{rel} to\t{arg1} <prep_in< {rel:postag=VBD:regex=come|fall|go|lose|say} >nsubj> {arg2}\t0.0071\n{rel}\t{arg1} <nsubj< {slot0:postag=VBG:regex=aim|allow|ask|attempt|battle|beat|bet|bid|continue|do|expect|fight|gear|go|hope|leave|look|make|negotiate|offer|plan|play|prepare|press|push|seek|struggle|take|threaten|try|turn|use|want|work} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0071\nbe {rel} in\t{arg1} <prep_of< {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|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|mile|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} <prep_in< {rel:postag=VBN:regex=base|bear|hold|locate|publish|situate|write}\t0.0070\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=admit|attract|be|believe|boast|bring|celebrate|claim|come|comprise|consist|contain|contend|continue|create|deliver|develop|distribute|draw|employ|encompass|enjoy|feature|find|focus|give|have|hold|host|include|indicate|know|lie|life|maintain|make|manufacture|means|occupy|offer|operate|produce|promote|provide|rank|reside|say|sell|serve|sit|speak|specialize|stand|star|state|tell|use|work|write} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0070\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VB:regex=abuse|act|address|appoint|assume|be|bring|come|continue|do|exist|feel|function|gain|go|have|hold|make|participate|play|prevail|qualify|reign|remain|replace|represent|resign|retire|return|seek|serve|sit|stand|start|step|succeed|take|veto|vote|win} >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}\t0.0069\nbe {rel} of\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=airline|area|borough|brand|capital|city|currency|district|division|government|home|island|language|mission|mother|neighborhood|part|people|product|program|project|province|region|religion|son|state|subsidiary|suburb|trademark|unit} >poss> {arg2:postag=NNP}\t0.0069\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|ask|attend|be|begin|break|bring|buy|call|carry|change|come|continue|describe|die|do|drop|encounter|end|express|fail|feel|find|frown|get|give|go|grin|grow|have|head|institute|keep|know|laugh|leave|live|locate|lose|make|mean|meet|nod|open|pay|play|promise|put|receive|remain|say|see|seek|seem|send|serve|set|show|sing|sit|smile|speak|spend|start|stay|study|stumble|survive|take|teach|tell|travel|understand|use|visit|want|watch|work|write} >advcl> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0068\n{rel}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|appoint|ask|bear|build|call|cast|choose|clear|confirm|consider|create|destine|determine|elect|empower|encourage|equip|establish|expect|favor|favour|force|hire|honor|inspire|invite|know|line|list|mean|name|need|nominate|obligate|oblige|offer|pay|permit|persuade|pick|please|poise|predict|prepare|prime|project|prove|require|say|schedule|select|send|set|show|sign|slate|suppose|tempt|think|threaten|tip|urge|use|warn} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0068\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=come|flee|go|look|move|return|say|spread|travel|turn} >prep_from> {arg2}\t0.0068\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|allow|answer|appear|ask|attempt|be|begin|choose|come|command|continue|decide|designate|desire|encourage|expect|fail|get|go|happen|have|hope|intend|invite|leaf|manage|meet|need|plan|prepare|promise|refuse|require|seem|set|start|stop|support|take|tell|try|turn|urge|use|vote|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0067\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VB:regex=accept|appoint|attack|beat|bless|bomb|buy|call|cause|close|come|convert|create|damn|deny|elect|get|go|have|help|hold|introduce|join|launch|leave|make|meet|play|read|recognize|release|require|run|save|support|take|tell|update|use|win} >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}\t0.0067\nbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\nbe {rel} {prep}\t{arg1} <prep_of< {slot0:postag=NN:regex=archipelago|area|body|book|borough|brother|church|city|claim|coast|community|country|county|dependency|evidence|figure|gospel|government|graduate|history|idea|island|land|life|logo|majority|mark|mean|member|message|music|myth|nation|neighborhood|north|part|person|port|portion|position|president|province|region|remainder|republic|rest|result|resurrection|scripture|site|son|state|story|territory|theme|town|unit|version|view|village|whole} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0066\nbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\nbe {rel} {prep}\t{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|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|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|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|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|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|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|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< {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}\t0.0065\nbe {rel} in\t{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}\t0.0065\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\n{rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=announce|close|convene|hold|launch|locate|open|post|start} >prep_on> {arg2}\t0.0062\nbe {rel} of\t{arg1} <appos< {rel:postag=NNP} >poss> {arg2}\t0.0062\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|find|give|hold|locate|situate} >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}\t0.0061\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0061\nbe {rel} in\t{arg1} >nsubj> {rel:postag=NN:regex=airport|book|city|country|currency|ingredient|island|language|peak|religion|river|state|town} >prep_of> {arg2}\t0.0061\nbe {rel} {prep}\t{rel:postag=VBD:regex=hold|locate|publish} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0060\nbe {rel} {prep}\t{arg1} <prep_of< {rel:postag=NN} <nsubj< {slot0:postag=NN:regex=birthplace|book|capital|center|centre|city|corner|daughter|father|gift|heart|island|language|member|part|people|person|president|pride|province|revelation|son|state|story|trademark|unit|word} >{prep:regex=prep_(.*)}> {arg2}\t0.0060\nbe {rel} {prep}\t{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}\t0.0060\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0060\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=adopt|agree|announce|appoint|ask|attend|be|belong|bring|call|come|comment|declare|deliver|die|elect|end|enjoy|enter|experience|find|follow|give|go|grow|have|hold|join|lead|make|meet|note|offer|open|participate|pay|plan|present|provide|purge|receive|reconcile|refuse|represent|return|rise|say|serve|sit|speak|start|suffer|take|talk|tell|translate|try|use|visit|vote|welcome|work|write} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0060\nbe {rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=announce|establish|form|hold|locate|pass|publish|release} >prep_on> {arg2}\t0.0058\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0057\n{rel} in\t{arg1} <nsubj< {slot0:postag=VBZ:regex=add|allow|appoint|be|bear|believe|call|care|cause|change|chasten|choose|come|comfort|command|commendeth|create|declare|demonstrate|desire|discipline|do|dwell|exist|forgive|give|grant|hate|have|help|hold|inhabit|know|laugh|lead|life|look|love|make|offer|own|prefer|provide|put|raise|resist|search|see|seek|send|set|sit|sleep|speak|take|tempt|use|visit|want|will|work} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0057\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VB:regex=annex|appoint|ask|assign|assist|authorize|be|become|bring|call|celebrate|constitute|contact|contain|convert|designate|do|establish|form|give|have|honor|inform|invite|keep|last|make|mean|name|nominate|notify|offer|overcome|pose|present|provide|recall|receive|remain|remove|represent|request|retain|reveal|see|select|serve|stay|take|teach|use} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0057\n{rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=aide|application|branch|browser|child|citizen|committee|course|database|developer|enthusiast|expatriate|family|girl|guerrilla|holiday|immigrant|keep|machine|man|member|militant|national|officer|panel|people|plane|population|program|resolution|script|server|session|system|tribe|version|what|woman|writer} >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}\t0.0057\n{rel}\t{arg1} <prep_of< {arg2} <dobj< {rel:postag=VBN:regex=appoint|elect}\t0.0057\n{rel} in\t{arg1:postag=NNP} <prep_of< {rel:postag=NN:regex=collapse|meet|open} >nn> {arg2:postag=NNP}\t0.0056\n{rel} to\t{rel:postag=VBD:regex=come|go|move|post|recommend|report|return|say|write} >nsubj> {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0056\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|headquarter|hold|locate|situate} >prep_near> {arg2}\t0.0056\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >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}\t0.0056\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VBD:regex=act|appoint|assume|be|begin|create|deliver|do|elect|finish|get|give|have|hold|inaugurate|install|introduce|issue|make|pay|proclaim|resign|send|serve|sign|spend|stand|step|succeed|take|travel|use|win} >prep_as> {rel:postag=NNP:regex=chairman|director|governor|justice|lord|mayor|member|president|secretary|speaker} >prep_of> {arg2}\t0.0056\n{rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=administration|answer|army|astronaut|bank|book|briefly|brother|build|campaign|capsule|class|day|decanate|epidemic|event|family|father|force|franchise|girl|government|holiday|initiative|king|leader|meeting|member|minister|mission|monk|official|payment|people|period|pioneer|preparation|probe|program|project|rover|school|season|serviceman|session|soldier|son|spacecraft|student|team|thought|troops|truce|use|work|year} <nsubj< {rel:postag=VBD:regex=accept|appeal|arrive|begin|believe|belong|come|consist|convert|die|fall|fire|flee|focus|go|hold|land|lie|live|lose|make|meet|move|open|originate|present|read|report|return|rule|say|send|start|turn|vote} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0055\nbe {rel} in\t{rel:postag=VBN:regex=base|bear|hold|locate} >prep_at> {arg1} >appos> {arg2}\t0.0055\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=agree|announce|appoint|ask|battle|be|beat|believe|call|cease|choose|claim|come|consent|consider|continue|decide|declare|defeat|do|elect|get|give|go|grow|happen|have|leave|make|manage|need|nominate|prove|return|rise|set|start|step|stop|succeed|take|trash|turn|unqualify|use|want} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0055\n{rel}\t{arg1} <nsubj< {slot0:postag=VB:regex=act|agree|allow|attempt|be|beat|begin|choose|come|continue|dare|decide|defeat|deserve|do|expect|fail|find|get|go|have|help|hesitate|hope|intend|like|love|manage|move|need|not|open|permit|please|proceed|promise|return|seek|seem|struggle|sweep|take|threaten|try|use|vote|wait|want|win} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0055\n{rel} {prep}\t{rel:postag=VBN:regex=call|elect|hold|present} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0055\n{rel} {prep}\t{arg1} <agent< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0055\nbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|celebrate|crucify|deliver|find|give|hold|locate|play|situate} >prep_at> {arg2}\t0.0055\nbe {rel} in\t{arg1} <nsubj< {slot0:postag=CD:regex=one} >prep_of> {rel:postag=NN:regex=borough|city|country|county|festival|island|language|person|place|province|region|river|state|town} >prep_of> {arg2}\t0.0054\n{rel}\t{arg1} <nsubj< {slot0:postag=JJ:regex=able|afraid|available|certain|crazy|desperate|due|eager|easy|european|favorite|favourite|foolish|free|good|keen|likely|necessary|proud|ready|reluctant|right|smart|stupid|subject|sufficient|sure|unable|unlikely|unwill|will|wrong} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0054\nbe {rel} by\t{arg1} <prep_of< {rel:postag=NN:regex=cause|chair|govern|head|rule|sponsor|voice} >nsubj> {arg2}\t0.0054\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NNP:regex=beget|choose|christ|christian|god|jew|king|lord|messiah|president|savior|saviour|theotoko} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0054\nbe {rel} of\t{arg1} <prep_in< {slot0:postag=VBN:regex=ban|base|be|bear|build|call|celebrate|claim|consider|cultivate|displace|distribute|do|eat|employ|endemic|establish|evolve|feel|find|grow|headquarter|hold|know|live|locate|make|manufacture|marry|naturalize|observe|occur|play|practice|prize|produce|purchase|release|report|see|sell|serve|set|show|situate|speak|spend|take|teach|travel|use|work} >prep_in> {rel:postag=NN:regex=capital|centre|city|heart|language|member|part|province|region|state|suburb|word} >prep_of> {arg2}\t0.0054\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|locate|situate} >dobj> {slot0:postag=NN:regex=away|block|distance|drive|hour|kilometer|kilometre|km|m|meter|metre|mile|minute|step|walk|yard} >prep_from> {arg2}\t0.0053\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|appoint|believe|call|choose|consider|declare|destine|determine|elect|fit|groom|name|nominate|poise|prepare|project|qualify|reselect|say|select|set|slate|suppose|swear} >xcomp> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0052\n{rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0052\nbe {rel} in\t{arg1} <prep_from< {slot0:postag=NN:regex=block|distance|hour|kilometer|km|metre|mile|minute|yard} <dobj< {rel:postag=VBN:regex=locate|situate} >nsubjpass> {arg2}\t0.0052\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=ascend|belong|come|flee|give|go|listen|move|preach|present|promise|return|say|speak|travel|turn} >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}\t0.0052\n{rel} at\t{arg1} <nsubj< {rel:postag=VB:regex=arrive|follow|stay} >prep_in> {arg2}\t0.0052\nbe {rel} {prep}\t{rel:postag=VBN:regex=bear|cede|compare|defeat|establish|hold|locate|speak} <amod< {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0051\nbe {rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=JJ:regex=available|close|different|download|open|ready|similar} >{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}\t0.0051\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=admit|ascend|come|flee|go|move|return|spread|turn|whisper} >prep_into> {arg2}\t0.0051\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VBD:regex=accept|acknowledge|acquire|address|affirm|annex|anoint|appoint|choose|claim|confess|confirm|congratulate|consider|create|declare|define|deny|depict|describe|designate|do|elect|establish|exalt|follow|have|identify|inauguate|indwell|install|introduce|label|leave|name|nominate|picture|place|preach|precede|present|proclaim|produce|project|put|recognise|recognize|regard|reject|remove|replace|resurrect|revere|see|select|show|succeed|treat|unite|usher|view|welcome|worship} >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}\t0.0051\nbe {rel} {prep}\t{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}\t0.0051\n{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0051\nbe {rel} {prep}\t{arg1} >infmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0051\nbe {rel} in\t{arg1} <prep_to< {rel:postag=VBN:regex=bear|locate} >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}\t0.0050\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBD:regex=be|bring|come|consider|go|grow|have|immigrate|leave|live|make|move|raise|return|run|settle|spend} <conj_but< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0050\nbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBN}\t0.0050\n{rel} {prep}\t{arg1} <nsubj< {slot0: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|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|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|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|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|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} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0050\nbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|list|locate|make|release|situate|support} >prep_in> {arg2}\t0.0050\n{rel}\t{arg1} <dobj< {slot0:postag=VBD:regex=advise|ask|be|beat|beg|cause|defeat|drive|edge|expect|force|help|hold|inspire|invite|lead|lobby|nominate|order|persuade|pick|push|route|stun|sweep|take|tame|tell|urge|want} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0049\nbe {rel} in\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=city|district|holiday|island|language|majority|minority|neighborhood|newspaper|problem|province|region|restaurant|state} >poss> {arg2:postag=NNP}\t0.0049\nbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|build|found|locate|situate} >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}\t0.0049\nbe {rel} in\t{rel:postag=NNP:regex=city|island|state|town|university} >appos> {arg1} >appos> {arg2}\t0.0049\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} <ccomp< {slot0:postag=VBD:regex=answer|ask|be|believe|bless|call|claim|come|command|die|do|exchange|give|go|hate|have|hear|know|look|meet|nod|remember|reply|report|reprove|return|say|see|speak|state|suggest|take|teach|tell|think|understand|watch|write} >nsubj> {arg2}\t0.0049\nbe {rel} in\t{rel:postag=VBN:regex=base|bear|hold|locate|publish|situate|take} <partmod< {arg1} >appos> {arg2}\t0.0048\nbe {rel} {prep}\t{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} <nn< {arg1:postag=NNP} <prep_of< {slot0:postag=NN:regex=abide|account|birthplace|blessing|bone|case|child|cousin|daughter|day|death|descendant|dignity|doctrine|dynasty|evidence|faith|family|follower|friend|glory|grace|greatness|heart|home|honor|image|knowledge|legend|life|lifetime|love|monarchy|mystery|myth|name|nature|patron|person|power|praise|presence|purpose|reign|relationship|revelation|rule|sign|something|son|statue|story|support|tale|testimony|time|truth|view|vision|way|work|worship} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0048\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=present} >prep_at> {slot0:postag=NNP:regex=association|conference|meet|society} >prep_of> {arg2}\t0.0048\nbe {rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=establish|hold|locate|present} >prep_at> {arg2}\t0.0048\nbe {rel} {prep}\t{arg1} <poss< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0048\nbe {rel} by\t{arg1} <prep_of< {rel:postag=NN:regex=command|control|rule|write} <dobj< {slot0:postag=VBD:regex=assume|capture|gain|get|have|inspire|keep|lose|regain|retain|seize|take|win|wrest|wrestle} >nsubj> {arg2}\t0.0048\nbe {rel} of\t{arg1} <nsubj< {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|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|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|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_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}\t0.0048\nbe {rel} {prep}\t{arg1} <prep_of< {slot0:postag=NN:regex=absence|appearance|appointment|approval|area|basin|brother|call|city|coast|control|daughter|descendant|development|direction|director|discretion|duty|election|example|exception|father|forest|hill|history|incarnation|island|land|map|name|office|part|people|population|portion|post|presence|president|protection|province|provision|recommendation|region|request|resident|rights|rule|salary|seed|service|signature|son|staple|state|street|territory|tour|view|violation|water|whole|word} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0047\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBN:regex=acquire|announce|approve|attack|beat|call|deny|devastate|introduce|issue|join|launch|leave|lose|make|marry|pass|release|replace|take|tell|update|win} >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}\t0.0047\n{rel} of\t{arg1} <nsubj< {slot0:postag=VBD:regex=agree|allow|answer|appear|ask|be|believe|call|cast|claim|come|create|decide|declare|distance|do|express|extend|fail|get|give|have|know|lack|lead|lose|love|make|meet|mention|oppose|pass|plan|play|promise|put|run|see|send|share|speak|stand|start|support|take|talk|telephone|tell|try|turn|use|vote|want|win|work|write} <ccomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0046\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=answer|appoint|ask|avoid|be|begin|come|consider|continue|contribute|drop|end|establish|find|finish|get|go|grin|grow|have|keep|lay|lead|leave|make|move|mutter|nod|null|open|pause|remain|reply|run|shake|sigh|sit|smile|speak|spend|stand|start|stop|suggest|take|travel|turn|whisper|win|wind|work} >xcomp> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0046\n{rel}\t{arg1} <nsubj< {rel:postag=NN:regex=cause|chair|head|host|love} >prep_of> {arg2}\t0.0046\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=borough|city|country|language|place|state|town|village} >partmod> {slot0:postag=VBN:regex=base|distribute|locate|publish|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0045\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=acquire|agree|be|beat|begin|break|capture|celebrate|choose|commit|create|desire|do|establish|fail|feel|fight|find|get|give|go|have|inherit|intend|know|lose|make|mean|migrate|move|ordain|put|receive|record|say|see|set|shock|show|start|surprise|take|throw|trigger|use|violate|want|watch|wear|win} >advcl> {rel:postag=VBD} >dobj> {arg2}\t0.0045\n{rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=administration|application|brand|browser|build|card|celebration|code|day|family|format|group|infection|insurance|migration|name|plant|play|practice|process|program|registration|run|season|semester|series|session|system|temple|term|train|universe|version|weather|year} <nsubj< {rel:postag=VBZ:regex=arrive|begin|believe|belong|come|die|fall|go|lead|look|meet|move|occur|open|operate|progress|report|return|run|say|stand|start|turn|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0045\nbe {rel} of\t{arg1} >nsubj> {rel:postag=NN:regex=capital|city|country|currency|island|language|law|person|province|region|religion|sport|state} >prep_in> {arg2}\t0.0045\n{rel} in\t{arg1} <nsubj< {arg2} <ccomp< {rel:postag=VBP}\t0.0045\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD:regex=arrive|die|follow|land|look|meet|present|remain|say} >prep_in> {arg2}\t0.0044\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0044\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|hold|introduce|locate|make|post|present|sell|situate|write} >prep_to> {arg2}\t0.0044\n{rel}\t{rel:postag=VBD:regex=marry} >dobj> {arg1} >appos> {slot0:postag=NN:regex=brother|daughter|sister|son} >prep_of> {arg2}\t0.0044\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0043\nbe {rel} of\t{arg1} <appos< {rel:postag=NN} <dobj< {slot0:postag=VBD:regex=allow|appoint|bear|bring|call|choose|conceive|create|elect|get|give|have|inaugurate|leave|love|make|marry|name|offer|permit|produce|provide|sacrifice|send|show|take|welcome} >nsubj> {arg2}\t0.0043\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN} >appos> {arg2}\t0.0043\n{rel} to\t{arg1} <prep_at< {rel:postag=VBD:regex=look|lose|nod|say} >nsubj> {arg2}\t0.0043\nbe {rel} by\t{rel:postag=VBN:regex=appoint|elect} >xcomp> {arg1} >prep_of> {arg2}\t0.0043\nbe {rel} to\t{arg1} <prep_of< {slot0:postag=NN:regex=daughter|descendant|sister|son|widow} <appos< {arg2} <dobj< {rel:postag=VBD:regex=marry}\t0.0043\n{rel} in\t{arg1} <nsubj< {rel:postag=VB} >tmod> {arg2}\t0.0042\n{rel}\t{arg1} <nsubj< {slot0:postag=NN:regex=actor|bet|candidate|certainty|choice|club|coach|contender|country|explorer|favorite|favourite|fool|franchise|golfer|hope|horse|lock|man|member|nation|official|person|pick|plan|player|shoot|sophomore|squad|state|team|underclassman|underdog|way|woman} >infmod> {rel:postag=VB} >dobj> {arg2}\t0.0042\nbe {rel} {prep}\t{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}\t0.0042\nbe {rel} {prep}\t{arg1} >amod> {rel:postag=JJ:regex=available|different|free|full|headquarter|hold|native|own|present|president|rich|similar|subject} >{prep:regex=prep_(.*)}> {arg2}\t0.0042\nbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN:regex=purchase} >prep_through> {slot0:postag=NN:regex=server} >amod> {arg2}\t0.0042\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NNP} >poss> {arg2}\t0.0042\nbe {rel} {prep}\t{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}\t0.0042\n{rel}\t{arg1} <agent< {rel:postag=VBN} <partmod< {slot0:postag=NN:regex=angel|book|company|court|creature|declaration|disease|drug|game|head|human|institution|kernel|language|law|man|member|messenger|messiah|movement|nation|novel|organization|percent|person|play|position|protocol|service|son|system|technology|territory|tragedy|woman} >nsubj> {arg2}\t0.0041\nbe {rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=NN:regex=author|capital|daughter|gift|home|image|incarnation|member|mother|name|part|son|trademark|way|wife} >{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}\t0.0041\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{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}\t0.0041\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=agency|apostle|bird|city|college|company|country|event|firm|gemstone|meet|part|religion|science|species|state|system|territory} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0041\nbe {rel} in\t{rel:postag=NN:regex=city|country|town} <appos< {arg1} >appos> {arg2}\t0.0041\nbe {rel} of\t{arg1:postag=NNP} <nsubj< {slot0:postag=VBD:regex=advise|announce|appoint|ask|assure|brief|elect|encourage|identify|inform|introduce|invite|join|provide|recognize|remind|request|tell|thank|urge|welcome} >dobj> {rel:postag=NN:regex=chairman|governor|mayor|member|president|son} >nn> {arg2:postag=NNP}\t0.0041\nbe {rel} of\t{arg1} >appos> {rel:postag=NN:regex=book|capital|city|country|county|island|language|leader|member|person|president|province|region|state} >prep_in> {arg2}\t0.0040\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=account|author|body|capital|celebration|center|centre|city|commemoration|community|daughter|descendant|editor|example|expression|family|home|husband|incarnation|kind|list|manifestation|member|name|officer|part|president|record|revelation|savior|seat|site|son|story|symbol|tale|title|translation|unit|wife} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0040\nbe {rel} in\t{rel:postag=VBN:regex=bear|locate} >prep_at> {slot0:postag=NNP:regex=street|university} >appos> {arg1} >appos> {arg2}\t0.0040\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=book|city|country|county|province|region|state|town|village} <prep_in< {slot0:postag=VBN:regex=arrive|base|be|bear|bury|concentrate|conduct|cultivate|establish|find|found|give|grow|hold|know|list|locate|make|operate|raise|record|register|set|situate|speak|spend|stage|use} >prep_in> {arg2}\t0.0040\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0040\n{rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VB:regex=add|appear|begin|come|connect|consist|continue|deliver|escape|fight|follow|furnish|go|leave|live|look|meet|move|pay|provide|publish|recommend|report|return|run|say|search|speak|stay|submit|switch|vote|withdraw|work|write} >{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}\t0.0040\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VBZ:regex=accept|acknowledge|claim|confess|confirm|consider|declare|define|deny|depict|describe|designate|endorse|establish|exalt|explore|favour|have|identify|include|know|list|mention|portray|preach|present|recognise|recognize|regards|reject|replace|represent|reveal|see|show|star|succeed|support|treat|view|welcome} >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}\t0.0039\n{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=attack|beat|bomb|choose|create|devastate|discover|get|have|hold|take|win|write} >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}\t0.0039\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBD:regex=answer|appear|ask|baptize|be|bear|begin|break|bring|call|carry|cast|come|command|commit|create|descend|die|do|exist|find|fulfil|get|give|go|hang|have|heal|know|lay|leave|love|make|move|pray|preach|purchase|repent|return|rise|save|see|send|set|show|speak|suffer|take|teach|tell|write} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0039\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=be|believe|boast|come|continue|dwell|enjoy|feature|have|hold|host|include|lie|offer|oversee|provide|represent|say|seem|serve|speak|stand} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0039\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|hold|locate|raise|situate} >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}\t0.0039\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VBP:regex=accept|acknowledge|affirm|await|celebrate|claim|confess|consider|declare|dedicate|deny|describe|elect|have|hold|identify|inaugurate|know|mention|need|prefer|proclaim|profess|recognise|recognize|regard|reject|replace|see|show|support|take|treat|use|view|want} >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}\t0.0038\nbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=affect|appoint|associate|authorize|bear|call|choose|come|commit|conflict|consider|create|crucify|define|designate|develop|elect|encourage|entitle|exclude|execute|expose|find|give|hold|include|inform|install|invite|involve|know|liberate|locate|maintain|make|name|oppose|please|preserve|regard|remove|require|rise|say|see|select|send|situate|speak|take|uncover|use} >nsubjpass> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0038\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=april|february|march|partner|president|realty} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0038\n{rel} {prep}\t{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}\t0.0038\nbe {rel} of\t{arg1} <nsubj< {rel:postag=VBD:regex=die|graduate|make} >prep_from> {arg2}\t0.0038\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=access|application|avus|beta|brochure|browser|client|clip|driver|form|guide|information|interface|kit|language|material|mechanism|narration|network|package|packet|player|price|program|reader|release|section|series|service|set|software|space|support|syntax|system|tour|track|update|utility|version|viewer} <nsubj< {rel:postag=JJ:regex=available|different|download|good|important|popular|similar|subject} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0038\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{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}\t0.0038\nbe {rel} {prep}\t{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}\t0.0038\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=allow|appear|be|boast|call|cease|claim|consider|continue|deserve|expect|give|happen|have|hope|join|make|means|need|plan|prepare|seem|take|turn|want} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0037\nbe {rel} by\t{arg1} <prep_to< {rel:postag=VBN:regex=accredit|appoint|make|support} >agent> {arg2}\t0.0037\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {arg2:postag=NNP} <{prep:regex=prep_(.*)}< {rel:postag=NN:regex=capital|center|city|home|member|name|part|sign|son|state|version}\t0.0037\n{rel} of\t{arg1} <nsubj< {slot0:postag=VB:regex=address|allow|attend|avenge|be|boycott|bring|call|choose|close|commit|condemn|consider|continue|cut|damn|decide|direct|do|end|feel|focus|forgive|get|give|go|have|help|hold|judge|keep|know|lead|leave|let|like|listen|make|meet|need|provide|push|put|raise|remain|save|see|send|sign|speak|stand|stay|take|talk|tell|travel|try|veto|visit|want|win} <ccomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0037\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} <rcmod< {arg2}\t0.0037\n{rel}\t{arg1} <conj< {slot0:postag=NNP:regex=boy|common|dust|hammer|january|may|na|nov|november|outkast|pharcyde|queen|rakim|rock|root|smooth|win} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.0037\n{rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=meet|open} <nsubjpass< {slot0:postag=VBN:regex=call|convene|hold} >prep_on> {arg2}\t0.0037\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|begin|cast|chance|dart|do|flash|flick|fulfil|gain|get|give|have|hold|host|keep|lead|make|risk|score|seize|set|shoot|slide|spare|start|steal|take|throw|turn|wrest} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0037\nbe {rel} on\t{arg1} <nsubjpass< {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|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}\t0.0037\n{rel}\t{arg1} <prep_with< {rel:postag=VBD:regex=join|leave|replace|win} >dobj> {arg2}\t0.0036\nbe {rel} of\t{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< {arg1} >appos> {arg2}\t0.0036\nbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=locate|situate} >dobj> {slot0:postag=NN:regex=away|block|kilometer|kilometre|km|m|meter|metre|mile|minute|moment|mt|step|stop|walk|yard} >prep_from> {arg2}\t0.0036\nbe {rel} of\t{arg1} <amod< {rel:postag=NN:regex=language|way} <prep_in< {slot0:postag=VBZ:regex=act|move|speak|work} >nsubj> {arg2}\t0.0036\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=actor|actress|archipelago|artist|astronaut|author|citizen|city|composer|country|distribution|event|fraternity|island|language|man|manufacturer|mathematician|one|organization|painter|person|pianist|poet|religion|singer|son|state|teacher|woman|writer} >rcmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0036\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=arrive|come|hold|meet|open|preach|present|say|spread|travel|write} >prep_to> {arg2}\t0.0036\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=begin|blow|break|cap|capture|cement|close|complete|confirm|continue|create|demonstrate|do|end|establish|gain|get|give|keep|make|open|prove|provide|provoke|put|respond|save|secure|set|shock|show|solve|start|strengthen|stun|surprise|take|think|unite|violate|win} >prepc_by> {rel:postag=VBG} >dobj> {arg2}\t0.0036\n{rel} in\t{arg1} <nsubj< {slot0:postag=VB:regex=allow|answer|baptize|bless|bring|call|cause|change|cleanse|come|contradict|create|deliver|destroy|die|do|eat|forgive|forsake|give|have|hear|hold|impute|judge|keep|know|leave|let|lie|like|live|look|make|open|pour|provide|punish|put|raise|remember|return|save|send|set|sign|sleep|supply|take|tempt|turn|use|walk|want|wipe} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0036\n{rel}\t{arg1} <amod< {rel:postag=NN:regex=attack|bomb|control|launch|support} >prep_of> {arg2}\t0.0036\nbe {rel} in\t{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}\t0.0035\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0035\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=city|country|county|island|province|region|state|town} <prep_in< {slot0:postag=NN:regex=area|attack|attraction|branch|city|cross|development|district|effort|group|hospital|hotel|house|institution|jurisdiction|law|lodge|municipality|people|period|project|region|river|site|star|store|town|village|year} >prep_in> {arg2}\t0.0035\n{rel} {prep}\t{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}\t0.0035\nbe {rel} by\t{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}\t0.0035\nbe {rel} by\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=account|affiliate|amendment|area|brand|care|chair|chairperson|character|concentration|degree|exam|format|kernel|language|meet|meeting|member|method|movie|network|position|program|project|protocol|religion|result|series|service|software|support|system|technology|universe} <nsubjpass< {rel:postag=VBN:regex=accredit|administer|appoint|award|back|build|cause|chair|cover|create|determine|develop|direct|elect|found|fund|inspire|insure|make|manufacture|measure|own|power|provide|replace|serve|sign|sponsor|support|write} >agent> {arg2:postag=NNP}\t0.0035\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VBG:regex=accept|acknowledge|admit|claim|commend|concern|confess|consider|declare|deny|depict|describe|elect|endorse|establish|have|identify|inaugurate|install|introduce|keep|leave|maintain|name|portray|preach|present|proclaim|project|recognise|recognize|regard|reject|replace|represent|run|see|select|show|support|take|treat|understand|use|view|welcome|worship} >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}\t0.0035\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NNP:regex=ahumada|airline|anaqua|apartment|bailey|baptist|caravaggio|communication|date|great|island|jr|lord|merian|merino|michener|palacio|pari|picasso|rothschild|suite|system|technology|teese} <nsubjpass< {rel:postag=VBN:regex=base|bear|fill|headquarter|hold|locate|marry|situate} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0035\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=city|country|island|province|state|town|village} <nsubjpass< {slot0:postag=VBN:regex=find|found|know|locate|rank|situate} >prep_in> {arg2}\t0.0035\nbe {rel} {prep}\t{rel:postag=NNP:regex=bear|city|locate|place} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0035\nbe {rel} {prep}\t{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}\t0.0035\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=arrive|begin|believe|come|die|do|grow|hold|live|locate|meet|open|originate|reveal|say|start|win|write} >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}\t0.0035\nbe {rel} in\t{rel:postag=NN:regex=city|town|village} >prep_of> {arg1} >conj> {arg2}\t0.0035\n{rel}\t{arg1} <amod< {rel:postag=NN:regex=support} >prep_for> {arg2}\t0.0034\nbe {rel} in\t{arg1} <dobj< {rel:postag=VBD:regex=announce|ban|celebrate|declare|establish|form|hold|pass|present|publish|release} >prep_on> {arg2}\t0.0034\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} >iobj> {arg2}\t0.0034\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0034\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=abbreviation|acronym|agent|ally|anagram|birthday|birthstone|body|candidate|capital|carrier|center|city|color|coordinator|currency|editor|festival|headquarters|home|hub|language|member|month|name|officer|partner|president|religion|seat|symbol|trademark|voice} >prep_for> {arg2}\t0.0034\nbe {rel} for\t{arg1:postag=NNP} <prep_of< {rel:postag=NN:regex=birthstone|choice|city|holiday|month} >nn> {arg2:postag=NNP}\t0.0034\nbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0034\nbe {rel} of\t{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}\t0.0034\n{rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NNP:regex=believe|come|go|grow|run|take} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0034\nbe {rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN} <dobj< {slot0:postag=VBD:regex=acquire|annex|baptise|bless|bring|call|capture|cede|choose|command|confirm|conquer|control|declare|deliver|dictate|enter|establish|finish|form|found|gain|get|give|have|include|inspire|invade|know|lead|leave|lose|love|marry|occupy|pose|receive|retain|see|seize|separate|speak|take|tell|use|want|write} >nsubj> {arg2}\t0.0034\nbe {rel} in\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >prep_of> {rel:postag=NN:regex=city|country|county|destination|island|language|neighborhood|park|player|province|region|river|sport|state|team|town} >poss> {arg2}\t0.0034\nbe {rel} by\t{arg1} <prep_of< {slot0:postag=NN:regex=activity|affair|book|business|chair|chairman|chairperson|city|copy|division|meet|meeting|member|officer|part|percent|position|program|sign|unit|version|word|writer} <nsubjpass< {rel:postag=VBN:regex=accredit|administer|appoint|chair|control|develop|elect|found|govern|inspire|manage|occupy|own|rule|surround|write} >agent> {arg2}\t0.0034\n{rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=apr|aug|behold|exo|exodus|feb|february|genesis|jan|john|jul|june|lord|mar|may|number|sabbath|sep} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0034\nbe {rel} in\t{arg1} <prep_to< {rel:postag=VBN:regex=bear} >tmod> {arg2}\t0.0033\nbe {rel} in\t{arg1:postag=NNP} <prep_including< {rel:postag=NN:regex=attraction|city|country|county|island|market|player|region|state|team|town} >nn> {arg2:postag=NNP}\t0.0033\n{rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=VB} <xcomp< {slot0:postag=VBD:regex=agree|be|choose|continue|decide|force|go|have|open|pause|pull|raise|refuse|send|shift|snap|spin|start|swing|swivel|take|tell|tilt|try|turn|twist|use|walk|want} >nsubj> {arg2}\t0.0033\nbe {rel} of\t{arg1} <prep_of< {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_in< {slot0:postag=NN:regex=airport|animal|area|city|community|company|cross|district|effort|headquarters|hotel|mountain|municipality|people|project|province|region|river|time|town|village} >prep_in> {arg2}\t0.0033\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0033\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN} <rcmod< {arg2}\t0.0033\n{rel} to\t{arg1:postag=NNP} <nn< {arg2:postag=NNP} <nsubj< {rel:postag=VBD:regex=come|say}\t0.0033\n{rel} of\t{arg1} <prep_to< {rel:postag=VBD:regex=say|speak} >nsubj> {arg2}\t0.0033\nbe {rel} in\t{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}\t0.0033\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VB:regex=act|appear|assume|be|continue|deliver|do|end|function|give|go|have|hold|join|make|preside|resign|serve|show|sit|speak|spearhead|step|succeed|take|use|walk} >prep_as> {rel:postag=NNP:regex=chair|chairman|chairperson|executive|member|officer|president|speaker} >prep_of> {arg2}\t0.0033\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|appoint|be|begin|challenge|come|convince|decide|do|exalt|explain|find|have|help|indicate|know|promise|raise|recruit|say|see|state|suspend|teach|tell|tilt|turn|write} >ccomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0032\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VBN:regex=accept|adopt|announce|assume|be|bear|bring|carry|champion|choose|come|commit|develop|do|earn|establish|exist|file|have|hear|inaugurate|join|know|leave|make|participate|play|plunge|present|regard|resign|see|serve|set|show|sign|start|step|swear|take|use|welcome|win} >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}\t0.0032\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=arm|brother|child|contemporary|daughter|descendant|division|graduate|grandson|part|sister|son|subsidiary|suburb} >ccomp> {rel:postag=VBN:regex=bear|headquarter|locate} >prep_in> {arg2}\t0.0032\nbe {rel} in\t{arg1} >partmod> {rel:postag=VBN:regex=bear|hold|list|locate|publish|release|take} >prep_on> {arg2}\t0.0032\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{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}\t0.0032\n{rel}\t{arg1} <prep_of< {arg2} <xcomp< {rel:postag=VBN:regex=appoint|elect}\t0.0032\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NN:regex=brother|child|choice|city|counsel|country|cousin|daughter|day|father|friend|husband|illness|inst|issue|judge|man|mediator|messiah|note|officer|one|partner|president|priest|redeemer|rider|someone|son|speaker|start|study|time|tree|truth|wife} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0032\nbe {rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN:regex=capital|city|colony|festival|form|island|land|part|sign|spirit} >amod> {arg2}\t0.0032\nbe {rel} {prep}\t{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}\t0.0031\n{rel}\t{arg1} <prep_after< {rel:postag=VBD:regex=attack|beat|become|betray|bomb|build|choose|create|endorse|enter|invade|join|kill|launch|leave|occupy|pass|take|tell|win} >dobj> {arg2}\t0.0031\nbe {rel} to\t{rel:postag=VBD:regex=marry} >dobj> {arg1} >appos> {slot0:postag=NN:regex=daughter|son|widow} >prep_of> {arg2}\t0.0031\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBD:regex=answer|ask|be|believe|bless|bury|charge|come|command|create|die|do|give|hate|have|hear|know|lead|leave|look|love|meet|nod|realize|remember|reply|report|say|see|show|speak|state|suggest|tell|think|understand|watch|win|write} >ccomp> {rel:postag=VBD} >nsubj> {arg2}\t0.0031\nbe {rel} {prep}\t{arg1} <dobj< {slot0:postag=VB:regex=access|apply|appoint|ask|assist|bless|call|comprise|contact|contradict|cross|defend|elect|email|explore|glorify|have|include|interpret|join|know|learn|mainland|meet|mention|observe|occupy|place|provide|reach|respect|see|serve|speak|study|support|take|thank|tour|understand|uphold|visit|welcome} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0031\nbe {rel} in\t{arg1:postag=NNP} <prep_such_as< {rel:postag=NN:regex=attraction|city|country|island|park|player|state|team|town} >nn> {arg2:postag=NNP}\t0.0031\n{rel}\t{arg1} <prep_in< {slot0:postag=VBZ:regex=be} <rcmod< {arg2} <prep_of< {rel:postag=NN:regex=love}\t0.0031\nbe {rel} in\t{arg1:postag=NNP} >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}\t0.0031\n{rel} in\t{arg1} <appos< {arg2} <nsubj< {rel:postag=VBD}\t0.0031\nbe {rel} of\t{rel:postag=NN:regex=brother|city|daughter|father|language|man|part|president|son} <appos< {arg1} <dobj< {slot0:postag=VBD:regex=bring|choose|die|elect|give|have|include|make|marry|occupy|offer|send|speak|take} >nsubj> {arg2}\t0.0030\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=attend|be|begin|close|do|earn|finish|fly|give|go|graduate|grow|have|hold|live|look|make|meet|nod|play|receive|reside|return|run|say|serve|smile|speak|spend|stare|stay|stop|study|take|teach|tell|visit|wait|work} >prepc_before> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\n{rel} as\t{rel:postag=NN:regex=star} <nn< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0030\nbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} <advcl< {slot0:postag=VBD:regex=answer|ask|be|chuckle|come|confirm|continue|create|die|do|feel|get|give|go|grin|have|know|laugh|leave|look|lose|obey|pray|return|ride|say|see|shake|smile|stand|start|stop|take|use|wait|watch|wince} >nsubj> {arg2}\t0.0030\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=JJ:regex=able|afraid|careful|due|eager|first|free|happy|keen|liable|likely|open|ready|reluctant|responsible|right|sure|unable|unlikely|will|wrong} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\n{rel} at\t{arg1} <nsubj< {slot0:postag=VBD:regex=appear|approach|bear|close|come|continue|enter|explain|feel|finish|get|give|go|grab|hold|join|lay|leave|lower|make|move|nod|point|pull|put|raise|rest|return|roll|say|see|shrug|smile|speak|start|step|take|try|tug|turn|walk|want} <advcl< {rel:postag=VBD} >nsubj> {arg2}\t0.0030\nbe {rel} {prep}\t{arg1} <dobj< {slot0:postag=VBP:regex=elect|have|include} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\n{rel}\t{arg1} <nsubj< {rel:postag=VB} >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}\t0.0030\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0030\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VB:regex=afford|agree|allow|appoint|attempt|be|begin|choose|come|continue|cut|decide|designate|direct|do|expect|fail|force|get|go|have|leave|like|make|need|prefer|set|take|tell|try|use|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\nbe {rel} of\t{arg1} <prep_in< {slot0:postag=NN:regex=faith} <prep_through< {rel:postag=NN:regex=child|gift|son} >prep_of> {arg2}\t0.0030\nbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|close|hold|locate} >prep_on> {arg2}\t0.0030\nbe {rel} by\t{arg1} <dobj< {rel:postag=VB} <xcomp< {slot0:postag=VBD:regex=agree|allow|appoint|be|begin|choose|come|continue|decide|force|go|have|inspire|intend|love|manage|proceed|promise|refuse|score|seek|take|try|use|visit|vote|want} >nsubj> {arg2}\t0.0030\n{rel} {prep}\t{arg1} <appos< {slot0:postag=NN:regex=a|brother|daughter|day|farm|father|founder|friend|grandfather|house|husband|intend|leader|member|minister|minute|mother|parent|percent|president|son|tale|time|wife|year} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\nbe {rel} of\t{arg1} <prep_of< {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|book|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_in< {slot0:postag=VBN:regex=base|bear|celebrate|concentrate|confine|cultivate|find|grow|hold|locate|make|place|raise|record|register|set|settle|situate|speak|use} >prep_in> {arg2}\t0.0030\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=acknowledge|admit|announce|answer|assert|be|begin|believe|claim|confirm|declare|die|discover|give|have|hear|join|know|live|make|mention|proclaim|prove|realize|receive|reply|report|reveal|say|state|teach|tell|testify} >ccomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\n{rel} {prep}\t{arg1} <amod< {slot0:postag=NN:regex=application|artist|being|child|citizen|country|family|friend|girl|kid|man|member|monkey|musician|people|person|population|script|server|soldier|student|troops|woman|worker|writer|youth} >partmod> {rel:postag=VBG:regex=begin|come|die|go|live|move|run|travel|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\nbe {rel} {prep}\t{arg1} <advmod< {slot0:postag=VBD:regex=arise|be|begin|bless|build|call|come|command|die|give|go|have|hear|honour|live|locate|make|put|reign|return|say|see|send|spend|state|take|turn|use|write} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0030\nbe {rel} by\t{arg1} <nsubjpass< {rel:postag=VBN:regex=host|locate|represent} >prep_on> {arg2}\t0.0029\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|anoint|approach|ask|be|begin|call|clash|come|continue|deliver|die|disappear|draw|engage|enter|follow|give|go|grab|have|hold|join|lay|leave|make|move|push|put|return|run|say|see|send|set|sin|sit|stand|step|take|tell|turn|walk} <advcl< {rel:postag=VBD} >nsubj> {arg2}\t0.0029\nbe {rel} of\t{arg1} <nsubj< {slot0:postag=VBZ:regex=act|address|arrive|be|begin|enter|greet|have|make|move|reflect|replace|serve|shake|stand|succeed|take|win} >prep_as> {rel:postag=NNP:regex=chair|chairman|chairperson|member|officer|president|speaker} >prep_of> {arg2}\t0.0029\n{rel}\t{arg1} <nsubj< {rel:postag=VB} >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}\t0.0029\n{rel} in\t{arg1} <nsubj< {rel:postag=VBP} >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}\t0.0029\nbe {rel} of\t{arg1} <prep_as< {slot0:postag=VBN:regex=announce|appoint|elect|know|make|name|resign|retire|serve|strengthen|swear|work} >prep_as> {rel:postag=NN:regex=chairman|city|director|member|officer|part|president|son} >prep_of> {arg2}\t0.0029\n{rel} in\t{arg1:postag=NNP} <nsubj< {slot0:postag=VBD:regex=accept|adopt|agree|announce|appoint|approve|authorize|confirm|consider|continue|decide|discuss|elect|endorse|establish|give|have|hear|make|pass|present|receive|recognize|recommend|request|take|vote|welcome} >prep_at> {rel:postag=NN:regex=meet} >nn> {arg2:postag=NNP}\t0.0029\nbe {rel} in\t{arg1} <appos< {arg2} <prep_of< {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|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_in< {rel:postag=VBN:regex=bear|locate|situate}\t0.0029\nbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|build|comprise|hold|locate|publish|situate|write} <partmod< {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0029\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|be|begin|break|claim|come|consider|continue|end|finish|go|have|keep|make|move|play|pull|run|shock|sign|spend|start|stop|sweep|take|win|wind} >xcomp> {rel:postag=VBG} >dobj> {arg2}\t0.0029\nbe {rel} by\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=character|engine|film|format|kernel|language|meet|member|mine|movie|network|platform|program|project|protocol|result|series|site|standard|station|system|technology|television|universe} >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}\t0.0028\n{rel} {prep}\t{rel:postag=VBN:regex=call|elect} >xcomp> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0028\nbe {rel} of\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=base|bear|hold|locate|nestle|produce|set|situate} >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}\t0.0028\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=airline|capital|city|country|county|currency|island|language|province|region|son|state|view} >partmod> {slot0:postag=VBN:regex=base|conceive|locate|situate|speak|take|use} >prep_in> {arg2}\t0.0028\n{rel}\t{arg1} <nsubjpass< {rel:postag=VBN:regex=marry} >prep_to> {arg2}\t0.0028\n{rel}\t{arg1} <nsubj< {slot0:postag=VBN:regex=agree|allow|apply|beat|begin|choose|come|continue|decide|defeat|do|expand|fail|go|have|intend|leave|make|manage|offer|plan|pledge|promise|refuse|set|sign|sweep|threaten|try|use|vote|want} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0028\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|appear|ask|be|begin|believe|decide|die|do|dwell|give|graduate|grow|have|hear|know|leave|live|love|mean|meet|note|realize|reply|report|retire|say|show|sit|start|state|teach|tell|want|write} >ccomp> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0028\nbe {rel} {prep}\t{rel:postag=NN:regex=belief|body|city|country|father|head|holiday|law|member|officer|president|representative|river|son|town} <appos< {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0028\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0028\n{rel} {prep}\t{rel:postag=VBZ:regex=begin|come|consist|continue|end|offer|open|operate|run|say|star|start|work|write} >nsubj> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0028\n{rel}\t{arg1} <poss< {slot0:postag=NN:regex=ability|ambition|application|aspiration|attempt|bid|campaign|chance|command|commandment|commitment|decision|desire|drive|effort|failure|favoritism|hope|inability|move|negotiation|plan|promise|push|quest|threat|vote|willingness} >infmod> {rel:postag=VB} >dobj> {arg2}\t0.0028\nbe {rel} of\t{arg1} <dobj< {slot0:postag=VB:regex=accept|afford|choose|confirm|congratulate|declare|elect|endorse|escort|follow|have|impeach|inaugurate|recognize|remove|replace|see|succeed|support|welcome} >prep_as> {rel:postag=NNP:regex=chairman|president|speaker} >prep_of> {arg2}\t0.0028\n{rel}\t{arg1} <nsubj< {rel:postag=VB:regex=amend|appoint|attack|bless|choose|control|follow|forgive|have|inspire|make|play|protect|recognize|release|represent|require|restore|save|see|send|speak|support|take|win} >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}\t0.0028\nbe {rel} from\t{rel:postag=NN:regex=band|congressman|duo|rapper|release|senator} <nn< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0028\nbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0028\nbe {rel} in\t{arg1} >partmod> {rel:postag=VBN:regex=base|bear|hold|locate|take} >prep_at> {arg2}\t0.0027\n{rel} on\t{arg1:postag=NNP} <dobj< {rel:postag=VBG:regex=run} <partmod< {slot0:postag=NN:regex=box|client|computer|desktop|hardware|host|laptop|machine|mini|minus|pc|platform|processor|server|system|user|workstation} >nn> {arg2:postag=NNP}\t0.0027\n{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|be|come|command|declare|do|explain|help|issue|know|lay|mark|promise|say|show|state|teach|tell|think|want} >ccomp> {rel:postag=VB} >dobj> {arg2}\t0.0027\nbe {rel} in\t{rel:postag=VBN:regex=locate} >prep_at> {slot0:postag=NNP:regex=avenue|blvd|street} >prep_in> {arg1} >appos> {arg2}\t0.0027\nbe {rel} of\t{arg1:postag=NNP} <nsubj< {slot0:postag=VBD:regex=address|agree|announce|appear|attend|be|call|come|comment|defend|die|discuss|get|give|have|hold|lead|make|meet|participate|pass|present|provide|receive|say|send|sign|speak|state|take|tell|welcome|win} >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}\t0.0027\nbe {rel} {prep}\t{arg1} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0027\nbe {rel} by\t{arg1:postag=NNP} <nsubjpass< {rel:postag=VBN:regex=analyze|appoint|cause|determine|develop|dominate|elect|execute|found|fund|issue|kidnap|kill|make|manufacture|own|perform|power|provide|rule|serve|support} >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}\t0.0027\n{rel} to\t{rel:postag=VBD:regex=go|say|write} >prep_in> {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0027\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=city|country|island|state|town} >amod> {arg2}\t0.0027\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|hold|locate} >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}\t0.0027\n{rel} {prep}\t{arg1} <prep_of< {slot0:postag=NN:regex=bearer|bffice|committee|member|membership|office|officer|quorum|remainder} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0027\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0027\nbe {rel} for\t{arg1:postag=NNP} <nsubj< {rel:postag=NN:regex=birthstone|choice|client|columnist|correspondent|extension|framework|game|holiday|hub|month|plug-in|plugin|reporter|resource} >nn> {arg2:postag=NNP}\t0.0027\nbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0027\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0027\n{rel}\t{arg1} <nsubj< {rel:postag=VBN:regex=announce|approve|bless|choose|control|devastate|enter|inspire|interpret|invade|join|launch|marry|occupy|pass|reject|release|replace|see|suspend|take|update|win} >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}\t0.0027\n{rel}\t{arg1} <poss< {rel:postag=NN:regex=bomb|call|control|cross|defeat|host|launch|love|pardon|pick|promise|release|shoot|sign|support|veto|win} >prep_of> {arg2}\t0.0027\nbe {rel} of\t{arg1} <prep_in< {slot0:postag=NNP:regex=and|beij|faith|feb|question} >appos> {rel:postag=NN:regex=capital|city|home|member|part|son|suburb} >prep_of> {arg2}\t0.0027\nbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NNP}\t0.0027\nbe {rel} {prep}\t{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|crowd|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|itune|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|matter|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|time|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} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0027\nbe {rel} of\t{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} <nn< {arg1:postag=NNP} <nsubj< {slot0:postag=VBD:regex=allow|appear|arrive|be|begin|build|buy|come|conquer|die|give|go|have|join|lead|live|make|marry|move|purchase|put|reign|return|reveal|rise|rule|say|serve|share|take|thresh|visit|walk|win} >nsubj> {arg2:postag=NNP}\t0.0027\nbe {rel} {prep}\t{arg1} <agent< {slot0:postag=VBN:regex=appoint|border|bound|call|choose|designate|inspire|lead|move|nominate|notify|occupy|remove|select} >nsubjpass> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0027\nbe {rel} {prep}\t{arg1} <rcmod< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0027\nbe {rel} in\t{arg1:postag=NNP} <prep_like< {rel:postag=NN:regex=city|country|island|neighborhood|player|state|team|town} >nn> {arg2:postag=NNP}\t0.0026\nbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0026\nbe {rel} in\t{rel:postag=VBN:regex=assassinate|bear|give|hold|introduce|locate|publish|situate|write} >nsubjpass> {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0026\n{rel} to\t{arg1} <dobj< {slot0:postag=VB:regex=ask|catch|face|find|follow|help|join|know|meet|recognize|save|see|tell|visit|watch} <xcomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0026\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|hold|locate|publish|situate} >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}\t0.0026\nbe {rel} to\t{arg1:postag=NNP} <nn< {arg2:postag=NNP} <prep_of< {rel:postag=NN:regex=home}\t0.0026\n{rel} to\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0026\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBP:regex=buy|celebrate|control|convert|die|elect|have|hesitate|hit|hold|include|love|meet|offer|outnumber|require|run|speak|support|take|use|want|win} >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}\t0.0026\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|collect|conduct|hold|locate|situate|take} >prep_between> {arg2}\t0.0026\n{rel}\t{arg1} <poss< {rel:postag=NN:regex=love|support} >prep_for> {arg2}\t0.0026\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {slot0:postag=NNP:regex=apr|aug|bedfordshire|county|dec|february|george|jan|jul|jun|mar|nov|november|october|sep|september|street} >appos> {arg2}\t0.0026\n{rel} in\t{arg1} <nsubj< {arg2} <ccomp< {rel:postag=VB}\t0.0026\n{rel}\t{arg1} <prep_in< {rel:postag=VBD:regex=acquire|amend|attack|beat|become|buy|call|create|devastate|die|discover|found|have|invade|issue|join|leave|marry|pass|publish|release|tell|win} >dobj> {arg2}\t0.0026\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0026\nbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=anguillum|can|david|god|lord|nation|president|spain|un} >appos> {arg2}\t0.0026\n{rel}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBD:regex=beat|call|create|de|get|habe|invade|invent|join|kill|love|marry|release|see|send|summon|tell|win} >dobj> {slot0:postag=NNP:regex=adam|christian|cowboy|dium|elder|eve|feat|gen|germany|indiana|leopard|m|primary|satan|savior} >nn> {arg2:postag=NNP}\t0.0026\nbe {rel} of\t{arg1} <prep_from< {slot0:postag=NN:regex=catholic|demand|expat|flight|goods|group|hr|immigrant|immigration|influence|item|migrant|musician|official|participant|people|product|property|remark|representative|settler|ship|student|tourist|visitor|woman} >prep_from> {rel:postag=NN:regex=city|member|part|region} >prep_of> {arg2}\t0.0026\n{rel} of\t{arg1} <nsubj< {slot0:postag=VBZ:regex=be|believe|care|cause|consider|deserve|do|have|intend|know|look|love|make|need|pay|plan|require|see|seek|send|stand|support|take|understand|want} <ccomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0026\nbe {rel} {prep}\t{arg1} <agent< {slot0:postag=VBN:regex=appoint|assign|border|bound|chair|choose|designate|follow|found|give|inspire|lead|nominate|pose|select|speak|surround} <partmod< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0025\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0025\n{rel} {prep}\t{arg1} <dobj< {slot0:postag=VBD:regex=advise|ask|command|convince|defeat|direct|inspire|instruct|invite|leave|order|persuade|request|send|take|tell|urge|want} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0025\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=book|city|country|island|province|state|town} <nsubj< {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|book|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|capitol|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}\t0.0025\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=book|dish|gift|governor|graduate|language|messenger|part|prophet|religion|revelation|service|word} >prep_from> {arg2}\t0.0025\nbe {rel} {prep}\t{arg1} <prep_in< {rel:postag=VBN} >{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}\t0.0025\nbe {rel} in\t{rel:postag=VBN:regex=base|bear|hold|locate} <amod< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0025\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NNP:regex=airline|apostle|badge|baptist|christ|duo|game|garden|great|himself|janeiro|logo|nt|o|republic|server|site|solomon|window} <nsubj< {rel:postag=NN:regex=antidote|capital|city|country|forerunner|home|island|king|member|part|son|town|trademark} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0025\nbe {rel} of\t{arg1} <appos< {arg2} >appos> {rel:postag=NN}\t0.0025\nbe {rel} for\t{arg1} <prep_of< {rel:postag=NN:regex=choice|pick} >poss> {arg2}\t0.0025\n{rel} {prep}\t{arg1} >rcmod> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0025\n{rel} to\t{arg1} <nsubj< {rel:postag=VBG} <ccomp< {slot0:postag=VBD:regex=announce|get|hear|know|misunderstand|realize|reason|report|say|see|tell|think|understand} >nsubj> {arg2}\t0.0025\n{rel}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=call|cause|comprise|control|defeat|host|launch|murder|pick|purchase|release|rule|support|veto|win} >prep_of> {arg2:postag=NNP}\t0.0025\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=area|case|center|city|community|corner|country|county|edition|form|heart|issue|margin|parish|part|province|region|son|state|style|town|vicinity} <prep_in< {rel:postag=VBN:regex=bear|find|hold|locate|publish|situate|write} >prep_in> {arg2}\t0.0025\n{rel}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=amenity|brochure|clip|country|didn|effect|facility|fan|feature|file|link|member|name|t|user} <nsubj< {rel:postag=VBP:regex=buy|die|elect|get|have|include|invade|recognize|require|run|speak|use|win} >dobj> {arg2:postag=NNP}\t0.0025\n{rel} at\t{arg1} <prep_to< {rel:postag=VBD:regex=glance|look|stare} >nsubj> {arg2}\t0.0025\nbe {rel} of\t{arg1} <amod< {rel:postag=NN:regex=citizen|city|language|people|province|region|slave} >prep_in> {arg2}\t0.0025\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=abbreviation|acronym|agency|application|festival|footballer|island|language|man|one|package|person|plant|program|someone|something|virus} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0025\nbe {rel} by\t{arg1} <amod< {slot0:postag=NN:regex=be|being|body|couple|family|kind|life|mind|person|procedure|race|sexuality|soul|spirit} <dobj< {rel:postag=VBD:regex=approve|create} >nsubj> {arg2}\t0.0024\nbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|locate|sell|shoot} >prep_to> {slot0:postag=NN:regex=attraction|country|death|family|farmer|father|immigrant|member|merchant|mother|north|parent|slave|south|wife} >prep_in> {arg2}\t0.0024\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=character|city|country|county|island|province|region|state|town} <dobj< {slot0:postag=VBZ:regex=comprise|contain|cover|encompass|enter|gainclude|have|include|incorporate|represent|serve|support} >nsubj> {arg2}\t0.0024\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0024\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=art|artist|event|figure|girl|guy|harlot|lawyer|leader|man|member|minister|monk|movement|native|one|people|person|pharisee|practice|prophet|religion|science|son|state|teacher|woman|writer} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0024\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0024\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0024\nbe {rel} of\t{arg1:postag=NNP} <prep_including< {rel:postag=NN:regex=agency|body|city|flavor|governor|island|language|leader|member|president|product|region|suburb|variant|version} >nn> {arg2:postag=NNP}\t0.0024\n{rel}\t{arg1} <nsubj< {slot0:postag=VBP:regex=agree|allow|appear|be|choose|come|continue|decide|do|dont|enter|expect|fail|gather|go|have|hope|look|manage|need|prepare|seem|tend|try|want} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0024\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN} >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}\t0.0024\n{rel} for\t{arg1} <nsubj< {rel:postag=VBD:regex=leave|score|vote|win|work|write} >prep_in> {arg2}\t0.0024\nbe {rel} for\t{arg1} <nsubjpass< {rel:postag=VBN:regex=name} >prep_after> {arg2}\t0.0024\nbe {rel} {prep}\t{arg1} <prep_of< {slot0:postag=NN:regex=association|brother|city|consortium|dau|daughter|father|flag|granddaughter|grandson|group|heir|member|mother|organization|power|union} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0024\nbe {rel} {prep}\t{arg1} <nsubj< {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|brand|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|democracy|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|nation|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|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> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0024\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBG:regex=be|become|celebrate|do|found|have|lead|manage|nonvote|overstate|proclaim|remain|show|speak|teach|travel|vote} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0024\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD:regex=say} >prep_unto> {arg2}\t0.0024\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0024\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ:regex=call|control|have|lose|open|pass|play|say|speak|take|tell|win|write} >prep_in> {arg2}\t0.0023\nbe {rel} {prep}\t{arg1} <agent< {slot0:postag=VBN:regex=accompany|appoint|approve|attend|authorize|call|chair|commit|conduct|convene|countersign|give|guarantee|hold|host|introduce|lead|make|present|preside|propose|provide|receive|represent|review|sign|support|take|use|welcome} >agent> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0023\n{rel} in\t{arg1} <nsubj< {rel:postag=JJ:regex=open} >prep_until> {arg2}\t0.0023\n{rel}\t{arg1} <nsubj< {rel:postag=VB:regex=bless|hire|lose|love|open|speak|take|win} >prep_in> {arg2}\t0.0023\n{rel}\t{arg1} <poss< {rel:postag=NN:regex=love|win} >prep_in> {arg2}\t0.0023\nbe {rel} {prep}\t{rel:postag=NN:regex=city|form|member|part|son} >{prep:regex=prep_(.*)}> {arg1} >conj> {arg2}\t0.0023\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBG:regex=ask|choose|come|cut|go|have|hope|leave|look|make|plan|prepare|seek|start|threaten|try|urge|vow|want} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0023\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=announce|be|declare|end|enter|finish|get|know|mean|notice|realize|report|reveal|say|state|tell} >ccomp> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0023\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VB:regex=address|be|benefit|call|consider|do|have|hold|join|let|make|meet|nominate|offer|participate|provide|put|receive|serve|support|take|thank} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0023\n{rel} in\t{arg1} <dobj< {rel:postag=VBD:regex=begin|die|hold|meet|open|pass|start} >prep_on> {arg2}\t0.0023\nbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=author|capital|city|extension|fulfillment|go|home|implementation|island|king|language|member|mother|part|people|president|province|region|son|state|trademark|version} >{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}\t0.0023\n{rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=hold|locate|sign} >prep_at> {arg2}\t0.0023\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=base|city|island|state|town|village} <appos< {arg2}\t0.0023\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=borough|city|county|island|province|state|town} >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}\t0.0023\n{rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=activity|application|celebration|character|class|color|course|didn|display|elephant|festivity|member|migrant|officer|people|practice|program|programm|religion|universe|workshop} <nsubj< {rel:postag=VBP:regex=arrive|begin|believe|belong|come|consist|convert|go|live|meet|move|operate|report|run|say|start|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0023\n{rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBG:regex=come|die|fall|go|lead|live|look|lose|meet|move|play|refer|return|run|say|switch|work|write} >{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}\t0.0023\nbe {rel} on\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=animal|authority|choice|clip|confidentiality|connection|day|ease|email|feature|friend|history|hydrate|impression|manufacturer|mistake|number|plate|platform|software|time|update|user|value|video} <dobj< {rel:postag=VBN:regex=base} >nsubj> {arg2:postag=NNP}\t0.0023\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD} <parataxis< {arg2}\t0.0023\n{rel} of\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0023\nbe {rel} {prep}\t{arg1} <conj< {slot0:postag=NNP:regex=adobe|apple|jan|january|mac|macintosh|may|window} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0023\n{rel} to\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0022\nbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0022\n{rel}\t{arg1} >rcmod> {arg2} >cop> {rel:postag=VBD}\t0.0022\nbe {rel} {prep}\t{arg1:postag=NNP} <prep_in< {slot0:postag=NN:regex=accommodation|bed|business|car|client|clinic|community|company|country|estate|event|home|homeschooler|hotel|house|job|lawyer|location|market|network|office|price|property|sale|school|service|store|tour} >{prep:regex=prep_(.*)}> {rel:postag=NN:regex=area|city|country|island|park|region|state|town} >nn> {arg2:postag=NNP}\t0.0022\nbe {rel} {prep}\t{arg1:postag=NNP} <{prep:regex=prep_(.*)}< {rel:postag=VBN:regex=base|locate|publish|write} <partmod< {slot0:postag=NN:regex=application|article|attorney|branch|business|campus|company|corporation|facility|grammar|hotel|lawyer|office|report|research|resort|state|store|study|translation} >nn> {arg2:postag=NNP}\t0.0022\nbe {rel} {prep}\t{rel:postag=NN:regex=book|city|country|currency|day|head|island|language|law|member|mountain|museum|officer|peak|president|river|song|star|town} <nsubj< {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0022\n{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=die|hold|live|meet|present|say} >prep_at> {slot0:postag=NN:regex=age|brief|ceremony|conference|event|headquarters|home|hospital|house|meet|rally|side|speech|time} >prep_in> {arg2}\t0.0022\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0022\n{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0022\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=city|island|province|region|state|suburb|town} >poss> {arg2}\t0.0022\n{rel} to\t{arg1} <prep_in< {rel:postag=VBZ:regex=belong|say} >nsubj> {arg2}\t0.0022\nbe {rel} {prep}\t{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}\t0.0022\nbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|call|designate|elect|inaugurate|raise} >prep_as> {arg2}\t0.0022\nbe {rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=hold|locate|present} >prep_at> {slot0:postag=NNP:regex=mit|nation|newseum} >prep_in> {arg2}\t0.0022\nbe {rel} in\t{rel:postag=VBN:regex=bear|locate} >prep_near> {arg1} >appos> {arg2}\t0.0022\nbe {rel} of\t{arg1:postag=NNP} <prep_in< {rel:postag=NN:regex=birthplace|capital|capitol|center|centre|gift|glory|headquarters|home|incarnation|love|member|residence|revelation|son|suburb|supporter|word} >nn> {arg2:postag=NNP}\t0.0022\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBP:regex=announce|ask|be|celebrate|comprise|consider|constitute|contain|form|have|include|log|make|mean|represent|secure|thank|yield} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0022\nbe {rel} by\t{arg1} <prep_as< {rel:postag=VBD:regex=appoint|designate|elect|reject} >nsubj> {arg2}\t0.0022\n{rel}\t{arg1} <nsubj< {rel:postag=VBP:regex=contain|control|have|include|love|reject|require|speak|support|take|win} >dobj> {slot0:postag=NN:regex=amount|chamber|charge|choice|control|dialect|download|game|house|piece|state|use|version} >prep_of> {arg2}\t0.0022\nbe {rel} in\t{arg1} <nsubj< {rel:postag=VBN:regex=bear|hold|publish|release|take} >prep_on> {arg2}\t0.0022\nbe {rel} {prep}\t{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}\t0.0022\n{rel} at\t{arg1} <nsubj< {rel:postag=VBD:regex=gaze|look|smile|stare} >prep_into> {slot0:postag=NN:regex=eye|face|gaze} >poss> {arg2}\t0.0022\n{rel} in\t{arg1} <nsubj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0022\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBN:regex=agree|be|bind|choose|come|do|fall|give|go|hear|hide|leave|make|reveal|rise|send|set|speak|take|tear|tell|use} <ccomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0022\n{rel}\t{arg1} >infmod> {rel:postag=VB} >dobj> {arg2}\t0.0022\n{rel} {prep}\t{arg1} <poss< {slot0:postag=NN:regex=arm|back|body|campaign|comment|door|expression|eye|face|feature|foot|form|hand|house|leg|profile|response|side|time|word} <{prep:regex=prep_(.*)}< {rel:postag=VBD} >nsubj> {arg2}\t0.0022\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=birth|birthday|campus|candidacy|child|city|country|court|daughter|dialect|director|division|form|founder|graduate|island|life|manuscript|member|parent|part|president|proceedings|son|state|subsidiary|suburb|territory|town|type|unit|variety} >partmod> {rel:postag=VBN:regex=base|bear|hold|locate|situate|speak|write} >prep_in> {arg2}\t0.0022\n{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=call|come|flee|go|look|pray|present|return|sail|say|write} >prep_for> {arg2}\t0.0022\n{rel} to\t{arg1} <nsubj< {slot0:postag=VB:regex=appear|baptize|be|believe|bring|cause|come|create|destroy|do|enable|find|get|give|go|have|judge|keep|know|leak|leave|let|love|make|profit|reign|remain|return|see|send|take|walk} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0022\n{rel} in\t{arg1} <nsubj< {rel:postag=VBP} >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}\t0.0021\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=aka|appoint|bacame|elect|inaugurate|introduce|name|nominate|null|remain|take} >dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\n{rel}\t{arg1} >rcmod> {rel:postag=VBN} >dobj> {arg2}\t0.0021\n{rel} {prep}\t{arg1} <amod< {slot0:postag=NN:regex=army|artist|colonist|couple|explorer|family|force|immigrant|man|nation|people|settler|slave|soldier|troops} <nsubj< {rel:postag=VBD:regex=bring|come|convert|die|go|land|live|make|move|return|turn|withdraw} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\nbe {rel} {prep}\t{arg1} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0021\n{rel}\t{arg1} <nsubj< {slot0:postag=VBP:regex=assume|get|have|hold|keep|lose|maintain|regain|relinquish|retain|retake|seize|take|win} >dobj> {rel:postag=NN:regex=control} >prep_of> {arg2}\t0.0021\nbe {rel} {prep}\t{arg1} <amod< {slot0:postag=NN:regex=bat|branch|committee|contribution|deposit|donation|gift|language|service|soldier|version|word} <nsubjpass< {rel:postag=VBN:regex=base|bear|compose|comprise|find|hold|kill|locate|make|relate|speak|use|write} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\n{rel}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=ability|administration|application|aspiration|attempt|authority|authorization|bid|candidate|command|commandment|decision|defeat|desire|effort|failure|odds|order|plan|policy|set|team|weapon} >infmod> {rel:postag=VB:regex=attack|beat|betray|buy|close|come|invade|join|love|run|support|use|win} >dobj> {arg2:postag=NNP}\t0.0021\nbe {rel} {prep}\t{arg1} <appos< {slot0:postag=NN:regex=actress|author|brother|child|city|company|country|daughter|faculty|father|grandfather|man|mater|null|painter|parent|school|son|study|town|wife} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\n{rel} to\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=speak} >prep_unto> {arg2:postag=NNP}\t0.0021\n{rel}\t{arg1} <prep_to< {rel:postag=VBN:regex=annex|appoint|elect|marry|require} >nsubjpass> {arg2}\t0.0021\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=NN:regex=city|country|deity|figure|god|horse|institution|island|man|nation|person|place|republic|state|territory|town|woman} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\nbe {rel} by\t{arg1} <prep_to< {rel:postag=VBD:regex=appoint|make|pass|sign} >nsubj> {arg2}\t0.0021\n{rel}\t{arg1} <prep_by< {rel:postag=VBD:regex=acquire|adopt|appoint|approve|betray|build|buy|control|create|develop|discover|elect|establish|found|invade|issue|lead|marry|occupy|offer|pass|play|promise|publish|rule|send|sign|support|teach|win} >nsubj> {arg2}\t0.0021\n{rel} at\t{arg1} <poss< {slot0:postag=NN:regex=eye|face|gaze} <prep_into< {rel:postag=VBD:regex=look|smile|stare} >nsubj> {arg2}\t0.0021\n{rel} of\t{arg1} <nsubj< {slot0:postag=VBN:regex=ask|authorize|be|begin|choose|come|discuss|do|fail|give|go|hear|inherit|join|lay|make|misrepresent|promise|reveal|send|sound|speak|support|tell|use|vote|write} <ccomp< {rel:postag=VBD} >nsubj> {arg2}\t0.0021\n{rel} of\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0021\n{rel} of\t{arg1} <nsubj< {rel:postag=VBZ} >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}\t0.0021\nbe {rel} in\t{rel:postag=VBN:regex=bear|hold|locate|situate} >nsubjpass> {arg1} >appos> {arg2}\t0.0021\nbe {rel} by\t{arg1} <nsubjpass< {rel:postag=VBN:regex=accredit|administer|appoint|fund|make|pass|provide|sponsor} >agent> {slot0:postag=NNP:regex=chair|chairman|chairperson|commission|congress|division|house|president} >prep_of> {arg2}\t0.0021\nbe {rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN} <dobj< {slot0:postag=VBZ:regex=comprise|consider|consist|contain|control|cover|encompass|enter|feature|give|have|include|means|occupy|offer|pose|represent|reveal|rule|take|tell} >nsubj> {arg2}\t0.0021\n{rel} {prep}\t{arg1} <appos< {slot0:postag=NNP:regex=globally|wind} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0021\nbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBD}\t0.0021\n{rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=hold|locate|open} >prep_from> {arg2}\t0.0021\n{rel}\t{arg1} <nsubj< {rel:postag=VBP:regex=buy|get|go|include|love|meet|pour|tell|want} >dobj> {slot0:postag=NN:regex=ciali|order|pharmacy|phentermine|pill|prescription|shoe|store|tadalafil|viagra|video} >amod> {arg2}\t0.0021\nbe {rel} in\t{arg1} <prep_at< {rel:postag=VBZ:regex=teach} >dobj> {arg2}\t0.0020\nbe {rel} of\t{arg1:postag=NNP} <nn< {arg2: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}\t0.0020\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=add|attend|be|call|come|die|explain|go|have|hold|keep|lead|make|meet|offer|praise|present|receive|say|serve|sign|speak|tell|visit|write} >nsubj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\n{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=attend|be|begin|claim|come|continue|decide|drop|end|enlist|enter|get|give|go|have|join|live|make|meet|move|open|receive|return|set|sign|spend|start|suffer|take|teach|win|work|write} >prepc_after> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\nbe {rel} of\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=capital|city|currency|daughter|day|division|father|friend|governor|home|language|man|part|president|servant|son|trademark|wife} <dobj< {slot0:postag=VBD:regex=answer|bind|bless|call|choose|circumcise|command|consider|declare|elect|have|know|make|marry|offer|send|speak|take} >nsubj> {arg2:postag=NNP}\t0.0020\n{rel} in\t{arg1} <conj< {arg2} <nsubj< {rel:postag=VBD}\t0.0020\n{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBN}\t0.0020\nbe {rel} of\t{arg1} <poss< {slot0:postag=NN:regex=appointment|election|experience|failure|identity|inaugration|inauguration|nomination|position|program|resignation|role|state|status|tenure|term|trip|victory|visit|year} >prep_as> {rel:postag=NN:regex=capital|chairman|governor|head|member|part|president|secretary|son} >prep_of> {arg2}\t0.0020\nbe {rel} of\t{arg1} <poss< {slot0:postag=NN:regex=day|duty|election|inauguration|installation|reign|role|status|successor|swear|tenure|term|trip|victory|year} >prep_as> {rel:postag=NNP:regex=chairman|president|region} >prep_of> {arg2}\t0.0020\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0020\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=anaheim|chairman|europe|falmouth|malaysium|mayor|monday|orlando|president|queen|russium|singapore|word} >appos> {arg2}\t0.0020\nbe {rel} by\t{arg1} <nsubjpass< {rel:postag=VBN:regex=create|locate|make|pass} >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}\t0.0020\n{rel} {prep}\t{arg1} <conj< {slot0:postag=NNP:regex=aug|december|exodus|gen|genesis|jan|matthew|may|nkjv|nov|oct} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ:regex=begin|close|convene|end|meet|open} >prep_on> {arg2}\t0.0020\nbe {rel} in\t{arg1} <prep_of< {slot0:postag=NN:regex=court|division|form|glory|graduate|home|love|minute|part|picture|proceedings|session|site|subsidiary|variety|writer} <nsubj< {rel:postag=VBD:regex=find|headquarter|hold|introduce|locate|publish|register|reveal|use|write} >prep_in> {arg2}\t0.0020\nbe {rel} in\t{arg1} >rcmod> {rel:postag=VBN:regex=bear|hold|list|locate|release} >prep_on> {arg2}\t0.0020\nbe {rel} {prep}\t{arg1} <prep_of< {rel:postag=NN} >prep_of> {slot0:postag=NN:regex=area|brother|committee|daughter|grandson|island|law|member|part|region|rest|son|state|trademark} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBD:regex=appear|ask|be|chuckle|come|die|give|go|grin|have|head|know|laugh|leave|look|make|mutter|reach|ride|say|see|shake|smile|stand|start|stop|take|wait|watch} >advcl> {rel:postag=VBD} >nsubj> {arg2}\t0.0020\nbe {rel} {prep}\t{arg1} <dobj< {slot0:postag=VBG:regex=accord|act|affect|appoint|become|call|comprise|concern|cover|elect|form|found|make|manage|ravage|reach|run|serve|span|support|surround|tour|use|visit|write} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\n{rel}\t{arg1} >rcmod> {rel:postag=VBP} >dobj> {arg2}\t0.0020\nbe {rel} {prep}\t{arg1} <dobj< {slot0:postag=VBD:regex=affect|appoint|ask|conquer|control|cover|devastate|dominate|elect|encompass|hit|include|invite|join|make|marry|meet|name|occupy|reach|retire|settle|state|strike|tell|thank|tour|urge|visit} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\nbe {rel} in\t{arg1} <nsubj< {rel:postag=NN:regex=city|country|county|island|state|town} >prep_on> {slot0:postag=NN:regex=border|coast|continent|edge|end|island|mainland|part|shore|side|tip} >prep_of> {arg2}\t0.0020\n{rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBD:regex=appear|come|die|give|go|hold|leave|look|meet|move|present|return|run|say|start|support|write} >{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}\t0.0020\nbe {rel} of\t{arg1} <nsubj< {rel:postag=NN} <ccomp< {slot0:postag=VBZ:regex=announce|be|believe|claim|declare|deny|exist|insist|know|life|maintain|means|say|state|suggest|teach|tell} >nsubj> {arg2}\t0.0020\nbe {rel} {prep}\t{arg1:postag=NNP} <nsubj< {rel:postag=VBD:regex=cause|comprise|find|go|hold|locate|make|marry|originate|play|post|power|publish|purchase|register|require|return|say|speak|support|switch|write} >{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}\t0.0020\nbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=JJ:regex=accessible|active|available|aware|british|close|complex|easy|eldest|famous|first|ineligible|interest|largest|last|ok|oldest|proud|responsible|same|second|seventh|third|youngest} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0020\nbe {rel} in\t{arg1} <appos< {rel:postag=NNP} >conj> {arg2}\t0.0020\n{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0019\n{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0019\nbe {rel} {prep}\t{arg1} <prep_of< {slot0:postag=NN:regex=blood|brother|capital|city|daughter|death|friend|home|inauguration|introduction|life|mission|mystery|nomination|portrait|reign|son|state|story|territory|tour|type|wife} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0019\n{rel} to\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|ask|be|bring|come|continue|deny|give|have|know|life|look|love|need|reply|sit|talk|tell|want} <ccomp< {rel:postag=VBZ} >nsubj> {arg2}\t0.0019\n{rel} {prep}\t{arg1} <dobj< {slot0:postag=VB:regex=assist|attend|confront|establish|find|help|interview|join|marry|meet|offer|open|plant|play|preach|record|rejoin|see|serve|spread|study|take|teach|tell|urge|visit} <xcomp< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0019\n{rel} of\t{arg1} <nsubj< {rel:postag=VBZ:regex=consist|say|speak|write} >prep_to> {arg2}\t0.0019\n{rel} {prep}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=app|applet|application|class|family|game|girl|infection|initiation|member|minister|mission|people|practice|process|program|season|session|software|spacecraft|team|update|version} <nsubj< {rel:postag=VB:regex=arrive|begin|believe|belong|come|connect|convert|go|lead|live|meet|move|open|progress|report|return|run|start|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0019\n{rel}\t{rel:postag=NN:regex=attack|beat|buy|chair|elect|head|host|invade|love|marry|meet|need|play|speak|support|thru} <nn< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0019\nbe {rel} in\t{arg1} <prep_of< {rel:postag=NN:regex=city|island|province|region|state|town} <prep_of< {slot0:postag=NN:regex=area|capital|center|centre|city|heart|icon|language|law|north|northwest|outskirts|part|people|portion|region|resident|side|size|suburb|tip|west} >prep_in> {arg2}\t0.0019\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {slot0:postag=NN:regex=album|back|bid|body|campaign|caucus|command|endorsement|faith|glory|hand|offer|primary|proposal|right|vote|way} >poss> {arg2}\t0.0019\n{rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=VBG} <xcomp< {slot0:postag=VBD:regex=add|answer|ask|avoid|begin|continue|find|finish|keep|mutter|nod|pull|reply|say|shake|sigh|sit|smile|stand|start|stop|take|turn|whisper} >nsubj> {arg2}\t0.0019\n{rel} to\t{arg1:postag=NNP} <prep_unto< {rel:postag=NN:regex=speak} >nn> {arg2:postag=NNP}\t0.0019\nbe {rel} {prep}\t{arg1} <{prep:regex=prep_(.*)}< {rel:postag=VBN} >tmod> {arg2}\t0.0019\n{rel}\t{arg1:postag=NNP} <agent< {rel:postag=VBN:regex=appoint|control|create|devastate|develop|found|hit|hold|introduce|issue|make|occupy|offer|own|play|publish|release|support|use|win} <partmod< {slot0:postag=NN:regex=area|championship|city|community|game|kernel|language|no|platform|program|programme|region|school|seat|slave|software|state|system|technology|trophy} >nn> {arg2:postag=NNP}\t0.0019\n{rel}\t{arg1:postag=NNP} <nn< {slot0:postag=NN:regex=administration|army|b|campaign|celebrate|fan|force|have|haven|member|party|son|team|terrorist|thrice|troops} <nsubj< {rel:postag=VBD:regex=attack|beat|control|defeat|deny|devastate|die|elect|endorse|enter|found|invade|kill|marry|pass|see|speak|take|tell|win} >dobj> {arg2:postag=NNP}\t0.0019\n{rel}\t{arg1} <prep_of< {arg2} <nsubjpass< {rel:postag=VBN:regex=adopt|appoint|elect|found|publish}\t0.0019\nbe {rel} for\t{arg1} <nsubj< {rel:postag=NN:regex=abbreviation|acronym|birthstone|choice|color|editor|form|hub|language|month|name|partner|proxy|spokesperson|state|symbol|time} >prep_of> {arg2}\t0.0019\n{rel}\t{arg1} <nsubj< {rel:postag=VBZ:regex=accept|bless|buy|contain|control|go|have|meet|narrow|need|offer|pay|support|win} >dobj> {slot0:postag=NN:regex=award|bill|check|ciali|degree|enzyme|john|order|program|programme|theme} >amod> {arg2}\t0.0019\n{rel}\t{arg1} <nsubj< {rel:postag=VBD} <advcl< {slot0:postag=VBD:regex=ask|be|beat|begin|come|create|die|do|enter|feel|give|go|have|laugh|lead|live|lose|make|obey|pick|say|take|win} >nsubj> {arg2}\t0.0019\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/common/enrich/Traversable.scala",
    "content": "package edu.knowitall\npackage common\npackage enrich\n\nimport edu.knowitall.collection.immutable.Bag\n\nimport scalaz._\nimport Scalaz._\nimport Monoid._\n\n/**\n * Enrichments for traversables.\n *\n * @author  Michael Schmitz\n */\nobject Traversables {\n  implicit def traversableOnceTo[T](as: TraversableOnce[T]): SuperTraversableOnce[T] = new SuperTraversableOnce[T](as)\n\n  implicit def traversableOncePairIntTo[T](as: TraversableOnce[(T, Int)]): SuperTraversableOncePairInt[T] = new SuperTraversableOncePairInt[T](as)\n\n  implicit def traversableOncePairTo[T, U](as: TraversableOnce[(T, U)]): SuperTraversableOncePair[T, U] = new SuperTraversableOncePair[T, U](as)\n}\n\nsealed class SuperTraversableOnce[T](value: TraversableOnce[T]) {\n  def histogram: Map[T, Int] = {\n    value.foldLeft(Map[T, Int]()) { (m, c) =>\n      m.updated(c, m.getOrElse(c, 0) + 1)\n    }\n  }\n}\n\nsealed class SuperTraversableOncePairInt[T](value: TraversableOnce[(T, Int)]) {\n  import Traversables._\n  def mergeHistograms: Map[T, Int] = value.mergeKeys(_ + _)\n}\n\nsealed class SuperTraversableOncePair[T, U](value: TraversableOnce[(T, U)]) {\n  def mergeKeys(implicit mon: Semigroup[U]): Map[T, U] = {\n    value.foldLeft(Map[T, U]()) {\n      case (map, (k, v)) =>\n        map + (k -> (map.get(k).map(_ |+| v).getOrElse(v)))\n    }\n  }\n\n  def mergeKeys[F[_]](implicit monoid: Monoid[F[U]]): Map[T, F[U]] = {\n    value.foldLeft(Map[T, F[U]]()) {\n      case (map, (k, v)) =>\n        val pure = monoid.zero\n        map + (k -> (map.get(k).map(_ |+| pure).getOrElse(pure)))\n    }\n  }\n\n  def mergeKeys(merge: (U, U) => U): Map[T, U] = {\n    value.foldLeft(Map[T, U]()) {\n      case (map, (k, v)) =>\n        map + (k -> map.get(k).map(merge(_, v)).getOrElse(v))\n    }\n  }\n\n  def toListMultimap: Map[T, List[U]] = {\n    value.foldLeft(Map[T, List[U]]().withDefaultValue(List.empty[U])) {\n      case (map, (k, v)) =>\n        map + (k -> (v :: map(k)))\n    }\n  }\n\n  def toSetMultimap: Map[T, Set[U]] = {\n    value.foldLeft(Map[T, Set[U]]().withDefaultValue(Set.empty[U])) {\n      case (map, (k, v)) =>\n        map + (k -> (map(k) + v))\n    }\n  }\n\n  def toBagMultimap: Map[T, Bag[U]] = {\n    value.foldLeft(Map[T, Bag[U]]().withDefaultValue(Bag.empty[U])) {\n      case (map, (k, v)) =>\n        val bag = map(k)\n        map + (k -> (bag + v))\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/DependencyGraphExtras.scala",
    "content": "package edu.knowitall.ollie\n\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.parse.graph.Dependency\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.tool.tokenize.Tokenizer\nimport edu.knowitall.collection.immutable.graph.Graph\n\nclass DependencyGraphExtras(dgraph: DependencyGraph) {\n  private def graph = dgraph.graph\n\n  def passiveVoice: Iterable[DependencyGraph] = {\n    require(dgraph.nodes forall (_.indices.length == 1))\n\n    // look for passive constructions\n    val activeVoices = this.graph.vertices.filter { v =>\n      (v.postag startsWith \"VB\") &&\n      (dgraph.dependencies exists {edge => edge.label == \"nsubj\" && edge.source == v}) &&\n      (dgraph.dependencies exists {edge => edge.label == \"dobj\" && edge.source == v})\n    }\n\n    activeVoices map { v =>\n      val nsubj = dgraph.dependencies.find(edge => edge.label == \"nsubj\" && edge.source == v).get\n      val dobj = dgraph.dependencies.find(edge => edge.label == \"dobj\" && edge.source == v).get\n      val nsubjInterval = Interval.span(dgraph.graph.inferiors(nsubj.dest).map(_.indices))\n      val dobjInterval = Interval.span(dgraph.graph.inferiors(dobj.dest).map(_.indices))\n\n      val nsubjpass = new Dependency(v, dobj.dest, \"nsubjpass\")\n\n      val by = new DependencyNode(\"by\", \"IN\", dobjInterval.start, -1)\n      val prep = new Dependency(v, by, \"prep\")\n      val pobj = new Dependency(by, nsubj.dest, \"pobj\")\n      val was = new DependencyNode(\"was\", \"VBD\", v.indices.start, -1)\n      val auxpass = new Dependency(nsubj.source, was, \"auxpass\")\n\n      // adjust the edges\n      var edges: Iterable[Dependency] = dgraph.dependencies\n      edges = edges.toSet - nsubj - dobj + prep + pobj + auxpass + nsubjpass\n      // adjust for the \"by\" node\n      def nodeMap = { (v: DependencyNode) =>\n        var interval = v.indices\n        if (v.indices.start >= by.indices.start && v != by) interval = DependencyGraphExtras.shift(interval, 1)\n        if (v.indices.start >= was.indices.start && v != was) interval = DependencyGraphExtras.shift(interval, 1)\n        new DependencyNode(v.text, v.postag, interval, v.offset)\n      }\n      edges = edges.map { e => e mapNodes nodeMap }\n\n      edges = DependencyGraphExtras.swapOrders(edges, graph.inferiors(nsubj.dest) map nodeMap, graph.inferiors(dobj.dest) map nodeMap)\n\n      // create the new graph\n      val newGraph = new DependencyGraph(edges.flatMap(_.vertices), edges)\n      val text = newGraph.nodes.iterator.map(_.text).mkString(\" \")\n\n      // compute the correct offsets\n      val offsets = Tokenizer.computeOffsets(newGraph.nodes.iterator.map(_.text).toList, text)\n      val nodeOffsetTransformation =\n        ((newGraph.graph.vertices.iterator zip offsets.iterator) map {case (node, token) => node -> new DependencyNode(node.text, node.postag, node.indices, token.offset)}).toMap\n\n      newGraph map nodeOffsetTransformation\n    }\n  }\n\n  def activeVoice: Iterable[DependencyGraph] = {\n    require(dgraph.nodes forall (_.indices.length == 1))\n\n    // look for active constructions\n    val passiveVoices = this.graph.vertices.filter { v =>\n      if (!(v.postag startsWith \"VB\") &&\n          (dgraph.dependencies exists {edge => edge.label == \"nsubjpass\" && edge.source == v}) &&\n          (dgraph.dependencies exists (edge => edge.label == \"auxpass\" && edge.source == v)))\n        false\n      else {\n        dgraph.dependencies.find(e => e.label == \"prep\" && e.source == v && e.dest.text == \"by\") match {\n          case None => false\n          case Some(prep) => dgraph.dependencies.exists(e => e.source == prep.dest && e.label == \"pobj\")\n        }\n      }\n      (dgraph.dependencies exists {edge => edge.label == \"prep\" && edge.source == v})\n    }\n\n    passiveVoices map { v =>\n      val nsubjpass = dgraph.dependencies.find(edge => edge.label == \"nsubjpass\" && edge.source == v).get\n      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\n      val pobj = dgraph.dependencies.find(edge => edge.label == \"pobj\" && edge.source == prep.dest).get\n      val auxpass = dgraph.dependencies.find(edge => edge.label == \"auxpass\" && edge.source == v).get\n\n      val nsubj = new Dependency(v, pobj.dest, \"nsubj\")\n      val dobj = new Dependency(v, nsubjpass.dest, \"dobj\")\n\n      // adjust the edges\n      var edges: Iterable[Dependency] = dgraph.dependencies\n      edges = edges.toSet - nsubjpass - auxpass - prep - pobj + nsubj + dobj\n      edges = DependencyGraphExtras.swapOrders(edges, graph.inferiors(nsubjpass.dest), graph.inferiors(pobj.dest))\n\n      val nodes = scala.collection.immutable.SortedSet.empty[DependencyNode] ++ edges.flatMap(_.nodes)\n      val nodeMap = nodes.iterator.zipWithIndex.map{case (node, i) => node -> new DependencyNode(node.text, node.postag, Interval.singleton(i), -1)}.toMap\n      edges = edges.map(_ mapNodes nodeMap)\n\n      // create the new graph\n      val newGraph = new DependencyGraph(edges.flatMap(_.vertices), edges)\n      val text = newGraph.nodes.iterator.map(_.text).mkString(\" \")\n\n      // compute the correct offsets\n      val offsets = Tokenizer.computeOffsets(newGraph.nodes.iterator.map(_.text).toList, text)\n      val nodeOffsetTransformation =\n        ((newGraph.graph.vertices.iterator zip offsets.iterator) map {case (node, token) => node -> new DependencyNode(node.text, node.postag, node.indices, token.offset)}).toMap\n\n      newGraph map nodeOffsetTransformation\n    }\n  }\n\n  def switchVoice: Iterable[DependencyGraph] = {\n    passiveVoice ++ activeVoice\n  }\n}\n\nobject DependencyGraphExtras {\n  private def shift(interval: Interval, by: Int) = Interval.open(interval.start + by, interval.end + by)\n\n  private def swapOrders(edges: Iterable[Dependency], left: scala.collection.Set[DependencyNode], right: scala.collection.Set[DependencyNode]) = {\n    val leftInterval = Interval.span(left.map(_.indices))\n    val rightInterval = Interval.span(right.map(_.indices))\n\n    require(leftInterval.end <= rightInterval.start)\n\n    val leftOffset = left.iterator.map(_.offset).max\n    val rightOffset = right.iterator.map(_.offset).min\n\n    val tokensBetween = rightInterval.start - leftInterval.end + 1\n    val charsBetween = rightOffset - leftOffset\n\n    edges.map(e => e.mapNodes(v =>\n      if (left contains v) new DependencyNode(v.text, v.postag, DependencyGraphExtras.shift(v.indices, tokensBetween), v.offset + charsBetween)\n      else if (right contains v) new DependencyNode(v.text, v.postag, DependencyGraphExtras.shift(v.indices, -tokensBetween), v.offset - charsBetween)\n      else v))\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/NaryExtraction.scala",
    "content": "package edu.knowitall.ollie\n\nimport scala.Option.option2Iterable\nimport scala.collection.SortedSet\nimport scala.collection.immutable\n\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.openparse.extract.DetailedExtraction\nimport edu.knowitall.openparse.extract.Extraction\nimport edu.knowitall.openparse.extract.Extraction.AdverbialModifier\nimport edu.knowitall.openparse.extract.Extraction.ClausalComponent\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport edu.knowitall.tool.postag.Postagger\n\n/**\n * Represents a part {arg1, rel, arg2} of an extraction.\n *\n * @param  string  the representation of the part\n * @param  interval  the interval of the part in the source sentence\n */\nclass ExtractionPart(val string: String, val interval: Interval) extends Ordered[ExtractionPart] {\n  override def compare(that: ExtractionPart) =\n    this.interval compare that.interval\n\n  override def toString = string.replaceAll(\"/\", \"\")\n}\n\n/**\n * Represents a possible suffix for an extended extraction.\n * For example, in the sentence \"He ate from 7 until 10.\"\n * there are two suffixes: \"from 7\" and \"until 10\".\n *\n * @param  string  the text of the suffix\n * @param  interval  the interval of the suffix in the source sentence\n * @param  confidence  the confidence of the suffix\n */\nclass Suffix(\n  text: String,\n  nodes: SortedSet[DependencyNode],\n  val confidence: Double)\n  extends Extraction.Part(nodes, text) {\n  override def toString = (\"%1.4f\" format confidence) + \"/\\\"\" + super.toString + \"\\\"\"\n\n  /** Annote the suffix with a type. */\n  def annotate(string: String) =\n    new AnnotatedSuffix(this, string)\n}\n\n/**\n * Represents a possible suffix for an extended extraction\n * along with an annotation.\n *\n * For example, in the sentence \"He ate from 7 until 10.\"\n * there are two suffixes: \"from 7\" and \"until 10\".\n *\n * @param  string  the text of the suffix\n * @param  interval  the interval of the suffix in the source sentence\n * @param  confidence  the confidence of the suffix\n * @param  annotation  an annotation for the suffix\n */\nclass AnnotatedSuffix(\n  text: String,\n  nodes: SortedSet[DependencyNode],\n  confidence: Double,\n  val annotation: String)\n  extends Suffix(text, nodes, confidence) {\n  def this(suffix: Suffix, annotation: String) =\n    this(suffix.text, suffix.nodes, suffix.confidence, annotation)\n  override def toString = annotation + \"/\" + super.toString\n}\n\n/**\n * A representaiton of an n-ary extraction, i.e.\n *\n *   (Michael, ran, to the store, on Monday, at 2 PM)\n *\n * N-ary extractions have multiple secondary arguments (objects)\n * and these arguments include the preposition.\n *\n * @param  arg1  the first argument\n * @param  rel  the relation\n * @param  suffixes  the suffixes\n * @param  clausals  a clause restricting this extraction to a context\n * @param  modifier  a modifier for this extraction (i.e. attribution)\n *\n * @author Michael Schmitz\n */\nclass 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) {\n  override def toString =\n    \"(\" + arg1.text + \", \" + rel.text + \", \" + suffixes.map(_.text).mkString(\", \") + \")\"\n}\n\nobject NaryExtraction {\n  implicit object SuffixOrdering extends Ordering[Suffix] {\n    def compare(x: Suffix, y: Suffix) = x.span.compare(y.span)\n  }\n\n  /**\n   * Create extended extractions from a collection of extractions\n   * from the same sentence.\n   */\n  def from(extrs: Iterable[(Double, OllieExtractionInstance)]): Iterable[NaryExtraction] = {\n    // keep extractions that end with a one-word preposition\n    val prepositionEnding = extrs.filter {\n      case (conf, inst) =>\n        Postagger.simplePrepositions(inst.extr.rel.text drop (1 + inst.extr.rel.text lastIndexOf ' '))\n    }\n\n    // break off the preposition\n    case class BrokenExtraction(rel: String, preposition: String, extr: (Double, OllieExtraction))\n    val split: Iterable[BrokenExtraction] = prepositionEnding.map {\n      case (conf, inst) =>\n        val preps = Postagger.prepositions.filter(inst.extr.rel.text endsWith _)\n        val longest = preps.maxBy(_.length)\n        BrokenExtraction(inst.extr.rel.text.dropRight(longest.length + 1), longest, (conf, inst.extr))\n    }\n\n    // group by the arg1 and text\n    split groupBy {\n      case BrokenExtraction(rel, preposition, (conf, extr)) =>\n        (extr.arg1.text, rel)\n    } filter (_._2.size > 1) map {\n      case ((arg1, rel), extrs) =>\n        val suffixes: immutable.SortedSet[Suffix] = extrs.map {\n          case BrokenExtraction(rel, prep, (conf, extr)) =>\n            new Suffix(prep + \" \" + extr.arg2.text, extr.arg2.nodes, conf)\n        }(scala.collection.breakOut)\n\n        val first = extrs.head.extr._2\n        val argument1 = new Extraction.Part(first.arg1.nodes, arg1)\n        val relation = new Extraction.Part(first.rel.nodes, rel)\n\n        val attributions = extrs.flatMap(_.extr._2.attribution).toSet.toSeq\n        val enablers = extrs.flatMap(_.extr._2.enabler).toSet.toSeq\n\n        new NaryExtraction(argument1, relation, suffixes.toSeq, enablers = enablers, attributions = attributions)\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/Ollie.scala",
    "content": "package edu.knowitall.ollie\n\nimport scala.io.Source\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.openparse.OpenParse\nimport edu.knowitall.openparse.extract.DetailedExtraction\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.tool.stem.Stemmer\n\n/** Ollie is an Open Information Extractor that produces binary extractions\n  * with context.  The constructor takes an OpenParse instance.  Ollie extends\n  * OpenParse's extractions with enabling conditions and attributions.  There\n  * is also a trained confidence function for OllieExtractions.\n  *\n  * @author Michael Schmitz\n  */\nclass Ollie(val openparse: OpenParse) {\n  val stemmer = new MorphaStemmer\n\n  /** Construct with the default model. */\n  def this() = this(OpenParse.withDefaultModel(OpenParse.Configuration(confidenceThreshold = 0.005)))\n\n  def apply(dgraph: DependencyGraph): Iterable[OllieExtractionInstance] =\n    extract(dgraph)\n\n  /**\n    * primary method for getting extractions\n    */\n  def extract(dgraph: DependencyGraph): Iterable[OllieExtractionInstance] = {\n    val openparseExtrs = openparse.extract(dgraph)\n\n    for {\n      (conf, extr) <- openparseExtrs\n      enabler = enablingAdverbialClauseHelper(extr)\n      attribution = attribClausalComponentHelper(extr)\n    } yield new OllieExtractionInstance(\n        new OllieExtraction(extr.arg1, extr.rel, extr.arg2, conf, enabler, attribution), dgraph, extr.extractor)\n  }\n\n  /** Identify enabling condition, i.e. \"if it's raining...\" */\n  private def enablingAdverbialClauseHelper(extr: DetailedExtraction): Option[EnablingCondition] = {\n    extr.modifier map { modifier =>\n      val prefix = modifier.contents.nodes.head.text\n      val phrase = modifier.contents.nodes.iterator.drop(1).map(_.text).mkString(\" \")\n\n      new EnablingCondition(prefix, phrase, modifier.contents.span)\n    }\n  }\n\n  /** Identify attributions from clausal components, i.e. \"He said...\" */\n  private def attribClausalComponentHelper(extr: DetailedExtraction): Option[Attribution] = {\n    extr.clausal flatMap { clausal =>\n      // find the first verb in the clausal rel\n      clausal.rel.nodes.find(_.postag.startsWith(\"VB\")).flatMap { node =>\n        val normalized = stemmer.stem(node.text.toLowerCase())\n        if (Ollie.communicationWords.contains(normalized) || Ollie.cognitiveWords.contains(normalized)) {\n          val clausalArgInterval = Interval.span(clausal.arg.nodes.map(_.indices))\n          val clausalRelInterval = Interval.span(clausal.rel.nodes.map(_.indices))\n          Some(new Attribution(\n            clausal.arg.text,\n            clausal.arg.span,\n            clausal.rel.text,\n            clausal.rel.span))\n        } else None\n      }\n    }\n  }\n}\n\nobject Ollie {\n  implicit def stemmer: Stemmer = MorphaStemmer\n\n  /** A collection of verbs used for communication, i.e. \"said\" */\n  val communicationWords = using(Source.fromInputStream(classOf[Ollie].getResource(\"communicationWords.txt\").openStream())) { source =>\n    source.getLines.toSet\n  }\n\n  /** A collection of verbs used for beliefs, i.e. \"think\" */\n  val cognitiveWords = using(Source.fromInputStream(classOf[Ollie].getResource(\"cognitiveWords.txt\").openStream())) { source =>\n    source.getLines.toSet\n  }\n\n  /** A collection of prefixes used for enabling conditions, i.e. \"if\" and \"when\" */\n  val enablerPrefixes = using(Source.fromInputStream(classOf[Ollie].getResource(\"prefixWords.txt\").openStream())) { source =>\n    source.getLines.toSet\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/OllieExtraction.scala",
    "content": "package edu.knowitall.ollie\n\nimport scala.Option.option2Iterable\nimport scala.collection.breakOut\n\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.common.HashCodeHelper\nimport edu.knowitall.openparse.extract.Extraction.Part\nimport edu.knowitall.tool.parse.graph.DependencyNode\n\n/** A base representation for additional context around an extraction. */\nsealed abstract class Context {\n  def text: String\n  def interval: Interval\n}\n\n/** A representation for an enabling condition.\n  * An example of an enabling condition is \"if it's raining\".\n  */\ncase class EnablingCondition(\n    /** The enabling condition word, i.e. \"if\" */\n    val prefix: String,\n    /** The rest of the enabling condition, i.e. \"it's raining\" */\n    val phrase: String,\n    /** The token interval of the enabling condition */\n    override val interval: Interval) extends Context {\n  override def text = prefix + \" \" + phrase\n\n  def serialize: String = Seq(prefix, phrase, interval.start.toString, interval.last.toString).map(_.replaceAll(\"_\", \"_UNSC_\")).mkString(\"_\")\n}\n\nobject EnablingCondition {\n  def deserialize(string: String) = {\n    val Array(prefix, phrase, intervalStart, intervalLast) = try (string.split(\"_\"))\n    catch {\n      case e => throw new RuntimeException(\"could not deserialize EnablingCondition: \" + string, e);\n    }\n    new EnablingCondition(prefix, phrase, Interval.closed(intervalStart.toInt, intervalLast.toInt))\n  }\n}\n\n/** A representation for an attribution.\n  * An example of an is \"Obama believes\".\n  */\ncase class Attribution(\n    /** The argument of the attribution, i.e. \"Obama\" */\n    val arg: String,\n    /** The token interval of the argument of the attribution */\n    val argInterval: Interval,\n    /** The relation of the attribution, i.e. \"believes\" */\n    val rel: String,\n    /** The token interval of the relation of the attribution */\n    override val interval: Interval) extends Context {\n  override def text = arg + \" \" + rel\n\n  def serialize: String = {\n    val fields = Seq(arg, rel, argInterval.start.toString, argInterval.last.toString, interval.start.toString, interval.last.toString)\n    fields.map(_.replaceAll(\"_\", \"_UNSC_\")).mkString(\"_\")\n  }\n}\n\nobject Attribution {\n  def deserialize(string: String) = {\n    val Array(arg, rel, argIntervalStart, argIntervalLast, relIntervalStart, relIntervalLast) = try (string.split(\"_\"))\n    catch {\n      case e => throw new RuntimeException(\"could not deserialize Attribution: \" + string, e);\n    }\n    val argInterval = Interval.closed(argIntervalStart.toInt, argIntervalLast.toInt)\n    val relInterval = Interval.closed(relIntervalStart.toInt, relIntervalLast.toInt)\n\n    new Attribution(arg, argInterval, rel, relInterval)\n  }\n}\n\n/** A representation of an Ollie extraction, i.e. we could get the following\n  * extraction from the example sentence.\n  *\n  * {{{\n  * When I'm dreaming David Bowie sings that Ziggy sucked up into his mind.\n  * (Ziggy, sucked up, into his mind)[attribution = \"David Bowie\")\n  * }}}\n  */\nclass OllieExtraction(\n  /** The first argument (subject) of the extraction, i.e. \"Ziggy\" */\n  val arg1: Part,\n  /** The relation of the extraction, i.e. \"sucked up\" */\n  val rel: Part,\n  /** The second argument (object) of the extraction, i.e. \"into his mind\" */\n  val arg2: Part,\n  /** The confidence value from OpenParse. */\n  private[ollie] val openparseConfidence: Double,\n  /** The enabling condition, if any.  I.e. \"When I'm dreaming\" */\n  val enabler: Option[EnablingCondition],\n  /** The attribution, if any.  I.e. \"David Bowie sings that\" */\n  val attribution: Option[Attribution]) {\n\n  import OllieExtraction.{serializePart, deserializePart}\n\n  override def equals(that: Any) = that match {\n    case that: OllieExtraction =>\n      this.arg1 == that.arg1 &&\n      this.rel == that.rel &&\n      this.arg2 == that.arg2 &&\n      this.enabler == that.enabler &&\n      this.attribution == that.attribution &&\n      this.openparseConfidence == that.openparseConfidence\n    case _ => false\n  }\n\n  override def hashCode = HashCodeHelper(\n      this.arg1,\n      this.rel,\n      this.arg2,\n      this.enabler,\n      this.attribution,\n      this.openparseConfidence)\n\n  def tabSerialize: String = {\n    val enablerString = enabler match {\n      case Some(enablingCondition) => enablingCondition.serialize\n      case None => \"None\"\n    }\n    val attrString = attribution match {\n      case Some(attr) => attr.serialize\n      case None => \"None\"\n    }\n\n    val fieldStrings = Seq(arg1, rel, arg2).map(serializePart(_)) ++ Seq(\"%.05f\".format(openparseConfidence), enablerString, attrString)\n    fieldStrings.map(_.replaceAll(\"\\t\", \"_TAB_\")).mkString(\"\\t\")\n  }\n\n  /** The full text of this extraction. */\n  def text = Iterable(arg1.text, rel.text, arg2.text).mkString(\" \")\n\n  /** All the nodes in this extraction. */\n  def nodes = arg1.nodes ++ rel.nodes ++ arg2.nodes\n\n  /** The spanning interval of the nodes in this extraction. */\n  def span = Interval.span(nodes.map(_.indices))\n\n  override def toString = {\n    val extentions = Iterable(\n        enabler.map(\"enabler=\"+_.text),\n        attribution.map(\"attrib=\"+_.text)).flatten match {\n      case Nil => \"\"\n      case list => list.mkString(\"[\", \";\", \"]\")\n    }\n    \"(%s; %s; %s)\".format(arg1.text, rel.text, arg2.text) + extentions\n  }\n}\n\nobject OllieExtraction {\n  def tabDelimitedColumns = Seq(\"Arg1Part\", \"RelPart\", \"Arg2Part\", \"Confidence\", \"Enabler\", \"Attribution\").mkString(\"\\t\")\n\n  def tabDeserialize(array: Seq[String]): (OllieExtraction, Seq[String]) = {\n    array match {\n      case Seq(arg1Part, relPart, arg2Part, openparseConfString, enablerString, attrString, rest @ _*) => {\n        val parts = Seq(arg1Part, relPart, arg2Part) map deserializePart\n        val enabler = if (enablerString.equals(\"None\")) None else Some(EnablingCondition.deserialize(enablerString))\n        val attribution = if (attrString.equals(\"None\")) None else Some(Attribution.deserialize(attrString))\n        val extr = new OllieExtraction(parts(0), parts(1), parts(2), openparseConfString.toDouble, enabler, attribution)\n        (extr, rest)\n      }\n    }\n  }\n\n  def tabDeserialize(s: String): OllieExtraction = {\n    val (extr, rest) = tabDeserialize(s.split(\"\\t\"))\n    require(rest.isEmpty)\n    extr\n  }\n\n  def serializePart(part: Part): String = {\n    val serializedNodes = part.nodes.iterator.map(_.serialize).mkString(\"; \")\n    Iterable(part.text, serializedNodes).mkString(\" ;;; \")\n  }\n\n  def deserializePart(string: String): Part = {\n    val Array(partText, partNodes) = try (string.split(\"\\\\s*;;;\\\\s*\"))\n      catch {\n        case e => throw new RuntimeException(\"could not deserialize Extraction.Part: \" + string, e);\n      }\n\n    val nodesSortedSet: scala.collection.SortedSet[DependencyNode] =\n      try (partNodes.split(\"\\\\s*;\\\\s*\").map(DependencyNode.deserialize(_))(breakOut))\n      catch {\n        case e => throw new RuntimeException(\"could not deserialize Extraction.Part: \" + string, e);\n      }\n\n    new Part(nodesSortedSet, partText)\n  }\n}\n\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/OllieExtractionInstance.scala",
    "content": "package edu.knowitall.ollie\n\nimport edu.knowitall.common.HashCodeHelper\nimport edu.knowitall.openparse.extract.PatternExtractor\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport scala.util.matching.Regex\n\n/** OllieExtractionInstance represents an extraction coupled with\n  * its source sentence.\n  */\nclass OllieExtractionInstance(\n    /** The associated extraction. */\n    val extr: OllieExtraction,\n    /** The associated sentence. */\n    val sent: DependencyGraph,\n    /** The extractor used. */\n    val pat: PatternExtractor) {\n\n  override def equals(that: Any) = that match {\n    case that: OllieExtractionInstance => this.extr == that.extr && this.sent == that.sent\n    case _ => false\n  }\n  override def hashCode = HashCodeHelper(extr, sent)\n\n  def extraction = extr\n  def sentence = sent\n  def pattern = pat\n\n  private val passivePatternRegex = new Regex(\"\"\"^\\{arg1:?\\w*\\} <nsubjpass<.*\"\"\")\n  /** Report if this extraction is an passive construction.\n    * This is a crude measure so false should not be taken to mean\n    * that it is not active.\n    *\n    * An extraction is passive if it has a valid active formulation.\n    */\n  def passive: Boolean =\n    passivePatternRegex.pattern.matcher(pat.pattern.serialize).matches() && (extr.rel.text.endsWith(\" by\"))\n\n  private val activePatternRegex = new Regex(\"\"\"^\\{arg1:?\\w*\\} <nsubj<.*>dobj> \\{arg2:?\\w*\\}\"\"\")\n  /** Report if this extraction is an active construction.\n    * This is a crude measure so false should not be taken to mean\n    * that it is not active.\n    *\n    * An extraction is active if it has a valid passive formulation\n    * by swapping the arguments and modifying the relation (adding \"be\"\n    * and \"by\").\n    */\n  def active: Boolean =\n    activePatternRegex.pattern.matcher(pat.pattern.serialize).matches()\n\n  def tabSerialize: String = {\n    val serializedGraph = sent.serialize\n    val serializedExtr = extr.tabSerialize\n    Seq(serializedGraph, pat.tabSerialize, serializedExtr).mkString(\"\\t\")\n  }\n}\n\nobject OllieExtractionInstance {\n  def tabDeserialize(string: String): OllieExtractionInstance = {\n    val array = string.split('\\t')\n\n    val (extr, rest) = tabDeserialize(array)\n    require(rest.isEmpty)\n\n    extr\n  }\n\n  def tabDeserialize(array: Seq[String]): (OllieExtractionInstance, Seq[String]) = {\n    try {\n      val Seq(serializedGraph, r0 @ _*) = array\n\n      val graph = DependencyGraph.deserialize(serializedGraph)\n      val (pat, r1) = PatternExtractor.tabDeserialize(r0)\n      val (extr, r2) = OllieExtraction.tabDeserialize(r1)\n\n      (new OllieExtractionInstance(extr, graph, pat), r2)\n    } catch {\n      case e => throw new IllegalArgumentException(\"Could not tab deserialize: \" + array.mkString(\"\\t\"), e)\n    }\n  }\n\n  val numFinder = \"[0-9]+\".r\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/ScoredOllieExtractionInstance.scala",
    "content": "package edu.knowitall.ollie\n\nimport edu.knowitall.tool.conf.Labelled\n\n/** OllieExtractionInstance represents a boolean score coupled with\n  * an extraciton instance.\n  *\n  * @param  score  the label for this extraction\n  * @param  inst  the extraction instance labelled\n  */\nclass ScoredOllieExtractionInstance(\n    val score: Boolean,\n    val inst: OllieExtractionInstance) extends Labelled[OllieExtractionInstance](score, inst) {\n\n  override def toString = score + \":\" + inst.extr\n\n  def tabSerialize: String = {\n    Iterable(if (score) 1 else 0, inst.extr.toString, inst.tabSerialize).mkString(\"\\t\")\n  }\n}\n\nobject ScoredOllieExtractionInstance {\n  def tabDeserialize(string: String): ScoredOllieExtractionInstance = {\n    try {\n      val Array(scoreString, _, rest @ _*) = string.split('\\t')\n\n      val score =\n        if (scoreString == \"1\") true\n        else if (scoreString == \"0\") false\n        else throw new IllegalArgumentException(\"bad score: \" + scoreString)\n      val (inst, r2) = OllieExtractionInstance.tabDeserialize(rest)\n\n      require(r2.isEmpty)\n\n      new ScoredOllieExtractionInstance(score, inst)\n    } catch {\n      case e => throw new IllegalArgumentException(\"could not tab deserialize: \" + string, e)\n    }\n  }\n\n  val numFinder = \"[0-9]+\".r\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/confidence/OllieConfidenceFunction.scala",
    "content": "package edu.knowitall.ollie.confidence\n\nimport java.io.InputStream\nimport java.net.URL\nimport java.util.Scanner\n\nimport scala.collection.mutable\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.ollie.OllieExtractionInstance\nimport edu.knowitall.tool.conf.FeatureSet\nimport edu.knowitall.tool.conf.impl.LogisticRegression\n\n/** An implementation of logistic regression of features that can be\n  * represented as a double. */\n\nobject OllieConfidenceFunction {\n  val logger = LoggerFactory.getLogger(classOf[OllieIndependentConfFunction])\n  \n  type OllieIndependentConfFunction = LogisticRegression[OllieExtractionInstance]\n\n  val defaultModelUrl = Option(this.getClass.getResource(\"default-classifier.txt\")).getOrElse {\n    throw new IllegalArgumentException(\"Could not load confidence function resource.\")\n  }\n\n  def loadDefaultClassifier(): OllieIndependentConfFunction = {\n    fromUrl(OllieFeatureSet, defaultModelUrl)\n  }\n\n  def fromUrl(featureSet: FeatureSet[OllieExtractionInstance, Double], url: URL): OllieIndependentConfFunction = {\n    LogisticRegression.fromUrl(featureSet, url)\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/confidence/OllieFeatureEvaluation.scala",
    "content": "package edu.knowitall.ollie.confidence\n\nimport java.io.File\nimport java.io.PrintWriter\nimport java.net.URL\n\nimport scala.io.Source\n\nimport edu.knowitall.common.Analysis\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.ollie.ScoredOllieExtractionInstance\nimport scopt.OptionParser\n\nobject OllieFeatureEvaluation {\n    /** Settings for OpenParse. */\n  abstract class Settings {\n    /** source file of scored extractions */\n    def inputFile: File\n\n    /** file to output; None means stdout */\n    def outputFile: Option[File]\n\n    /** confidence model url */\n    def confidenceModelUrl: URL\n  }\n\n  def main(args: Array[String]) = {\n    var settings = new Settings {\n      var inputFile: File = _\n      var outputFile: Option[File] = None\n      var confidenceModelUrl: URL = OllieConfidenceFunction.defaultModelUrl\n    }\n\n    val parser = new OptionParser(\"feature-eval\") {\n      opt(Some(\"c\"), \"confidence model\", \"<file>\", \"confidence model file\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.confidenceModelUrl = file.toURI.toURL\n      })\n\n      opt(\"o\", \"output\", \"output file (otherwise stdout)\", { path =>\n        val file = new File(path)\n        settings.outputFile = Some(file)\n      })\n\n      arg(\"input\", \"input dependencies file\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"input file does not exist: \" + path)\n        settings.inputFile = file\n      })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) = {\n    val confFunc = OllieConfidenceFunction.fromUrl(OllieFeatureSet, settings.confidenceModelUrl)\n\n    val extrs = using (Source.fromFile(settings.inputFile)) { source =>\n      for (\n        line <- source.getLines.toList;\n        val scored = ScoredOllieExtractionInstance.tabDeserialize(line);\n        val conf = confFunc(scored.inst)\n      ) yield (conf, scored)\n    }\n\n    val sorted = extrs.sortBy(-_._1).toList\n\n    val pyed = (sorted.head, 0, 1.0) +: Analysis.precisionYieldMeta(sorted zip sorted.map(_._2.score))\n\n    val featureNames = confFunc.featureSet.featureNames.filter(confFunc.featureWeights.get(_).isDefined).toList.sorted\n    using {\n      settings.outputFile match {\n        case Some(f) => new PrintWriter(f, \"UTF8\")\n        case None => new PrintWriter(System.out)\n      }\n    } { writer =>\n      writer.println((Iterable(\"score\", \"conf\", \"op-conf\", \"yield\", \"precision\",\n        \"extr\", \"enabler\", \"attrib\", \"sentence\", \"dependencies\") ++\n        featureNames).mkString(\"\\t\"))\n      writer.println(\"\\t\" * 10 + featureNames.map(confFunc.featureWeights(_).toString).mkString(\"\\t\"))\n    (pyed) foreach { case ((conf, scored), y, p) =>\n      val features =\n        for (\n          featureName <- featureNames;\n          val featureValue = confFunc.featureSet(featureName)(scored.inst)\n        ) yield featureValue\n\n      writer.println((Iterable(if (scored.score) 1 else 0,\n          conf,\n          scored.inst.extr.openparseConfidence,\n          y,\n          p,\n          scored.inst.extr.toString,\n          scored.inst.extr.enabler.isDefined.toString.toLowerCase,\n          scored.inst.extr.attribution.isDefined.toString.toLowerCase,\n          scored.inst.sent.text,\n          scored.inst.sent.serialize) ++ features).mkString(\"\\t\"))\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/confidence/OllieFeatureSet.scala",
    "content": "package edu.knowitall.ollie.confidence\n\nimport java.util.regex.Pattern\n\nimport scala.Array.canBuildFrom\nimport scala.annotation.implicitNotFound\nimport scala.collection.immutable.SortedMap\nimport scala.util.matching.Regex\n\nimport edu.knowitall.ollie.OllieExtractionInstance\nimport edu.knowitall.openparse.extract.Extraction.Part\nimport edu.knowitall.tool.conf.Feature\nimport edu.knowitall.tool.conf.FeatureSet\nimport edu.knowitall.tool.parse.graph.LabelEdgeMatcher\nimport edu.knowitall.tool.postag.Postagger\nimport scalaz.Scalaz._\n\nobject OllieFeatureSet extends FeatureSet[OllieExtractionInstance, Double](OllieFeatures.getFeatures)\n\n/** Features defined for OllieExtractionInstances */\nobject OllieFeatures {\n  type OllieFeature = Feature[OllieExtractionInstance, Double]\n\n  implicit def boolToDouble(bool: Boolean) = if (bool) 1.0 else 0.0\n\n  val weirdPunct = Pattern.compile(\".*[:!@#$%^&*{};`<>]+.*\")\n  val prepTag = Pattern.compile(\"IN|TO|WP\")\n  val ingStart = Pattern.compile(\"^[a-zA-Z]+ing.*\")\n  val relationVerb = Pattern.compile(\"VB|VBD|VBZ|VBN|VBP|MD\")\n\n  // Whether relation nodes (ignore template modifications) is a subinterval of the sentence.\n  object nonContinuousRel extends OllieFeature(\"non-contiguous rel\") {\n    val trailingPrep = new Regex(\" (?:\" + Postagger.prepositions.mkString(\"|\") + \")$\")\n    val leadingBe = new Regex(\"^be \")\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val trimmed = leadingBe.replaceAllIn(trailingPrep.replaceAllIn(inst.extr.rel.text, \"\"), \"\")\n      !inst.sent.text.contains(trimmed)\n    }\n  }\n\n  // Whether two nodes in the relation are `length` tokens apart in the sentence.\n  class gapInRel(length: Int) extends OllieFeature(\"gap of \" + length + \" in rel\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.nodes.toSeq.sliding(2).exists { case Seq(x, y) =>\n        x.indices.distance(y.indices) > 10\n      }\n    }\n  }\n\n  object sentenceHasQuestionMark extends OllieFeature(\"sentence has question mark\") {\n    val hasQuestionMark = Pattern.compile(\".*\\\\?.*\")\n    override def apply(inst: OllieExtractionInstance): Double = {\n      if (hasQuestionMark.matcher(inst.extr.text).matches()) 1.0 else 0.0\n    }\n  }\n\n  // is there a verb at the start of the sentence, or immediately after a comma?\n  object imperative extends OllieFeature(\"sentence is imperative\") {\n    private val verbStart = Pattern.compile(\"VB.*\")\n    override def apply(inst: OllieExtractionInstance): Double = {\n      import scalaz._\n      import Scalaz._\n\n      val postagZipper = inst.sent.nodes.iterator.map(_.postag).toList.toZipper\n\n      // Assume the sentence starts with a comma to simplify the computation:\n      // pair every token with the one before it, pairing the start with a comma.\n      val boolean = postagZipper.map(_.positions.toStream.exists { zipper =>\n        zipper.previous match {\n          case None => verbStart.matcher(zipper.focus).matches()\n          case Some(z) if z.focus == \",\" => verbStart.matcher(zipper.focus).matches()\n          case _ => false\n        }\n      }).getOrElse(false)\n\n      boolean\n    }\n  }\n\n  // does arg2 contain an infinitive?\n  object arg2ContainsInfinitive extends OllieFeature(\"arg2 contains infinitive\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val postags = inst.extr.arg2.nodes.iterator.map(_.postag).toStream\n\n      import scalaz._\n      import Scalaz._\n\n      val boolean = postags.toZipper.map(_.positions.toStream.exists { zipper =>\n        zipper.previous match {\n          case Some(prev) => prev.focus == \"TO\" && zipper.focus.startsWith(\"VB\")\n          case None => false\n        }\n      }).getOrElse(false)\n\n      boolean\n    }\n  }\n\n  // is rel text a contiguous string from the sentence?\n  object relIsContiguous extends OllieFeature(\"rel is contiguous\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      (inst.sent.nodes.iterator.map(_.text).mkString(\" \")) contains inst.extr.rel.text\n    }\n  }\n\n  // is there a prep right before arg1?\n  object prepRightBeforeArg1 extends OllieFeature(\"prep right before arg1\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val arg1Span = inst.extr.arg1.span\n      val rightBeforeArg1 = inst.sent.nodes.find(node => node.indices < arg1Span && node.indices.borders(arg1Span))\n\n      rightBeforeArg1 match {\n        case Some(node) => prepTag.matcher(node.postag).matches()\n        case None => false\n      }\n    }\n  }\n\n  // does rel start with \"be\"?\n  object relStartsWithBe extends OllieFeature(\"rel starts with be\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.rel.nodes.headOption match {\n        case Some(node) => node.text startsWith \"be \"\n        case None => false\n      }\n    }\n  }\n\n  // is there a prep right after arg2? (IN or TO pos tag)\n  object prepRightAfterArg2 extends OllieFeature(\"prep right after arg2\") {\n    def apply(inst: OllieExtractionInstance): Double = {\n      val arg2Span = inst.extr.arg2.span\n\n      val rightAfterArg2 = inst.sent.nodes.find { node =>\n        node.indices > arg2Span && (node.indices borders arg2Span)\n      }\n\n      rightAfterArg2 match {\n        case Some(node) => prepTag.matcher(node.postag).matches\n        case None => false\n      }\n    }\n  }\n\n  class ArgIsProper(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + \" is proper\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      getPart(inst).nodes.forall(_.isProperNoun)\n    }\n  }\n\n  object sentStartsWithExtr extends OllieFeature(\"sentence starts with extraction\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.span.start == 0\n    }\n  }\n\n  object extrSpansSent extends OllieFeature(\"extraction spans sentence\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.span == inst.sent.interval\n    }\n  }\n\n  object sentEndsWithExtr extends OllieFeature(\"sentence ends with extraction\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.span.end == inst.sent.interval.end\n    }\n  }\n\n  object sentBeginsWithArg1 extends OllieFeature(\"sentence begins with arg1\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.arg1.span.start == 0\n    }\n  }\n\n  object sentEndsWithArg2 extends OllieFeature(\"sentence ends with arg2\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val rightNodes = inst.sent.nodes.drop(inst.extr.arg2.span.end)\n\n      // all trailing characters are terminating punctuation\n      rightNodes.forall(node => node.postag == \".\" || node.postag == \"?\")\n    }\n  }\n\n  object openParseConfidence extends OllieFeature(\"openparse confidence\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      scala.math.min(1.0, inst.extr.openparseConfidence)\n    }\n  }\n\n  object arg2BeforeArg1 extends OllieFeature(\"arg2 before arg1\") {\n    override def apply(inst: OllieExtractionInstance): Double =\n      inst.extr.arg2.span < inst.extr.arg1.span && !(inst.extr.arg1.span intersects inst.extr.arg2.span)\n  }\n\n  object arg2BeforeRel extends OllieFeature(\"arg2 before rel\") {\n    override def apply(inst: OllieExtractionInstance): Double =\n      inst.extr.arg2.span < inst.extr.rel.span && !(inst.extr.rel.span intersects inst.extr.arg2.span)\n  }\n\n  object argsStartEndWithNoun extends OllieFeature(\"args start and end with noun\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val okStarts = Set(\"PR\", \"NN\", \"DT\", \"CD\", \"JJ\")\n      val okEnds = Set(\"NN\", \"CD\", \"JJ\")\n\n      val boolean = (for {\n        arg1HeadTag <- inst.extr.arg1.nodes.headOption.map(_.postag)\n        arg2HeadTag <- inst.extr.arg2.nodes.headOption.map(_.postag)\n        arg1LastTag <- inst.extr.arg1.nodes.lastOption.map(_.postag)\n        arg2LastTag <- inst.extr.arg2.nodes.lastOption.map(_.postag)\n      } yield {\n        okStarts(arg1HeadTag) && okStarts(arg2HeadTag) &&\n          okEnds(arg1LastTag) && okEnds(arg2LastTag)\n      }).getOrElse(false)\n\n      boolean\n    }\n  }\n\n  object ifRightBeforeArg1 extends OllieFeature(\"if right before arg1\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val nodesSeq = inst.sent.nodes.take(inst.extr.arg1.span.start)\n      nodesSeq.lastOption.exists(_.text equalsIgnoreCase \"if\")\n    }\n  }\n\n  object arg1ContainsPronoun extends OllieFeature(\"arg1 contains pronoun\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.arg1.nodes.exists(_.isPronoun)\n    }\n  }\n\n  object arg2ContainsPronoun extends OllieFeature(\"arg2 contains pronoun\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.arg2.nodes.exists(_.isPronoun)\n    }\n  }\n\n  object relEndsWithOf extends OllieFeature(\"rel ends with of\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      // of will be an edge in the collapsed graph so it's not represented by a node\n      val boolean = inst.extr.rel.text.drop(inst.extr.rel.text.lastIndexOf(\" \") + 1) == \"of\"\n\n      boolean\n    }\n  }\n\n  object relContainsVerb extends OllieFeature(\"rel contains verb\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val boolean = inst.extr.rel.nodes exists (_.isVerb)\n      boolean\n    }\n  }\n\n  object relContainsVBG extends OllieFeature(\"rel contains gerund\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val boolean = inst.extr.rel.nodes exists (_.isVerbGerund)\n      boolean\n    }\n  }\n\n  class BadCharacters(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + \" bad characters\") {\n    val notCapsPattern = Pattern.compile(\"[^A-Z]\")\n    val weirdChars = Pattern.compile(\"[^AEIOUYaeiouy0-9]\")\n    override def apply(inst: OllieExtractionInstance): Double = {\n      // are there more than 5 caps in arg1?\n      if (notCapsPattern.matcher(getPart(inst).text).replaceAll(\"\").length() > 5)\n        1.0\n      // are there not enough good characters?\n      else if (weirdChars.matcher(getPart(inst).text).replaceAll(\"\").length() < 2)\n        1.0\n      else\n        0.0\n    }\n  }\n\n  object longRelation extends OllieFeature(\"long relation\") {\n    override def apply(inst: OllieExtractionInstance) = {\n      val boolean = inst.extr.rel.text.split(\" \").length > 10\n\n      boolean\n    }\n  }\n\n  object hypWordsInRel extends OllieFeature(\"hyp words in rel\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val hypWords = Set(\"can\", \"would\", \"could\", \"might\")\n      val relTextWords = inst.extr.rel.text.split(\" \").toSet\n      inst.sent.nodes.exists { node =>\n        (hypWords contains node.text.toLowerCase) &&\n          !(relTextWords contains node.text.toLowerCase)\n      } match {\n        case true => 1.0\n        case false => 0.0\n      }\n    }\n  }\n\n  /*\n   * Tries to capture vacuous extractions, like\n   * Bob; was for; example\n   * by specifying pairs like (\"for\",\"example\") to look for adjacent to each other between rel-arg2\n   */\n  object vacuousExtraction extends OllieFeature(\"vacuous extraction\") {\n    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\"))\n    def apply(inst: OllieExtractionInstance): Double = {\n      val relEnd = inst.extr.rel.text.drop(inst.extr.rel.text.lastIndexOf(\" \") + 1)\n      val arg2Strings = inst.extr.arg2.text.split(\" \").map(_.toLowerCase())\n      if (arg2Strings.size > 2)\n        false\n      else {\n        vacuoi.exists(p => relEnd.startsWith(p._1) && arg2Strings.contains(p._2.toLowerCase())) match {\n          case true => 1.0\n          case false => 0.0\n        }\n      }\n    }\n  }\n\n  // Is there a preposition in the span of arg2?\n  object prepInArg2 extends OllieFeature(\"prep in arg2\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.extr.arg2.nodes.exists(node => prepTag.matcher(node.postag).matches)\n    }\n  }\n\n  // does the pattern \"... NN* ... VB* ... NN* ... \" exist in arg1 or arg2?\n  class NounVerbNounInArg(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(\"noun-verb-noun in \" + partName) {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val tokenSet = getPart(inst).nodes\n      val tokens = tokenSet.iterator.toSeq\n      val firstNN = tokens.indexWhere(_.isNoun)\n      val firstVB = tokens.drop(firstNN).indexWhere(_.isVerb)\n      val secondNN = tokens.drop(firstNN + firstVB).indexWhere(_.isNoun)\n\n      def tokensExist = !Seq(firstNN, firstVB, secondNN).exists(_ == -1)\n      def correctIndices = (firstNN < (firstNN + firstVB) < (firstNN + firstVB + secondNN))\n      tokensExist && correctIndices\n    }\n  }\n\n  class ArgBordersAppos(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + \" borders appositive\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      val nodes = getPart(inst).nodes\n      val neighbors = List(nodes.head, nodes.last).flatMap(inst.sent.graph.edges(_))\n      neighbors exists (_.label == \"appos\")\n    }\n  }\n\n  object nnPatternEdge extends OllieFeature(\"nn edges in pattern\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.pat.pattern.baseEdgeMatchers exists {\n        case m: LabelEdgeMatcher => m.label == \"nn\"\n        case _ => false\n      }\n    }\n  }\n\n  object semanticPatternConstraint extends OllieFeature(\"semantic constraints in pattern\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.pat.pattern.semantic\n    }\n  }\n\n  object patternPrepMismatch extends OllieFeature(\"prep mismatch in pattern\") {\n    override def apply(inst: OllieExtractionInstance): Double = {\n      inst.pat.prepMismatch\n    }\n  }\n\n  // features being used\n  val features: List[OllieFeature] = List(\n    sentenceHasQuestionMark,\n    imperative,\n    arg2ContainsInfinitive,\n    relIsContiguous,\n    prepRightBeforeArg1,\n    relStartsWithBe,\n    prepRightAfterArg2,\n    new ArgIsProper(_.extr.arg1, \"arg1\"),\n    new ArgIsProper(_.extr.arg2, \"arg2\"),\n    sentStartsWithExtr,\n    sentBeginsWithArg1,\n    sentBeginsWithArg1,\n    sentEndsWithArg2,\n    openParseConfidence,\n    arg2BeforeArg1,\n    arg2BeforeRel,\n    argsStartEndWithNoun,\n    ifRightBeforeArg1,\n    arg1ContainsPronoun,\n    arg2ContainsPronoun,\n    relEndsWithOf,\n    relContainsVerb,\n    relContainsVBG,\n    new BadCharacters(_.extr.arg1, \"arg1\"),\n    new BadCharacters(_.extr.rel, \"rel\"),\n    new BadCharacters(_.extr.arg2, \"arg2\"),\n    longRelation,\n    hypWordsInRel,\n    vacuousExtraction,\n    prepInArg2,\n    new NounVerbNounInArg(_.extr.arg1, \"arg1\"),\n    new NounVerbNounInArg(_.extr.arg2, \"arg2\"),\n    new ArgBordersAppos(_.extr.arg1, \"arg1\"),\n    new ArgBordersAppos(_.extr.arg2, \"arg2\"),\n    new gapInRel(10),\n    nonContinuousRel,\n    nnPatternEdge,\n    semanticPatternConstraint,\n    patternPrepMismatch)\n\n  def getFeatures(): SortedMap[String, OllieFeature] = {\n    (for (f <- features) yield (f.name -> Feature.from(f.name, f.apply _)))(scala.collection.breakOut)\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/confidence/train/CrossValidateConfidence.scala",
    "content": "package edu.knowitall.ollie.confidence.train\n\nimport java.io.File\n\nimport scala.io.Source\n\nimport edu.knowitall.common.Analysis\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.ollie.ScoredOllieExtractionInstance\nimport edu.knowitall.ollie.confidence.OllieFeatureSet\nimport edu.knowitall.tool.conf.BreezeLogisticRegressionTrainer\nimport scopt.mutable.OptionParser\n\nobject CrossValidateConfidence {\n  def main(args: Array[String]) {\n    object settings extends Settings {\n      var inputFile: File = _\n      var outputFile: Option[File] = None\n    }\n\n    val parser = new OptionParser(\"scoreextr\") {\n      arg(\"labelled\", \"labelled extractions\", { path: String => settings.inputFile = new File(path) })\n      argOpt(\"output\", \"output file\", { path: String => settings.outputFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n   abstract class Settings {\n     def inputFile: File\n     def outputFile: Option[File]\n\n     val splits = 10\n   }\n\n\n  def run(settings: Settings) = {\n    val trainer = new BreezeLogisticRegressionTrainer(OllieFeatureSet)\n\n    val data =\n      using (Source.fromFile(settings.inputFile)) { source =>\n        (source.getLines map (ScoredOllieExtractionInstance.tabDeserialize)).toList\n      }\n\n    val splits = data.iterator.sliding(data.size / settings.splits, data.size / settings.splits).withPartial(false)\n    val results = for {\n      split <- splits.toList\n\n      val test = split\n      val training = data filterNot (test contains _)\n\n      val classifier = trainer.train(training)\n    } yield {\n      for (example <- test) yield {\n        val conf = classifier.apply(example.inst)\n        val correct =\n          if (conf >= 0.5 && example.score) true\n          else if (conf < 0.5 && !example.score) true\n          else false\n        (conf, correct)\n      }\n    }\n\n    val pys = results.map { list =>\n      val py = Analysis.precisionYield(list.sortBy(-_._1).map(_._2))\n\n      py\n    }\n\n    val aucs = pys.zipWithIndex map { case (py, i) =>\n      println(\"Split \" + i)\n      py foreach { case (y, p) =>\n        println(Iterable(y.toString, \"%1.4f\" format p).mkString(\"\\t\"))\n      }\n\n      val auc = Analysis.areaUnderCurve(py)\n      println(\"auc: \" + auc)\n\n      println()\n      auc\n    }\n\n    var auc = breeze.linalg.mean(aucs)\n    println(\"avg auc: \" + auc)\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/confidence/train/TrainOllieConfidence.scala",
    "content": "\npackage edu.knowitall.ollie.confidence.train\n\nimport java.io.File\n\nimport scala.io.Source\n\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.ollie.ScoredOllieExtractionInstance\nimport edu.knowitall.ollie.confidence.OllieFeatureSet\nimport edu.knowitall.tool.conf.BreezeLogisticRegressionTrainer\nimport scopt.mutable.OptionParser\n\nobject TrainOllieConfidence {\n  def main(args: Array[String]) {\n    object settings extends Settings {\n      var inputFile: File = _\n      var outputFile: Option[File] = None\n    }\n\n    val parser = new OptionParser(\"scoreextr\") {\n      arg(\"labelled\", \"labelled extractions\", { path: String => settings.inputFile = new File(path) })\n      argOpt(\"output\", \"output file\", { path: String => settings.outputFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n   abstract class Settings {\n     def inputFile: File\n     def outputFile: Option[File]\n   }\n\n  def run(settings: Settings) = {\n    val trainer = new BreezeLogisticRegressionTrainer(OllieFeatureSet)\n\n    val data =\n      using (Source.fromFile(settings.inputFile)) { source =>\n        (source.getLines map (ScoredOllieExtractionInstance.tabDeserialize)).toList\n      }\n\n    val classifier = trainer.train(data)\n    settings.outputFile match {\n      case Some(file) => classifier.saveFile(file)\n      case None =>\n        classifier.save(System.out)\n    }\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/ollie/output/BratOutput.scala",
    "content": "package edu.knowitall.ollie.output\n\nimport edu.knowitall.ollie.OllieExtractionInstance\nimport edu.knowitall.openparse.extract.Extraction\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.ollie.ExtractionPart\nimport edu.knowitall.tool.segment.Segment\nimport java.io.PrintWriter\n\nclass BratOutput(extractor: String => Iterable[OllieExtractionInstance]) {\n  def process(sentences: Iterable[Segment], writer: PrintWriter) = {\n    val document = new Document()\n    for {\n      Segment(text, offset) <- sentences \n      inst <- extractor(text)\n      entry <- document.annotations(inst, offset)\n    } {\n      writer.println(entry)\n    }\n  }\n\n  class Document {\n    var entityIndex = 0\n    var relationIndex = 0\n\n    def annotations(inst: OllieExtractionInstance, sentenceCharacterOffset: Int) = {\n      def partToAnnotation(inst: OllieExtractionInstance, part: Extraction.Part, partName: String) = {\n        val tokens = inst.sentence.nodes.toList.slice(part.span.start, part.span.end)\n        val charInterval = Interval.open(tokens.head.offset, tokens.last.offsets.end)\n        partName + \" \" + (sentenceCharacterOffset + charInterval.start) + \" \" + (sentenceCharacterOffset + charInterval.end) + \"\\t\" + inst.sentence.text.substring(charInterval.start, charInterval.end)\n      }\n\n      case class LabelledEntry(label: String, entry: String)\n      def label(identifier: Char, index: Int, entry: String) = LabelledEntry(identifier.toString + index, entry)\n\n      val entries = {\n        val arguments = List(inst.extr.arg1, inst.extr.arg2) map { arg =>\n          val labelled = label('T', entityIndex, partToAnnotation(inst, arg, \"Argument\"))\n          entityIndex += 1\n          labelled\n        }\n        val relation = {\n          val labelled = label('T', entityIndex, partToAnnotation(inst, inst.extr.rel, \"Relation\"))\n          entityIndex += 1\n          labelled\n        }\n\n        val entities = relation :: arguments\n\n        val relations = arguments zip List(\"Arg1\", \"Arg2\") map {\n          case (entry, edge) =>\n            val labelled = label('R', relationIndex, edge + \"-of Arg1:\" + relation.label + \" Arg2:\" + entry.label)\n            relationIndex += 1\n            labelled\n        }\n\n        entities ::: relations\n      }\n\n      entries map {\n        case LabelledEntry(label, entry) => label + \"\\t\" + entry\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/AnalyzePatterns.scala",
    "content": "package edu.knowitall.openparse\n\nimport java.io.{PrintWriter, File}\n\nimport scala.Option.option2Iterable\nimport scala.collection.mutable\nimport scala.io.Source\n\nimport edu.knowitall.collection.immutable.graph.pattern.DirectedEdgeMatcher\nimport edu.knowitall.common.Resource\nimport edu.knowitall.tool.parse.graph.{PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyGraph}\nimport edu.knowitall.ollie.Ollie.stemmer\n\nobject AnalyzePatterns {\n  def main(args: Array[String]) {\n    val patternedFilePath = args(0)\n    val outputFilePath = args(1)\n\n    println(\"Counting pattern occurrence...\")\n    val patterns = mutable.HashMap[String, Int]().withDefaultValue(0)\n    Resource.using(Source.fromFile(patternedFilePath, \"UTF8\")) { source =>\n      for (line <- source.getLines) {\n        val Array(_, _, _, _, pattern, _, _, _*) = line.split(\"\\t\", -1)\n        patterns += pattern -> (patterns(pattern) + 1)\n      }\n    }\n\n    println(\"Grouping patterns...\")\n    Resource.using(new PrintWriter(new File(outputFilePath), \"UTF8\")) { writer =>\n      val ordered = patterns.toList.sortBy(_._2)(implicitly(Ordering[Int]).reverse)\n      for ((pattern, count) <- ordered.filter(_._2 > 100)) {\n        println(count + \":\" + pattern)\n        Resource.using(Source.fromFile(patternedFilePath, \"UTF8\")) { source =>\n          writer.println(pattern + \"\\t\" + count)\n          for (line <- source.getLines) {\n            val Array(rel, arg1, arg2, lemmas, p, sentence, deps, _*) = line.split(\"\\t\", -1)\n            if (p == pattern) {\n              writer.println(Iterable(rel, arg1, arg2, lemmas).mkString(\"\\t\"))\n              writer.println(sentence)\n              writer.println(deps)\n              writer.println()\n            }\n          }\n        }\n      }\n\n      println()\n    }\n  }\n}\n\nobject CountPatternComponents {\n  def main(args: Array[String]) {\n    val patternedFilePath = args(0)\n\n    val edgeCounts = mutable.HashMap[String, Int]().withDefaultValue(0)\n    val postagCounts = mutable.HashMap[String, Int]().withDefaultValue(0)\n    Resource.using(Source.fromFile(patternedFilePath, \"UTF8\")) { source =>\n      for (line <- source.getLines) {\n        val Array(_, _, _, _, pickledPattern, _, _, _*) = line.split(\"\\t\", -1)\n        val pattern = new ExtractorPattern(DependencyPattern.deserialize(pickledPattern))\n        val labels = (pattern.edgeMatchers.toList).flatMap { _ match {\n              case e: DirectedEdgeMatcher[_] if e.matcher.isInstanceOf[LabelEdgeMatcher] =>\n                Some(e.matcher.asInstanceOf[LabelEdgeMatcher].label)\n              case _ => None\n            }\n        }\n        val postags = (pattern.baseNodeMatchers.toList).collect {\n          case m: PostagNodeMatcher => m.postag\n        }\n\n        for (l <- labels) {\n          edgeCounts += l -> (edgeCounts(l)+1)\n        }\n\n        for (postag <- postags) {\n          postagCounts += postag -> (postagCounts(postag)+1)\n        }\n      }\n    }\n\n    println(\"Postag counts: \")\n    for ((k, v) <- postagCounts.toList.sortBy(_._2).reverse) {\n      println(k + \"\\t\" + v)\n    }\n\n    println()\n    println(\"Edge counts: \")\n    for ((k, v) <- edgeCounts.toList.sortBy(_._2).reverse) {\n      println(k + \"\\t\" + v)\n    }\n  }\n}\n\nobject CountSentenceComponents {\n  def main(args: Array[String]) {\n    val patternedFilePath = args(0)\n\n    val edgeCounts = mutable.HashMap[String, Int]().withDefaultValue(0)\n    val postagCounts = mutable.HashMap[String, Int]().withDefaultValue(0)\n    val pieceCounts = mutable.HashMap[String, Int]().withDefaultValue(0)\n    Resource.using(Source.fromFile(patternedFilePath, \"UTF8\")) { source =>\n      for (line <- source.getLines) {\n        val Array(_, _, _, _, _, _, pickledGraph, _*) = line.split(\"\\t\", -1)\n        val graph = DependencyGraph.deserialize(pickledGraph)\n        val labels = (graph.graph.edges).toList.map(_.label )\n        val postags = (graph.graph.vertices).toList.map(_.postag)\n\n        for (l <- labels) {\n          edgeCounts += l -> (edgeCounts(l)+1)\n        }\n\n        for (postag <- postags) {\n          postagCounts += postag -> (postagCounts(postag)+1)\n        }\n\n        for (edge <- graph.graph.edges) {\n          val piece1 = edge.source.postag + \" \" + edge.label + \" \" + edge.dest.postag\n          val piece2 = edge.dest.postag + \" \" + edge.label + \" \" + edge.source.postag\n\n          pieceCounts += piece1 -> (pieceCounts(piece1)+1)\n          pieceCounts += piece2 -> (pieceCounts(piece2)+1)\n        }\n      }\n    }\n\n    println(\"Postag counts: \")\n    for ((k, v) <- postagCounts.toList.sortBy(_._2).reverse) {\n      println(k + \"\\t\" + v)\n    }\n\n    println()\n    println(\"Edge counts: \")\n    for ((k, v) <- edgeCounts.toList.sortBy(_._2).reverse) {\n      println(k + \"\\t\" + v)\n    }\n\n    println()\n    println(\"Piece counts: \")\n    for ((k, v) <- pieceCounts.toList.sortBy(_._2).reverse) {\n      println(k + \"\\t\" + v)\n    }\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/BuildPatterns.scala",
    "content": "package edu.knowitall.openparse\n\nimport java.io.{PrintWriter, File}\n\nimport scala.collection.immutable\nimport scala.io.Source\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.collection.immutable.graph.pattern.{Matcher, Pattern, CaptureNodeMatcher}\nimport edu.knowitall.collection.immutable.graph.{UpEdge, DownEdge, Bipath}\nimport edu.knowitall.common.Timing.{time, Seconds}\nimport edu.knowitall.tool.parse.graph.{PostagNodeMatcher, DependencyPattern, DependencyNodeMatcher, DependencyNode, DependencyGraph}\nimport edu.knowitall.tool.stem.MorphaStemmer\n\nimport scalaz._\nimport Zipper._\nimport scopt.OptionParser\n\n/** A main method for creating patterns from a lemma grep.  A lemma grep is\n  * a file that has an extraction and a sentence that contains the lemmas\n  * in the extraction.\n  *\n  * @author Michael Schmitz\n  */\nobject BuildPatterns {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  val CHUNK_SIZE = 100000\n\n  class NoRelationNodeException(message: String) extends NoSuchElementException(message)\n  class Settings {\n    var sourcePath: String = _\n    var destPath: Option[String] = None\n    var length = Option.empty[Int]\n    var parallel = false\n  }\n\n  def main(args: Array[String]) {\n    val settings = new Settings\n\n    val parser = new OptionParser(\"buildpats\") {\n      arg(\"source\", \"source\", { v: String => settings.sourcePath = v })\n      argOpt(\"dest\", \"dest\", { v: String => settings.destPath = Some(v) })\n      opt(\"p\", \"parallel\", \"run multithreaded\", { settings.parallel = true })\n      intOpt(\"l\", \"length\", \"<length>\", \"maximum number of edges in the patterns\", { l: Int => settings.length = Some(l) })\n    }\n    if (parser.parse(args)) {\n      logger.debug(\"info: \" + args.mkString(\" \"))\n      main(settings)\n    }\n  }\n\n def main(settings: Settings) {\n   def validGraph(graph: DependencyGraph) = {\n     // make sure there is a verb\n     graph.nodes.exists(node => \"(?i)^VB\".r.findFirstIn(node.postag).isDefined)\n   }\n\n    // file with dependencies\n    val source = Source.fromFile(settings.sourcePath, \"UTF-8\")\n    val writer = settings.destPath.map(dest => new PrintWriter(new File(dest), \"UTF8\")).getOrElse(new PrintWriter(System.out))\n\n    logger.info(\"chunk size: \" + CHUNK_SIZE)\n    logger.info(\"pattern length: \" + settings.length)\n\n    var index = 0\n    for (lines <- source.getLines.grouped(CHUNK_SIZE)) {\n      @volatile var count = 0\n\n      val group = if (settings.parallel) lines.par else lines\n\n      val ms = time(group.foreach { line =>\n        val Array(rel, arg1, arg2, lemmaString, text, _/*lemmas*/, _/*postags*/, _/*chunks*/, deps) = line.split(\"\\t\")\n        val lemmas = lemmaString.split(\"\\\\s+\").toSet\n\n        // todo: push stemming forward in the process\n        try {\n          val graph = DependencyGraph.deserialize(deps).map { node =>\n            node.lemmatize(MorphaStemmer)\n          }.collapseNounGroups().collapseNNPOf.simplifyPostags\n\n          if (!validGraph(graph)) {\n            logger.warn(\"Invalid graph (no verb?): \" + graph.text + \"\\t\" + graph.serialize)\n          }\n          else {\n            val patterns = findRelationPatterns(graph, rel, arg1, arg2, lemmas, settings.length)\n            for ((pattern, slots) <- patterns; if pattern.valid) {\n              if (!settings.length.isDefined || pattern.nodeMatchers.length <= settings.length.get) {\n                writer.println((List(rel, arg1, arg2, lemmas.mkString(\" \"), pattern, text, deps) ::: slots).mkString(\"\\t\"))\n                count += 1\n              }\n            }\n          }\n        }\n        catch {\n          case e: NoRelationNodeException => logger.warn(e.toString)\n          case e: DependencyGraph.SerializationException =>\n            logger.error(\"could not deserialize graph: \" + deps, e)\n        }\n      })\n\n      logger.info(\"chunk \" + index + \": \" + count + \" items in \" + Seconds.format(ms))\n      writer.flush()\n\n      index += 1\n    }\n\n    logger.info(\"done.\")\n\n    source.close\n    writer.close\n  }\n\n   def findBipaths(lemmas: Set[String], graph: DependencyGraph, maxLength: Option[Int]) = {\n    // build a set of all the possible combinations that don't use a\n    // node with the same text twice\n    def combinations(nodes: Set[DependencyNode]) = {\n      def rec(nodes: Seq[(String, Set[DependencyNode])], combs: Set[DependencyNode]): Set[Set[DependencyNode]] = nodes match {\n        case Seq((text, set), rest @ _*) => set.flatMap(item => rec(rest, combs + item))\n        case Seq() => Set(combs)\n      }\n\n      if (nodes.map(_.text).size == nodes.size) {\n        // there are no duplicate nodes\n        Set(nodes)\n      } else {\n        // build combinations\n        rec(nodes.groupBy(_.text).toSeq, Set())\n      }\n    }\n\n    val allNodes = lemmas.flatMap { lemma =>\n      // find all exact matches\n      val exacts = graph.graph.vertices.filter(_.text == lemma)\n\n      // or one partial match\n      if (exacts.isEmpty) graph.graph.vertices.find(_.text.contains(lemma)) map { List(_) } getOrElse List.empty\n      else exacts\n    }\n\n    combinations(allNodes).flatMap { nodes =>\n      val paths = graph.graph.bipaths(nodes, maxLength)\n\n      // restrict to paths that go up and then down\n      paths.filter(bipath => bipath.path.length > 0 &&\n          bipath.path.dropWhile(_.isInstanceOf[UpEdge[_]]).dropWhile(_.isInstanceOf[DownEdge[_]]).isEmpty)\n    }\n  }\n\n  class InvalidBipathException(message: String) extends RuntimeException(message)\n  def findPattern(graph: DependencyGraph,\n    lemmas: Set[String],\n    replacements: Map[String, String],\n    maxLength: Option[Int]) = {\n\n    def valid(bip: Bipath[DependencyNode]) = {\n      def params = replacements.toString+\"; \"+bip.toString\n\n      // we don't have any \"punct\" edges\n      !bip.edges.find(_.label == \"punct\").map { edge =>\n        logger.debug(\"invalid: punct edge '\"+edge+\"': \"+bip)\n      }.isDefined &&\n      // we don't have any \"dep\" edges\n      !bip.edges.find(_.label == \"dep\").map { edge =>\n        logger.debug(\"invalid: dep edge '\"+edge+\"': \"+bip)\n      }.isDefined &&\n      // all edges are simple word characters\n      !bip.edges.find(!_.label.matches(\"\\\\w+\")).map { edge =>\n        logger.debug(\"invalid: special character in edge '\"+edge+\"': \"+bip)\n      }.isDefined\n    }\n\n    // find paths containing lemma\n    val bipaths = findBipaths(lemmas, graph, maxLength) filter valid\n\n    bipaths.flatMap { bip =>\n      import scalaz._\n      import Scalaz._\n\n      val zipper = DependencyPattern.create(bip).matchers.toZipper.get\n\n      val zipperReplaced = try { Some((zipper /: replacements){\n        case (zipper, (target, rep)) =>\n          val zipperMatch =\n            // find an exact match\n            zipper.findZ {\n              case m: DependencyNodeMatcher => m.text == target\n              case _ => false\n           } orElse\n            // find a partial match\n            zipper.findZ {\n              case m: DependencyNodeMatcher => m.text contains target\n              case _ => false\n            } getOrElse {\n              throw new InvalidBipathException(\"invalid: couldn't find replacement '\"+rep+\"': \"+bip)\n            }\n\n          // ensure valid postags\n          if (!OpenParse.VALID_ARG_POSTAG.contains(zipperMatch.focus.asInstanceOf[DependencyNodeMatcher].postag))\n            throw new InvalidBipathException(\"invalid: invalid arg postag '\"+zipper.focus+\"': \"+bip)\n\n          // make replacements\n          zipperMatch.update(new ArgumentMatcher(rep))\n      })} catch {\n        case e: InvalidBipathException => logger.debug(e.getMessage); None\n      }\n\n      zipperReplaced.map(zipper => new ExtractorPattern(zipper.toStream.toList))\n    }\n  }\n\n  /**\n    * Find patterns in the graph that connect arg1, rel, and arg2.\n    *\n    * @param  graph  the graph to find the pattern in.\n    * @param  rel  the relation\n    * @param  arg1  the argument 1\n    * @param  arg2  the argument 2\n    * @param  lemmas  all lemmas in `rel`, `arg1`, and `arg2`\n    * @param  maxLength  the maximum path length, in edges\n    */\n  def findRelationPatterns(graph: DependencyGraph, rel: String, arg1: String, arg2: String, lemmas: Set[String], maxLength: Option[Int] = None) = {\n    findPatterns(graph, lemmas, Map(arg1 -> \"arg1\", arg2 -> \"arg2\"), rel, maxLength)\n  }\n\n  def findPatterns(graph: DependencyGraph, lemmas: Set[String], replacements: Map[String, String], rel: String, maxLength: Option[Int]): List[(ExtractorPattern, List[String])] = {\n    def valid(pattern: Pattern[DependencyNode]) =\n      // make sure arg1 comes first\n      pattern.matchers.find(_\n        .isInstanceOf[CaptureNodeMatcher[_]]).map(_\n        .asInstanceOf[CaptureNodeMatcher[_]].alias == \"arg1\").getOrElse(false)\n\n    val patterns = findPattern(graph, lemmas, replacements, maxLength)\n\n    val filtered = patterns.filter(valid).toList\n\n    val relLemmas = rel.split(\" \").toList filter lemmas\n\n    // find the best part to replace with rel\n    filtered.map { pattern =>\n      import scalaz._\n      import Scalaz._\n\n      def replaceRels(zipper: Zipper[Matcher[DependencyNode]]) = {\n        def replaceRels(zipper: Zipper[Matcher[DependencyNode]], rels: List[(String, Int)]): Zipper[Matcher[DependencyNode]] = rels match {\n          case Nil => zipper\n          case (rel, i) :: xs =>\n            // find the rel node\n            val relZipper = zipper.findZ(_ match {\n              case nm: DependencyNodeMatcher => nm.text.split(\"\\\\s+\").contains(rel)\n              case _ => false\n            }) getOrElse {\n              throw new NoRelationNodeException(\"No relation node (\"+rel+\") in pattern: \" + pattern)\n            }\n\n            // replace rel\n            val postag = relZipper.focus.asInstanceOf[DependencyNodeMatcher].postag\n            val alias = if (i == 0 && xs.isEmpty) \"rel\" else \"rel\" + i\n            val updated = relZipper.update(new CaptureNodeMatcher(alias, new PostagNodeMatcher(postag)))\n\n            replaceRels(updated, xs)\n        }\n\n        replaceRels(zipper, relLemmas.zipWithIndex)\n      }\n\n      def replaceSlots(zipper: Zipper[Matcher[DependencyNode]]) = {\n        def replaceSlots(zipper: Zipper[Matcher[DependencyNode]], labels: List[String], index: Int): (Zipper[Matcher[DependencyNode]], List[String]) = {\n          def replaceSlot(zipper: Zipper[Matcher[DependencyNode]]) = {\n            val node = zipper.focus.asInstanceOf[DependencyNodeMatcher]\n            val postag = node.postag\n            (Zipper.zipper[Matcher[DependencyNode]](zipper.lefts, new CaptureNodeMatcher(\"slot\"+index, new PostagNodeMatcher(postag)), zipper.rights),\n                node.text)\n          }\n\n          zipper.findZ(_.isInstanceOf[DependencyNodeMatcher]) match {\n            case Some(z) => val (zipper, label) = replaceSlot(z)\n                    replaceSlots(zipper, label :: labels, index + 1)\n            case None => (zipper, labels)\n          }\n        }\n\n        replaceSlots(zipper, List(), 0)\n      }\n\n      val zipper = pattern.matchers.toZipper.get\n      val relZipper = replaceRels(zipper)\n      val (slotZipper, slotLabels) = replaceSlots(relZipper)\n\n      (new ExtractorPattern(slotZipper.toStream.toList), slotLabels)\n    }\n  }\n}\n\n/** A command line application to filter out only the patterns \n  * that occur more than the specific number of times.\n  *\n  * @author Michael Schmitz\n  */\nobject KeepCommonPatterns {\n  def main(args: Array[String]) {\n    val min = args(1).toInt\n    System.err.println(\"minimum pattern ocurrence: \"+min)\n\n    var rows = 0\n    var keepers = 0\n\n    var patterns = scala.collection.immutable.Map[String, Int]().withDefaultValue(0)\n    val firstSource = Source.fromFile(args(0), \"UTF8\")\n    for (line <- firstSource.getLines) {\n      val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split(\"\\t\")\n      rows += 1\n      patterns += pattern -> (patterns(pattern) + 1)\n    }\n    firstSource.close()\n\n    System.err.println(rows+\" rows\")\n    System.err.println(patterns.size+\" unique patterns\")\n\n    val secondSource = Source.fromFile(args(0), \"UTF8\")\n    for (line <- secondSource.getLines) {\n      val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split(\"\\t\")\n      if (patterns(pattern) >= min) {\n        keepers += 1\n        println(line)\n      }\n    }\n    secondSource.close()\n\n    System.err.println(keepers+\" patterns that occur more than \"+min+\"times\")\n  }\n}\n\n/** A command line application to filter out only the patterns \n  * that are found with the specific number of seeds. \n  *\n  * @author Michael Schmitz\n  */\nobject KeepDiversePatterns {\n  abstract class Settings {\n    def inputFile: File\n    def min: Int\n    def outputFile: Option[File]\n    def debugFile: Option[File]\n  }\n\n  def main(args: Array[String]) {\n    val settings = new Settings {\n      var inputFile: File = _\n      var min: Int = 5\n      var outputFile: Option[File] = None\n      var debugFile: Option[File] = None\n    }\n\n    val parser = new OptionParser(\"buildpats\") {\n      arg(\"input\", \"input file\", { path: String => settings.inputFile = new File(path) })\n      intOpt(\"min\", \"minimum number of relations per pattern\", { string: Int => settings.min })\n      opt(\"debug\", \"debug output file\", { path: String => settings.debugFile = Some(new File(path)) })\n      opt(\"output\", \"output file\", { path: String => settings.outputFile = Some(new File(path)) })\n    }\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) {\n    val min = settings.min\n    System.err.println(\"minimum relations per pattern: \"+min)\n\n    var rows = 0\n    var keepers = 0\n\n    var patterns = immutable.Map[String, Set[Int]]().withDefaultValue(Set())\n    val firstSource = Source.fromFile(settings.inputFile, \"UTF8\")\n    for (line <- firstSource.getLines) {\n      val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split(\"\\t\")\n      rows += 1\n      patterns += pattern -> (patterns(pattern) + rel.hashCode)\n    }\n    firstSource.close()\n\n    System.err.println(rows+\" rows\")\n    System.err.println(patterns.size+\" unique patterns\")\n\n    val secondSource = Source.fromFile(settings.inputFile, \"UTF8\")\n    val outputWriter = settings.outputFile.map(new PrintWriter(_)).getOrElse(new PrintWriter(System.out))\n    val debugWriter = settings.debugFile.map(new PrintWriter(_))\n    for (line <- secondSource.getLines) {\n      val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split(\"\\t\")\n      val size = patterns(pattern).size\n      if (size >= min) {\n        keepers += 1\n        outputWriter.println(line)\n      }\n      else {\n        debugWriter.map(_.println(size+\"\\t\"+pattern))\n      }\n    }\n    debugWriter.map(_.close())\n    outputWriter.close()\n    secondSource.close()\n\n    System.err.println(keepers+\" patterns that occur more than \"+min+\"times\")\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/ExtractorPattern.scala",
    "content": "package edu.knowitall.openparse\n\nimport scala.io.Source\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher\nimport edu.knowitall.collection.immutable.graph.pattern.EdgeMatcher\nimport edu.knowitall.collection.immutable.graph.pattern.Matcher\nimport edu.knowitall.collection.immutable.graph.pattern.NodeMatcher\nimport edu.knowitall.collection.immutable.graph.pattern.Pattern\nimport edu.knowitall.collection.immutable.graph.pattern.TrivialNodeMatcher\nimport edu.knowitall.ollie.Ollie.stemmer\nimport edu.knowitall.tool.parse.graph.DependencyNode\nimport edu.knowitall.tool.parse.graph.DependencyPattern\nimport edu.knowitall.tool.parse.graph.LabelEdgeMatcher\nimport edu.knowitall.tool.parse.graph.RegexNodeMatcher\nimport scalaz._\nimport scalaz.Scalaz._\n\n/** A wrapper for a dependency pattern that adds some convenience methods\n  * for working with patterns intended for extraction of binary relations.\n  *\n  * @author Michael Schmitz\n  */\nclass ExtractorPattern(matchers: List[Matcher[DependencyNode]]) extends DependencyPattern(matchers) {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  def this(pattern: Pattern[DependencyNode]) = this(pattern.matchers.map { _ match {\n    case m: ExtractionPartMatcher => m\n    // lift extractor matchers to a more representitive class\n    case m: CaptureNodeMatcher[_] => m.alias.take(3) match {\n      case \"arg\" => new ArgumentMatcher(m.alias, m.matcher)\n      case \"rel\" => new RelationMatcher(m.alias, m.matcher)\n      case \"slo\" => new SlotMatcher(m.alias, m.matcher)\n      case _ => throw new IllegalArgumentException(\"Unknown capture alias: \" + m.alias)\n    }\n    // keep everything else the same\n    case m => m\n  }})\n\n  override def canEqual(that: Any) = that.isInstanceOf[ExtractorPattern]\n  override def equals(that: Any) = that match {\n    case that: ExtractorPattern => (that canEqual this) && this.matchers == that.matchers\n    case _ => false\n  }\n\n  def semantic: Boolean = matchers.exists {\n    case m: RelationMatcher => m.baseNodeMatchers exists { case m: RegexNodeMatcher => true case _ => false }\n    case _ => false\n  }\n\n  def valid: Boolean = {\n    def existsEdge(pred: LabelEdgeMatcher=>Boolean) =\n      this.baseEdgeMatchers.collect {\n        case e: LabelEdgeMatcher => e\n      }exists(pred)\n\n    /* check for multiple prep edges */\n    def multiplePreps = this.baseEdgeMatchers.collect {\n      case e: LabelEdgeMatcher => e\n    }.count(_.label.contains(\"prep\")) > 1\n\n    /* check for a conj_and edge */\n    def conjAnd = existsEdge(_.label == \"conj_and\")\n\n    /* check for a conj_and edge */\n    def conjOr = existsEdge(_.label == \"conj_or\")\n\n    /* eliminate all conj edges */\n    def conj = existsEdge(_.label startsWith \"conj\")\n\n    def slotBordersNN = {\n      import scalaz._\n      import Scalaz._\n\n      def isNN(m: Matcher[DependencyNode]) = m match {\n        case e: NodeMatcher[_] =>\n          e.baseNodeMatchers exists {\n            case m: LabelEdgeMatcher if m.label == \"nn\" => true\n            case _ => false\n          }\n        case _ => false\n      }\n\n      def isSlot(m: Matcher[DependencyNode]) = m match {\n        case m: SlotMatcher => true\n        case _ => false\n      }\n\n      this.matchers.toZipper.map(_.positions.toStream.exists { z =>\n        def focusedOnNN(z: Option[Zipper[Matcher[DependencyNode]]]) = z.map(z => isNN(z.focus)).getOrElse(false)\n        isSlot(z.focus) && (focusedOnNN(z.previous) || focusedOnNN(z.next))\n      }).getOrElse(false)\n    }\n\n    if (existsEdge(_.label == \"dep\")) {\n      logger.debug(\"invalid: dep edge: \" + this.toString)\n      return false\n    }\n\n    if (existsEdge(_.label == \"dep\")) {\n      logger.debug(\"invalid: dep edge: \" + this.toString)\n      return false\n    }\n\n    /* check if ends with slot */\n    def slotAtEnd = {\n      def isSlot(node: NodeMatcher[_]) = node match {\n        case m: CaptureNodeMatcher[_] => m.alias.startsWith(\"slot\")\n        case _ => false\n      }\n\n      !this.nodeMatchers.isEmpty && (isSlot(this.nodeMatchers.head) || isSlot(this.nodeMatchers.last))\n    }\n\n    val length = edgeMatchers.length\n\n    if (length == 2 && multiplePreps) {\n      logger.debug(\"invalid: multiple preps: \" + this.toString)\n      false\n    }\n    else if (conjAnd) {\n      logger.debug(\"invalid: conj_and: \" + this.toString)\n      false\n    }\n    else if (conjOr) {\n      logger.debug(\"invalid: conj_or: \" + this.toString)\n      false\n    }\n    else if (conj) {\n      logger.debug(\"invalid: alt conj: \" + this.toString)\n      false\n    }\n    else if (slotAtEnd) {\n      logger.debug(\"invalid: ends with slot: \" + this.toString)\n      false\n    }\n    else if (slotBordersNN) {\n      logger.debug(\"invalid: slot borders nn: \" + this.toString)\n      false\n    }\n    else {\n      true\n    }\n  }\n\n  /* determine if the pattern is symmetric, such as:\n   *   {arg1} >prep> {rel} <prep< {arg2}\n   */\n  def symmetric = {\n    def compare(m1: List[Matcher[DependencyNode]], m2: List[Matcher[DependencyNode]]): Boolean = (m1, m2) match {\n      // argument matchers need not equal (in fact, they should be opposites)\n      case (((c1: ArgumentMatcher) :: m1s), ((c2: ArgumentMatcher) :: m2s)) => compare(m1s, m2s)\n      // edge matchers should be equals but opposite\n      case (((m1: EdgeMatcher[_]) :: m1s), ((m2: EdgeMatcher[_]) :: m2s)) => m1 == m2.flip && compare(m1s, m2s)\n      // edges and other nodes must be equal\n      case (((m1: Matcher[_]) :: m1s), ((m2: Matcher[_]) :: m2s)) => m1 == m2 && compare(m1s, m2s)\n      case (Nil, Nil) => true\n      case _ => false\n    }\n\n    compare(matchers, matchers.reverse)\n  }\n}\n\nobject ExtractorPattern {\n  import scala.io.Source\n  def main(args: Array[String]) {\n    val iter = if (args.length == 0) Source.stdin.getLines else args.iterator\n    for (line <- iter) {\n      val pattern = DependencyPattern.deserialize(line)\n      val extractor = new ExtractorPattern(pattern)\n      def verdict = if (extractor.valid) \"valid\" else \"invalid\"\n      println(verdict + \": \" + extractor.toString)\n    }\n  }\n}\n\n/** A dependency node used to match an extraction part in a pattern extractor.\n  *\n  * @author Michael Schmitz\n  */\nsealed abstract class ExtractionPartMatcher(alias: String, matcher: NodeMatcher[DependencyNode])\nextends CaptureNodeMatcher[DependencyNode](alias, matcher) {\n  def this(alias: String) = this(alias, new TrivialNodeMatcher[DependencyNode])\n\n  def withMatcher(matcher: NodeMatcher[DependencyNode]): ExtractionPartMatcher\n}\n\n/** A dependency node used to match an argument in a pattern extractor.\n  *\n  * @author Michael Schmitz\n  */\nclass ArgumentMatcher(alias: String, matcher: NodeMatcher[DependencyNode]) extends ExtractionPartMatcher(alias, matcher) {\n  def this(alias: String) = this(alias, new TrivialNodeMatcher[DependencyNode])\n  override def canEqual(that: Any) = that.isInstanceOf[ExtractionPartMatcher]\n  override def equals(that: Any) = that match {\n    case that: ExtractionPartMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any])\n    case _ => false\n  }\n\n  override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new ArgumentMatcher(this.alias, matcher)\n}\n\n/** A dependency node used to match a relation in a pattern extractor.\n  *\n  * @author Michael Schmitz\n  */\nclass RelationMatcher(alias: String, matcher: NodeMatcher[DependencyNode])\nextends ExtractionPartMatcher(alias, matcher) {\n  override def canEqual(that: Any) = that.isInstanceOf[RelationMatcher]\n  override def equals(that: Any) = that match {\n    case that: RelationMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any])\n    case _ => false\n  }\n\n  override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new RelationMatcher(this.alias, matcher)\n}\n\n/** A dependency node used to match a slot in a pattern extractor.\n  *\n  * @author Michael Schmitz\n  */\nclass SlotMatcher(alias: String, matcher: NodeMatcher[DependencyNode])\nextends ExtractionPartMatcher(alias, matcher) {\n  override def canEqual(that: Any) = that.isInstanceOf[SlotMatcher]\n  override def equals(that: Any) = that match {\n    case that: SlotMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any])\n    case _ => false\n  }\n\n  override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new SlotMatcher(this.alias, matcher)\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/GraphExpansions.scala",
    "content": "package edu.knowitall.openparse\n\nimport scala.collection.Set\nimport scala.collection.SortedSet\n\nimport edu.knowitall.collection.immutable.graph.{Graph, DirectedEdge}\nimport edu.knowitall.collection.immutable.graph.Direction\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}\n\n/** A collection of helper methods for expanding a node in a graph\n  * and/or sentence according to some metric. */\nobject GraphExpansions {\n  def neighborsUntil(graph: DependencyGraph, node: DependencyNode, inferiors: List[DependencyNode], until: Set[DependencyNode]): SortedSet[DependencyNode] = {\n    val lefts = inferiors.takeWhile(_ != node).reverse\n    val rights = inferiors.dropWhile(_ != node).drop(1)\n\n    val indices = Interval.span(node.indices :: lefts.takeWhile(!until(_)).map(_.indices) ++ rights.takeWhile(!until(_)).map(_.indices))\n\n    // use the original dependencies nodes in case some information\n    // was lost.  For example, of is collapsed into the edge prep_of\n    graph.nodes.filter(node => node.indices.max >= indices.min && node.indices.max <= indices.max)\n  }\n\n  def expandAdjacent(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode], labels: Set[String]) = {\n    def takeAdjacent(interval: Interval, nodes: List[DependencyNode], pool: List[DependencyNode]): List[DependencyNode] = pool match {\n      // can we add the top node?\n      case head :: tail if (head.indices borders interval) && !until.contains(head) =>\n        takeAdjacent(interval union head.indices, head :: nodes, tail)\n      // otherwise abort\n      case _ => nodes\n    }\n\n    // it might be possible to simply have an adjacency restriction\n    // in this condition\n    def cond(e: Graph.Edge[DependencyNode]) =\n      labels.contains(e.label)\n    val inferiors = graph.graph.inferiors(node, cond).toList.sortBy(_.indices)\n\n    // split into nodes left and right of node\n    val lefts = inferiors.takeWhile(_ != node).reverse\n    val rights = inferiors.dropWhile(_ != node).drop(1)\n\n    // take adjacent nodes from each list\n    val withLefts = takeAdjacent(node.indices, List(node), lefts)\n    val expanded = takeAdjacent(node.indices, withLefts, rights)\n\n    SortedSet(expanded: _*)\n  }\n\n  def expand(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode], labels: Set[String]) = {\n    // don't restrict to adjacent (by interval) because prep_of, etc.\n    // remove some nodes that we want to expand across.  In the end,\n    // we get the span over the inferiors.  Do go beneath until\n    // nodes because we need them for neighborsUntil.\n    def cond(e: Graph.Edge[DependencyNode]) =\n      labels.contains(e.label)\n    val inferiors = graph.graph.inferiors(node, cond)\n\n    // get all nodes connected by an nn edge\n    val nns = graph.graph.connected(node, dedge => dedge.edge.label == \"nn\")\n\n    // order the nodes by their indices\n    val ordered = (inferiors ++ nns).toList.sortBy(_.indices)\n\n    // get neighbors, moving left and right, until a bad node is it\n    neighborsUntil(graph, node, ordered, until)\n  }\n\n  def augment(graph: DependencyGraph, node: DependencyNode, without: Set[DependencyNode], pred: Graph.Edge[DependencyNode] => Boolean): List[SortedSet[DependencyNode]] = {\n    // don't restrict to adjacent (by interval) because prep_of, etc.\n    // remove some nodes that we want to expand across.  In the end,\n    // we get the span over the inferiors.\n    graph.graph.successors(node, pred).map { successor =>\n      SortedSet[DependencyNode]() ++ graph.graph.inferiors(successor)\n    }.toList\n  }\n\n  /**\n    *  Find all nodes in a components next to the node.\n    *  @param  node  components will be found adjacent to this node\n    *  @param  labels  components may be connected by edges with any of these labels\n    *  @param  without  components may not include any of these nodes\n    */\n  def components(graph: DependencyGraph, node: DependencyNode, labels: Set[String], without: Set[DependencyNode], nested: Boolean) = {\n    // nodes across an allowed label to a subcomponent\n    val across = graph.graph.neighbors(node, (dedge: DirectedEdge[_]) => dedge.dir match {\n      case Direction.Down if labels.contains(dedge.edge.label) => true\n      case _ => false\n    })\n\n    across.flatMap { start =>\n      // get inferiors without passing back to node\n      val inferiors = graph.graph.inferiors(start,\n        (e: Graph.Edge[DependencyNode]) =>\n          // don't cross a conjunction that goes back an across node\n          !((e.label startsWith \"conj\") && (across contains e.dest)) &&\n            // make sure we don't cycle out of the component\n            e.dest != node &&\n            // make sure we don't descend into another component\n            // i.e. \"John M. Synge who came to us with his play direct\n            // from the Aran Islands , where the material for most of\n            // his later works was gathered\" if nested is false\n            (nested || !labels.contains(e.label)))\n\n      // make sure none of the without nodes are in the component\n      if (without.forall(!inferiors.contains(_))) {\n        val span = Interval.span(inferiors.map(_.indices).toSeq)\n        Some(graph.nodes.filter(node => span.superset(node.indices)).toList)\n      } else None\n    }\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/OpenParse.scala",
    "content": "package edu.knowitall.openparse\n\nimport java.io.{PrintWriter, File}\nimport java.net.URL\nimport scala.collection.Set\nimport scala.io.Source\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.collection.immutable.graph.pattern.Match\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.Timing\nimport edu.knowitall.openparse.OpenParse.validMatch\nimport edu.knowitall.openparse.extract.{TemplateExtractor, PatternExtractorType, PatternExtractor, GeneralExtractor, Extraction, DetailedExtraction}\nimport edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}\nimport edu.knowitall.tool.postag.Postagger\n\nimport scopt.OptionParser\n\n/** OpenParse is an extractor that find binary relation in dependency graphs.\n  *\n  * @author Michael Schmitz\n  */\nclass OpenParse(\n    /** Patterns to use to look for extractions */\n    val extractors: Seq[PatternExtractor],\n    /** Configuration options */\n    val configuration: OpenParse.Configuration) {\n  import OpenParse._\n\n  extractors foreach (ex => logger.debug(\"loaded extractor: \"+ex.toString))\n  logger.debug(configuration.toString)\n\n  /** Convenience constructor that uses the default configuration. */\n  def this(extractors: Seq[PatternExtractor]) =\n    this(extractors, new OpenParse.Configuration())\n\n  /** Perform some normalizations on the graph */\n  def simplifyGraph(dgraph: DependencyGraph): DependencyGraph = {\n    var graph = dgraph\n\n    if (configuration.collapseGraph) {\n      graph = graph.collapse\n    }\n\n    if (configuration.simplifyPostags) {\n      graph = graph.simplifyPostags\n    }\n\n    if (configuration.simplifyVBPostags) {\n      graph = graph.simplifyVBPostags\n    }\n\n    graph\n  }\n\n  def apply(dg: DependencyGraph) = extract(dg)\n\n  /** Find extractions in a dependency graph */\n  def extract(dg: DependencyGraph): Seq[(Double, DetailedExtraction)] = {\n    val dgraph = simplifyGraph(dg)\n\n    /**\n     * Check if the PatternExtractor gives a deterministic confidence.\n     * If so, make sure it is above the threshold.\n     */\n    def confidenceOverThreshold(extractor: PatternExtractor, threshold: Double) = {\n      extractor.maximumConfidence >= configuration.confidenceThreshold\n    }\n\n    /**\n     * Quick checks to see if an extraction is possible.  This\n     * is an optimization, so the checks should be considerably\n     * faster than running the extractors.\n     */\n    def possibleExtraction(extractor: PatternExtractor, dgraph: DependencyGraph) = {\n      extractor.pattern.edgeMatchers.forall { matcher =>\n        val can = dgraph.graph.edges.exists(matcher.canMatch(_))\n        if (!can && logger.isTraceEnabled) logger.trace(\"No possible match: \" + matcher)\n\n        can\n      }\n    }\n\n    val extrs = for {\n      extractor <- extractors;\n      // todo: organize patterns by a reverse-lookup on edges\n\n      // val _ = logger.trace(\"attempting extractor: \" + extractor)\n\n      // optimizations\n      if (confidenceOverThreshold(extractor, configuration.confidenceThreshold));\n      if (possibleExtraction(extractor, dgraph));\n\n      // val _ = logger.trace(\"applying extractor: \" + extractor)\n\n      // extraction\n      extr <- extractor.extract(dgraph)(this.buildExtraction, this.validateMatch)\n      val conf = extractor.confidence(extr);\n      if conf >= configuration.confidenceThreshold\n    } yield {\n      (conf, extr)\n    }\n\n    val reduced = if (configuration.keepDuplicates) {\n      extrs\n    } else {\n      // toSet to remove exact duplicates\n      val set = extrs.toSet\n\n      val reduced = set filterNot {\n        case (thisConf, thisExtr) =>\n          set exists {\n            case (thatConf, thatExtr) =>\n              // the relations are identical\n              thisExtr.rel == thatExtr.rel &&\n                // this confidence is lower than that\n                thisConf < thatConf &&\n                // one of the other argument is a substring of the other\n                (thatExtr.arg1Text.contains(thisExtr.arg1Text) || thatExtr.arg2Text.contains(thisExtr.arg2Text))\n          }\n      }\n\n      reduced.toSeq\n    }\n\n    reduced.sortBy { case (conf, extr) => (-conf, extr.toString) }\n  }\n\n  /** Build an extraction from a match in the dependency pattern. */\n  protected val buildExtraction = Extraction.fromMatch(configuration.expandExtraction) _\n\n  /** Validate a dependency pattern match to see if it can be expanded\n    * into an extraction. */\n  protected val validateMatch = validMatch(configuration.restrictArguments) _\n}\n\nobject OpenParse {\n  val LEMMA_BLACKLIST = Postagger.simplePrepositions + \"like\" + \"be\"\n  val VALID_ARG_POSTAG = Set(\"NN\", \"NNS\", \"NNP\", \"NNPS\", \"JJ\", \"JJS\", \"CD\", \"PRP\")\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  /** An url to the default model */\n  def defaultModelUrl: URL = {\n    val path = \"openparse.model\"\n    val url = this.getClass.getResource(path)\n    require(url != null, \"Default model could not be found: \" + path);\n    url\n  }\n\n  // factory methods\n  /** Create an OpenParse extractor using the default model */\n  def withDefaultModel(configuration: Configuration = new Configuration()) = {\n    fromModelUrl(defaultModelUrl, configuration)\n  }\n\n  /** Create an OpenParse extractor reading a model from the specified source. */\n  def fromModelSource(source: Source, configuration: Configuration = new Configuration()) = {\n    val it = source.getLines\n    val head = it.next\n\n    val typ = PatternExtractorType(head)\n    val extractors = typ.fromLines(it)\n    new OpenParse(extractors, configuration)\n  }\n\n  /** Create an OpenParse extractor by reading a model from the specified file. */\n  def fromModelFile(file: File, configuration: Configuration = new Configuration()) = {\n    using (Source.fromFile(file)) { source =>\n      OpenParse.fromModelSource(source, configuration)\n    }\n  }\n\n  /** Create an OpenParse extractor by reading a model from the specified url. */\n  def fromModelUrl(url: URL, configuration: Configuration = new Configuration()) = {\n    using (url.openStream()) { stream =>\n      using (Source.fromInputStream(stream)) { source =>\n        fromModelSource(source, configuration)\n      }\n    }\n  }\n\n  val CHUNK_SIZE = 10000\n\n  implicit def implicitBuildExtraction = Extraction.fromMatch(true) _\n  implicit def implicitValidMatch = validMatch(true) _\n\n  /** Filter matches (pre-extracitons) that are invalid */\n  def validMatch(restrictArguments: Boolean)(graph: Graph[DependencyNode])(m: Match[DependencyNode]) = {\n    !restrictArguments || VALID_ARG_POSTAG.contains(m.nodeGroups(\"arg1\").node.postag) && VALID_ARG_POSTAG.contains(m.nodeGroups(\"arg2\").node.postag)\n  }\n\n  /** Settings for OpenParse. */\n  abstract class Settings {\n    /** url to find the model */\n    def modelUrl: URL\n    /** file to output; None means stdout */\n    def outputFile: Option[File]\n\n    /** source file */\n    def sentenceFile: File\n\n    /** threshold for reported extractions and attempted patterns */\n    def confidenceThreshold: Double\n\n    /** show duplicate extractions (different patterns can create the same extraction) */\n    def duplicates: Boolean\n    /** expand the arguments of matches */\n    def expandArguments: Boolean\n    /** do not filter matches */\n    def showAll: Boolean\n    /** provide output in a more verbose, non-columnated output */\n    def verbose: Boolean\n    /** collapse all verbs to VB */\n    def collapseVB: Boolean\n\n    /** execute in parallel */\n    def parallel: Boolean\n\n    /** ignore exceptions */\n    def invincible: Boolean\n\n    /** Create an OpenParse configuration from the settings. */\n    def configuration: Configuration = new Configuration(\n      confidenceThreshold = this.confidenceThreshold,\n      expandExtraction = this.expandArguments,\n      simplifyVBPostags = this.collapseVB,\n      keepDuplicates = this.duplicates)\n  }\n\n  def main(args: Array[String]) {\n    object settings extends Settings {\n      var modelUrl: URL = OpenParse.defaultModelUrl\n      var outputFile: Option[File] = None\n\n      var sentenceFile: File = null\n\n      var confidenceThreshold = 0.0;\n\n      var duplicates: Boolean = false\n      var expandArguments: Boolean = false\n      var showAll: Boolean = false\n      var verbose: Boolean = false\n      var collapseVB: Boolean = false\n\n      var parallel: Boolean = false\n      var invincible: Boolean = false\n    }\n\n    val parser = new OptionParser(\"applypat\") {\n      opt(Some(\"m\"), \"model\", \"<file>\", \"model file\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.modelUrl = file.toURI.toURL\n      })\n      doubleOpt(Some(\"t\"), \"threshold\", \"<threshold>\", \"confident threshold for shown extractions\", { t: Double => settings.confidenceThreshold = t })\n      opt(\"o\", \"output\", \"output file (otherwise stdout)\", { path => settings.outputFile = Some(new File(path)) })\n\n      opt(\"d\", \"duplicates\", \"keep duplicate extractions\", { settings.duplicates = true })\n      opt(\"x\", \"expand-arguments\", \"expand extraction arguments\", { settings.expandArguments = true })\n      opt(\"collapse-vb\", \"collapse 'VB.*' to 'VB' in the graph\", { settings.collapseVB = true })\n\n      opt(\"a\", \"all\", \"don't restrict extractions to are noun or adjective arguments\", { settings.showAll = true })\n      opt(\"v\", \"verbose\", \"alternative output format\", { settings.verbose = true })\n      opt(\"p\", \"parallel\", \"execute in parallel\", { settings.parallel = true })\n      opt(\"ignore-errors\", \"ignore exceptions\", { settings.invincible = true })\n\n      arg(\"sentences\", \"sentence file\", { path: String =>\n        val file = new File(path)\n        require(file.exists, \"file does not exist: \" + path)\n        settings.sentenceFile = file\n      })\n    }\n\n    if (parser.parse(args)) {\n      logger.info(\"args: \" + args.mkString(\" \"))\n      run(settings)\n    }\n  }\n\n  /** Configuration options.\n    *\n    * @param  simplifyVBPostags  replace all VB. postags to VB\n    * @param  simplifyPostags  replace plurals with the singular postag\n    * @param  confidenceThreshold  threshold under which not to present extractions\n    * @param  expandExtraction  true if arguments should be expanded from the matched node\n    * @param  keepDuplicates  true if duplicate extractions should be presented\n    * @param  collapseGraph  true if the graph should be compressed\n    */\n  case class Configuration(\n    val simplifyVBPostags: Boolean = false,\n    val simplifyPostags: Boolean = true,\n    val confidenceThreshold: Double = 0.0,\n    val expandExtraction: Boolean = true,\n    val restrictArguments: Boolean = true,\n    val keepDuplicates: Boolean = false,\n    val collapseGraph: Boolean = true)\n\n  def deserialize(line: String): Option[DependencyGraph] = {\n    val pickled = line.split(\"\\t\").last\n    try {\n      Some(DependencyGraph.deserialize(pickled))\n    } catch {\n      case e: DependencyGraph.SerializationException =>\n        logger.error(\"could not deserialize graph.\", e)\n        None\n    }\n  }\n\n  def run(settings: Settings, parse: String=>Option[DependencyGraph] = deserialize) {\n    case class Result(conf: Double, extr: DetailedExtraction, text: String) extends Ordered[Result] {\n      override def toString = text\n\n      override def compare(that: Result) = {\n        val conf = this.conf.compare(that.conf)\n\n        if (conf == 0) (this.extr.toString + text).compareTo(that.extr.toString + text)\n        else conf\n      }\n    }\n\n    // create a standalone extractor\n    val configuration = settings.configuration\n    val extractor = OpenParse.fromModelUrl(settings.modelUrl, configuration)\n\n    def summary(extractionCount: Int, sentenceCount: Int, ms: Long) = {\n      \"summary: \" + extractionCount + \" extractions, \" + sentenceCount + \" sentences, \" + Timing.Seconds.format(ms) + \", \" + Timing.Minutes.format(ms)\n    }\n\n    logger.info(\"performing extractions\")\n    var sentenceCount = 0\n    val extractionCount = new java.util.concurrent.atomic.AtomicInteger\n    val startTime = System.nanoTime();\n    using(settings.outputFile.map(new PrintWriter(_)).getOrElse(new PrintWriter(System.out))) { writer =>\n      using(Source.fromFile(settings.sentenceFile, \"UTF-8\")) { sentenceSource =>\n        for (group <- sentenceSource.getLines.grouped(CHUNK_SIZE)) {\n          if (settings.outputFile.isDefined) {\n            println(summary(extractionCount.get, sentenceCount, System.nanoTime - startTime))\n          }\n          val lines = if (settings.parallel) group.par else group\n          sentenceCount += lines.size\n\n          for {\n            line <- lines\n            dgraph <- parse(line)\n          } {\n            try {\n              val text = dgraph.text\n              val pickled = dgraph.serialize\n\n              logger.debug(\"text: \" + text)\n              logger.debug(\"graph: \" + pickled)\n\n              if (settings.verbose) {\n                writer.synchronized {\n                  writer.println(\"text: \" + text)\n                  writer.println(\"deps: \" + pickled)\n                }\n              }\n\n              val extractions = extractor.extract(dgraph)\n              extractionCount.addAndGet(extractions.size)\n              val results = for ((conf, extr) <- extractions) yield {\n                val resultText =\n                  if (settings.verbose) \"extraction: \" + (\"%1.6f\" format conf) + \" \" + extr.toString + \" with (\" + extr.extractor.pattern.toString + \")\"\n                  else (\"%1.6f\" format conf) + \"\\t\" + extr + \"\\t\" + extr.extractor.pattern + \"\\t\" + text + \"\\t\" + pickled\n                Result(conf, extr, resultText)\n              }\n\n              writer.synchronized {\n                for (result <- results) {\n                  writer.println(result)\n                }\n              }\n\n              if (settings.verbose) writer.println()\n            } catch {\n              // never fail if invicible\n              case e if settings.invincible =>\n            }\n          }\n        }\n      }\n    }\n    if (settings.outputFile.isDefined) {\n      println(summary(extractionCount.get, sentenceCount, System.nanoTime - startTime))\n    }\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/bootstrap/FilterTargetExtractions.scala",
    "content": "package edu.knowitall.openparse.bootstrap\n\nimport scala.io.Source\n\nimport org.slf4j.LoggerFactory\n\n/** Filter the target extractions.  We only want to keep extractions that\n  * occur more than once and have a relation with more than 15 seeds.\n  * \n  * @author Michael Schmitz\n  */\nobject FilterTargetExtractions {\n  val logger = LoggerFactory.getLogger(this.getClass)\n  \n  final val MIN_RELATION_SEEDS = 15\n\n  def main(args: Array[String]) {\n    val inputFile = Source.fromFile(args(0), \"UTF8\")\n\n    logger.info(\"reading lines and counting\")\n    var relationCounts = Map[String, Int]().withDefaultValue(0)\n    var seedCounts = Map[(String, String, String, String), Int]().withDefaultValue(0)\n    for (line <- inputFile.getLines) {\n      val Array(rel, arg1, arg2, lemmas, _*) = line.split(\"\\t\")\n\n      val seed = (rel, arg1, arg2, lemmas)\n\n      // make sure the relation contains at least on of the lemmas\n      // this excludes, for example, \"be in\"\n      if (rel.split(\" \").exists (lemmas contains _)) {\n        seedCounts += seed -> (seedCounts(seed) + 1)\n        relationCounts += rel -> (relationCounts(rel) + 1)\n      }\n    }\n\n    // keep relations with more than 15 seeds\n    // and more than 0 lemmas\n    val relations: Set[String] =\n      (for {\n        (rel, count) <- relationCounts;\n        if (count > MIN_RELATION_SEEDS)\n      } yield (rel))(scala.collection.breakOut)\n    logger.info(\"keeping \" + relations.size + \"/\" + relationCounts.size + \" relations\")\n\n    // keep seeds that occur more than once\n    val seeds =\n      for {\n        (seed @ (rel, arg1, arg2, lemmas), count) <- seedCounts;\n        if count > 1 && relations.contains(rel)\n      } yield (seed)\n\n    logger.info(\"keeping \" + seeds.size + \"/\" + seedCounts.size + \" seeds\")\n\n    logger.info(\"printing seeds to keep\")\n    for (seed <- seeds) {\n      println(seed.productIterator.mkString(\"\\t\"))\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/bootstrap/FindCommon.scala",
    "content": "package edu.knowitall.openparse.bootstrap\n\nimport scala.util.matching.Regex\n\n/** Common functionality for bootstrap code.\n  * \n  * @author Michael Schmitz\n  */\nobject FindCommon {\n  // tags allowed in proper arguments\n  val properPostags = Set(\"DT\", \"IN\", \"NNP\", \"NNPS\")\n  def proper(lemmas: Array[String]) =\n    lemmas.forall(properPostags.contains(_)) && lemmas.exists(lemma => lemma == \"NNP\" || lemma == \"NNPS\")\n\n  def stripPostag(target: String, part: Seq[(String, String, String)]) = {\n    part.filter { case (pos, tok, lem) => target != pos }\n  }\n  def stripPostag(target: Regex, part: Seq[(String, String, String)]) = {\n    part.filter { case (pos, tok, lem) => !target.pattern.matcher(pos).matches}\n  }\n  def stripLemma(target: String, part: Seq[(String, String, String)]) = {\n    part.filter { case (pos, tok, lem) => target != lem }\n  }\n  \n  def cleanArg(part: Seq[(String, String, String)]) = stripPostag(\"DT\", part)\n  \n  def zip3(l1 : List[String], l2 : List[String],l3 : List[String]) : List[(String, String, String)] =\n  {\n    def zip3$ (l1$ : List[String], l2$ : List[String], l3$ : List[String], acc : List[(String, String, String)]) : List[(String, String, String)] = l1$ match\n    {\n      case Nil => acc reverse\n      case l1$head :: l1$tail => zip3$(l1$tail, l2$.tail, l3$.tail, (l1$head, l2$.head, l3$.head) :: acc)\n    }\n\n    zip3$(l1, l2, l3, List[(String,String,String)]())\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/bootstrap/FindTargetArguments.scala",
    "content": "package edu.knowitall.openparse.bootstrap\n\nimport scala.Array.canBuildFrom\nimport scala.collection.mutable\nimport scala.io.Source\n\nimport edu.knowitall.tool.stem.MorphaStemmer\n\nimport FindCommon.{zip3, proper, cleanArg}\n\n/** Detemine valid arguments of extractions for the boostrap process. \n  * \n  * Only frequent proper arguments are used.\n  * \n  * @author Michael Schmitz\n  */\nobject FindTargetArguments {\n  import FindCommon._\n\n  val blacklist = Set(\"inc\", \"ltd\", \"page\", \n    \"vehicle\", \"turn\", \"site\", \"photo\", \"image\", \"gallery\")\n\n  def valid(lemma: String) = {\n    lemma.length > 2 && lemma.length < 64 && !blacklist.contains(lemma)\n  }\n\n  /** Run over a file with four columns:\n    * \n    *   string\n    *   lemma\n    *   postag\n    *   count\n    *\n    * Count all of the proper arguments and print any arguments that\n    * exceed the lower bound.  The lower bound is specified by the first\n    * command-line argument. */\n  def main(args: Array[String]) {\n    val source = Source.fromFile(args(0), \"UTF8\")\n    val lowerBound = args(1).toInt\n    \n    val map = new mutable.HashMap[String, Int]().withDefaultValue(0)\n    for (line <- source.getLines) {\n      try {\n        val Array(string, lem, postag, count) = line.split(\"\\t\")\n        // do our own normalization\n        val lemma = string.split(\" \").map(\n          MorphaStemmer.lemmatize(_)).mkString(\" \")\n        \n        if (!string.contains(\"_\")) {\n          // remove DT\n          val arg = cleanArg(\n            zip3(\n              postag.split(\"\"\"\\s+\"\"\").toList, \n              string.split(\"\"\"\\s+\"\"\").toList, \n              lemma.split(\"\"\"\\s+\"\"\").toList))\n          val cleanLemma = arg.unzip3._3.mkString(\" \")\n          \n          // make sure lemma is valid\n          if (proper(postag.split(\" \")) && valid(cleanLemma)) {\n            map += cleanLemma -> (map(cleanLemma)+count.toInt)\n          }\n        }\n      }\n      catch {\n        case e: MatchError =>\n      }\n    }\n    \n    source.close\n\n    val keepers: List[(String, Int)] = (for ((k, v) <- map if v > lowerBound) yield {\n      (k, v)\n    })(scala.collection.breakOut)\n\n    keepers.sortBy(_._2).reverse.foreach { case (k, v) => println(k + \"\\t\" + v) }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/bootstrap/FindTargetExtractions.scala",
    "content": "package edu.knowitall.openparse.bootstrap\n\nimport scala.Array.canBuildFrom\nimport scala.Option.option2Iterable\nimport scala.io.Source\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.openparse.OpenParse\nimport edu.knowitall.tool.stem.MorphaStemmer\n\nimport FindCommon.{zip3, stripPostag, proper, cleanArg}\nimport scopt.OptionParser\n\n/** Detemine valid extractions for the boostrap process. \n  * \n  * Extractions need frequent arguments from FindTargetArguments\n  * and cannot contain a negation word.\n  * \n  * @author Michael Schmitz\n  */\nobject FindTargetExtractions {\n  import FindCommon._\n\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  def negated(lemmas: Array[String]) =\n    lemmas.contains(\"not\") || lemmas.contains(\"no\") || lemmas.contains(\"n't\") || lemmas.contains(\"never\")\n\n  val lemmaBlacklist = Set(\"the\", \"that\", \"of\")\n\n  def main(args: Array[String]) {\n\n    val parser = new OptionParser(\"findextr\") {\n      var extractionFilePath: String = _\n      var relationFilePath: Option[String] = None\n      var argumentFilePath: String = _\n\n      arg(\"extractions\", \"extraction file\", { v: String => require(v != null); extractionFilePath = v })\n      arg(\"arguments\", \"argument file\", { v: String => require(v != null); argumentFilePath = v })\n      opt(\"r\", \"relations\", \"<file>\", \"relation file\", { v: String => require(v != null); relationFilePath = Some(v) })\n    }\n\n    if (parser.parse(args)) {\n      // read in the argument files\n      val extractions = Source.fromFile(parser.extractionFilePath, \"UTF8\")\n      logger.info(\"loading targets\")\n      val relationsRows = parser.relationFilePath.map(Source.fromFile(_, \"UTF8\").getLines.map(line => line.split(\"\\t\")).toList)\n      val targets = relationsRows.map(_ map (_(0)))\n      val relationLemmaLookup = relationsRows.map(_.map(row => (row(0), row(1).split(\" \"))).toMap)\n      def relationLemmas(relation: String): Seq[String] = {\n        relationLemmaLookup match {\n          case Some(lookup) => lookup(relation)\n          case None => relation.split(\" \") filterNot OpenParse.LEMMA_BLACKLIST\n        }\n      }\n\n      targets match {\n        case Some(targets) => logger.info(\"5 targets: \" + targets.take(5).mkString(\", \"))\n        case None => logger.info(\"No target restriction\")\n      }\n      logger.info(\"loading arguments\")\n      val arguments = Source.fromFile(parser.argumentFilePath, \"UTF8\").getLines.map(line => line.split(\"\\t\")(0)).toSet\n      logger.info(\"5 arguments: \" + arguments.take(5).mkString(\", \"))\n\n      // iterate over extractions\n      logger.info(\"iterating over extractions\")\n      for (line <- extractions.getLines) {\n        try {\n          val Array(id, arg1String, relationString, arg2String, _, relationLemma, _, arg1Postag, relationPostag, arg2Postag, _, _, _, count, confidence, url, sentence) = line.split(\"\\t\", -1)\n          val arg1Lemma = arg1String.split(\" \").map(MorphaStemmer.lemmatize(_)).mkString(\" \")\n          val arg2Lemma = arg2String.split(\" \").map(MorphaStemmer.lemmatize(_)).mkString(\" \")\n          // val rs = new RelationString(relationString, relationLemma, relationPostag)\n          // rs.correctNormalization()\n\n          val arg1 = zip3(arg1Postag.split(\"\"\"\\s+\"\"\").toList, arg1String.split(\"\"\"\\s+\"\"\").toList, arg1Lemma.split(\"\"\"\\s+\"\"\").toList)\n          // val rel = zip3(rs.getPosPred.split(\"\"\"\\s+\"\"\").toList, rs.getPred.split(\"\"\"\\s+\"\"\").toList, rs.getNormPred.split(\"\"\"\\s+\"\"\").toList)\n          val rel = zip3(relationPostag.split(\"\"\"\\s+\"\"\").toList, relationString.split(\"\"\"\\s+\"\"\").toList, relationLemma.split(\"\"\"\\s+\"\"\").toList)\n          val arg2 = zip3(arg2Postag.split(\"\"\"\\s+\"\"\").toList, arg2String.split(\"\"\"\\s+\"\"\").toList, arg2Lemma.split(\"\"\"\\s+\"\"\").toList)\n\n          implicit def t2mapper[A, B](t: (A, B)) = new { \n            def map[R](f: A => R, g: B => R) = (f(t._1), g(t._2)) \n          }\n\n          val (arg1cleanPostags, arg1cleanStrings, arg1cleanLemmas) = cleanArg(arg1).unzip3\n          val (arg2cleanPostags, arg2cleanStrings, arg2cleanLemmas) = cleanArg(arg2).unzip3\n          val (relcleanPostags, relcleanStrings, relcleanLemmas) = {\n            val stripped = stripPostag(\"RB.*\", stripPostag(\"DT\", rel))\n            val beIndex = rel.indexWhere(_._3 == \"be\")\n            val penultimateAdjective = \n              if (rel.length - beIndex >= 3 && (rel.drop(beIndex).head._3 startsWith \"be\") && rel.last._1 == \"IN\") {\n                // return the penultimate if it's VERB ADJECTIVE PREPOSITION\n                Some(rel.init.last)\n              }\n              else None\n            \n            (stripPostag(\"JJS?\".r, stripped) ++ penultimateAdjective).unzip3\n          }\n\n          val relcleanLemmaString = relcleanLemmas.mkString(\" \")\n          val arg1cleanLemmaString = arg1cleanLemmas.mkString(\" \")\n          val arg2cleanLemmaString = arg2cleanLemmas.mkString(\" \")\n\n          // ensure the extraction parts are relatively small\n          if (relationLemma.length < 64 && \n            // ensure the normalized relation string is a target\n            targets.map(_ contains relcleanLemmaString).getOrElse(true) &&\n            // ensure arguments are proper\n            (proper(arg1Postag.split(\"\\\\s+\")) ||\n            proper(arg2Postag.split(\"\\\\s+\"))) &&\n            arg1cleanLemmaString != arg2cleanLemmaString &&\n            // ensure the args are permissible\n            arguments.contains(arg1cleanLemmaString) && arguments.contains(arg2cleanLemmaString) &&\n            // ensure the unnormalized relation is not negated\n            !negated(relationLemma.split(\" \"))) {\n\n            val lemmas = (arg1cleanLemmas ++ relationLemmas(relcleanLemmaString) ++ arg2cleanLemmas) filterNot lemmaBlacklist\n\n            for (i <- 0 until count.toInt) {\n              println(Iterable(\n                relcleanLemmaString, \n                arg1cleanLemmaString, \n                arg2cleanLemmaString,\n                lemmas.mkString(\" \"), \n                arg1String, relationString, arg2String, arg1Postag, relationPostag, arg2Postag).mkString(\"\\t\"))\n            }\n          }\n        }\n        catch {\n          case e => // e.printStackTrace\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/eval/GroupScoredBy.scala",
    "content": "package edu.knowitall.openparse.eval\n\nimport java.io.File\n\nimport edu.knowitall.common.Analysis\n\nimport scopt.OptionParser\n\n/** Group scored extractions by precision and yield. \n  * \n  * @author Michael Schmitz\n  */\nobject GroupScoredBy {\n  def main(args: Array[String]) = {\n    val parser = new OptionParser(\"groupscored\") {\n      var scoredFile: File = _\n      var column: Int = 2\n\n      arg(\"scored\", \"scored extractions\", { path: String => scoredFile = new File(path) })\n      intOpt(\"k\", \"column\", \"column\", { c: Int => column = c })\n    }\n\n    if (parser.parse(args)) {\n      require(parser.column >= 2, \"column must be >= 2\")\n\n      val scores = Score.loadScoredFile(parser.scoredFile)\n      val grouped = scores.groupBy(scored => scored.extra(parser.column - 2))\n\n      val scored = (for (group <- grouped) yield {\n        val title = group._1\n        val scoreds = group._2\n\n        (group._1, Analysis.precision(scoreds.map(scored => scored.score.getOrElse(throw new IllegalArgumentException(\"unscored extraction: \" + scored)))), group._2)\n      }).toList.sortBy(tuple => (tuple._2, tuple._3.mkString(\"\\t\"))).reverse\n      \n      scored.foreach { item => \n        println(item._2 + \": \" + item._1)\n        item._3.sortBy(scored => (scored.confidence, scored.toRow)).iterator.map(_.toRow).foreach(println)\n        println()\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/eval/PrecisionYield.scala",
    "content": "package edu.knowitall.openparse.eval\n\nimport java.io.{PrintWriter, File}\n\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.Analysis\n\nimport scopt.OptionParser\n\n/** Compute precision yield point from scored extractions.\n  * \n  * @author Michael Schmitz\n  */\nobject PrecisionYield {\n  abstract class Settings {\n    def scoredFile: File\n    def outputFile: Option[File]\n  }\n  \n  def main(args: Array[String]) = {\n    val settings = new Settings {\n      var scoredFile: File = _\n      var outputFile: Option[File] = None \n    }\n    \n    val parser = new OptionParser(\"precyield\") {\n      arg(\"scored\", \"scored extractions file\", { path: String => settings.scoredFile = new File(path) })\n      argOpt(\"output\", \"output file\", { path: String => settings.outputFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n  \n  def run(settings: Settings) = {\n    val scores = Score.loadScoredFile(settings.scoredFile).sortBy(_.confidence).reverse\n    val input = scores.map(scored => (\"%.4f\".format(scored.confidence), scored.score.getOrElse(throw new IllegalArgumentException(\"unscored extraction: \" + scored))))\n\n    using {\n      settings.outputFile match {\n        case Some(file) => new PrintWriter(file, \"UTF8\")\n        case None => new PrintWriter(System.out)\n      }\n    } { writer =>\n      val py = Analysis.precisionYieldMeta(input)\n      val area = Analysis.areaUnderCurve(py.map { case (conf, yld, pr) => (yld, pr) })\n      println(\"auc: \" + area)\n      for ((conf, yld, pr) <- Analysis.precisionYieldMeta(input)) {\n        writer.println(conf + \"\\t\" + yld + \"\\t\" + pr)\n      }\n    }\n  }\n}\n\n/** Merge precision yield points into a single file, \n  * usually so they can be graphed together.\n  * \n  * @author Michael Schmitz\n  */\nobject MergePYFiles {\n  abstract class Settings {\n    def files: List[File]\n  }\n  \n  def main(args: Array[String]) {\n    val settings = new Settings {\n      var files: List[File] = Nil\n    }\n    \n    val parser = new OptionParser(\"mergepy\") {\n      arglist(\"<file>...\", \"input files\", { file: String => settings.files = new File(file) :: settings.files })\n    }\n    \n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) {\n    val points = for ((file, i) <- settings.files.zipWithIndex) yield {\n      using(io.Source.fromFile(file, \"UTF8\")) { source =>\n        source.getLines.dropWhile(line => !(line contains \"\\t\")).map { line =>\n          val Array(_, yld, prec) = line.split(\"\\t\", -1)\n          (yld.toInt, (i, prec.toDouble))\n        }.toList\n      }\n    }\n    \n    println(\"\\t\" + settings.files.map(_.getName).mkString(\"\\t\"))\n    points.flatten.sortBy(_._1).reverse.groupBy(_._1).toSeq.sortBy(_._1).reverse foreach { case (grp, seq) => \n      var vec = Vector.fill[String](settings.files.size)(\"\")\n      seq.foreach { \n        case (k, (i, v)) => vec = vec updated (i, \"%1.4f\" format v)\n      }\n      println(grp+\"\\t\"+vec.mkString(\"\\t\")) \n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/eval/RankPatterns.scala",
    "content": "package edu.knowitall.openparse.eval\n\nimport java.io.{PrintWriter, File}\n\nimport edu.knowitall.common.Resource.using\n\nimport scopt.OptionParser\n\n/** Read a scored file and rank the patterns by their precision and frequency.\n  * \n  * @author Michael Schmitz\n  */\nobject RankPatterns {\n  abstract class Settings {\n    def scoredFile: File\n    def outputFile: Option[File]\n  }\n  \n  def main(args: Array[String]) = {\n    val settings = new Settings {\n      var scoredFile: File = _\n      var outputFile: Option[File] = None \n    }\n    \n    val parser = new OptionParser(\"rankpat\") {\n      var scoredFile: File = _\n\n      arg(\"scored\", \"scored extractions file\", { path: String => settings.scoredFile = new File(path) })\n      argOpt(\"output\", \"output file\", { path: String => settings.outputFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n  \n  def run(settings: Settings) = {\n    val scores = Score.loadScoredFile(settings.scoredFile).sortBy(_.confidence).reverse\n    val grouped = scores.groupBy(_.extra(0))\n      .mapValues { scoreds =>\n        val yld = scoreds.map(scored => if (scored.score.getOrElse(throw new IllegalArgumentException(\"unscored extraction: \" + scored))) 1 else 0).sum\n        val precision = yld.toDouble / scoreds.size.toDouble\n        (precision, scoreds.size)\n      }\n\n    using {\n      settings.outputFile match {\n        case Some(file) => new PrintWriter(file, \"UTF8\")\n        case None => new PrintWriter(System.out)\n      }\n    } { writer =>\n      for ((pattern, (p, y)) <- grouped.toSeq.sortBy(_._2).reverse) {\n        writer.println(pattern+\"\\t\"+p+\"\\t\"+y)\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/eval/Score.scala",
    "content": "package edu.knowitall.openparse.eval\n\nimport java.io.{PrintWriter, File}\n\nimport scala.io.Source\n\nimport edu.knowitall.common.Resource.using\n\nimport scopt.OptionParser\n\n/** A main method to annotate extractions,\n  * using a gold set for previously scored extractions.\n  *\n  * @author Michael Schmitz\n  */\nobject Score {\n  abstract class Settings {\n    def extractionFile: File\n    def outputFile: File\n    def goldFile: Option[File]\n    def goldOutputFile: Option[File]\n    def confidenceThreshold: Double\n    def skipAll: Boolean\n    def keepSkipped: Boolean\n  }\n\n  def main(args: Array[String]) = {\n    object settings extends Settings {\n      var extractionFile: File = _\n      var outputFile: File = _\n      var goldFile: Option[File] = None\n      var goldOutputFile: Option[File] = None\n      var confidenceThreshold = 0.0\n      var skipAll = false\n      var keepSkipped = false\n    }\n\n    val parser = new OptionParser(\"scoreextr\") {\n      arg(\"extrs\", \"extractions\", { path: String => settings.extractionFile = new File(path) })\n      arg(\"output\", \"scored output\", { path: String => settings.outputFile = new File(path) })\n      opt(\"g\", \"gold\", \"gold set\", { path: String => settings.goldFile = Some(new File(path)) })\n      opt(\"u\", \"goldoutput\", \"output for updated gold set\", { path: String => settings.goldOutputFile = Some(new File(path)) })\n      doubleOpt(\"t\", \"threshold\", \"confidence threshold for considered extractions\", { x: Double => settings.confidenceThreshold = x })\n      opt(\"skip-all\", \"don't prompt for items not in the gold set\", { settings.skipAll = true })\n      opt(\"keep-skipped\", \"keep unannotated extractions in output file\", { settings.keepSkipped = true })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) {\n    val gold = settings.goldFile match {\n      case None => Map[String, Boolean]()\n      case Some(goldFile) => GoldSet.load(goldFile)\n    }\n\n    val (scoreds, golden) = using(Source.fromFile(settings.extractionFile, \"UTF8\")) { source =>\n      score(source.getLines, gold, settings.confidenceThreshold, !settings.skipAll)\n    }\n\n    // print the scored extractions\n    using(new PrintWriter(settings.outputFile, \"UTF8\")) { writer =>\n      for (scored <- scoreds.filter(scored => settings.keepSkipped || scored.score.isDefined)) {\n        writer.println(scored.toRow)\n      }\n    }\n\n    // output updated gold set\n    settings.goldOutputFile match {\n      case Some(file) =>\n        using(new PrintWriter(file, \"UTF8\")) { writer =>\n          golden.foreach { case (k, v) => writer.println((if (v) 1 else 0) + \"\\t\" + k) }\n        }\n      case None =>\n    }\n  }\n\n  def loadScoredFile(file: File): Seq[Scored] = {\n    using(Source.fromFile(file, \"UTF8\")) { source =>\n      source.getLines.map { line =>\n        Scored.fromRow(line)\n      }.toList\n    }\n  }\n\n  def score(lines: Iterator[String], gold: Map[String, Boolean], confidenceThreshold: Double, prompt: Boolean) = {\n    def stringDistance(s1: String, s2: String): Int = {\n      def minimum(i1: Int, i2: Int, i3: Int) = math.min(math.min(i1, i2), i3)\n\n      val dist = Array.ofDim[Int](s1.length + 1, s2.length + 1)\n\n      for (idx <- 0 to s1.length) dist(idx)(0) = idx\n      for (jdx <- 0 to s2.length) dist(0)(jdx) = jdx\n\n      for (idx <- 1 to s1.length; jdx <- 1 to s2.length)\n        dist(idx)(jdx) = minimum (\n          dist(idx-1)(jdx  ) + 1,\n          dist(idx  )(jdx-1) + 1,\n          dist(idx-1)(jdx-1) + (if (s1(idx-1) == s2(jdx-1)) 0 else 1)\n        )\n      dist(s1.length)(s2.length)\n    }\n\n    def suggest(extr: String) = {\n      for {\n        k <- gold.keys;\n        if stringDistance(k, extr) < extr.length / 2\n      } yield ((k, gold(k)))\n    }\n\n    def promptScore(index: Int, extr: String, confidence: String, rest: Seq[Any]): Option[Boolean] = {\n      println()\n      System.out.println(\"Please score \" + index + \": \" + confidence + \":\" + extr + \". (1/y/0/n/skip) \")\n      if (rest.length > 0) println(rest.mkString(\"\\t\"))\n      suggest(extr) foreach { case (k, v) =>\n        println(\"suggest: \" + v + \"\\t\" + k)\n      }\n      readLine match {\n        case \"0\" | \"y\" => Some(false)\n        case \"1\" | \"n\" => Some(true)\n        case \"s\" | \"skip\" => None\n        case _ => promptScore(index, extr, confidence, rest)\n      }\n    }\n\n    var golden = gold\n\n    val scored = for {\n      (line, index) <- lines.zipWithIndex\n      val Array(confidence, extr, rest @ _*) = line.split(\"\\t\")\n      val conf = confidence.toDouble\n\n      if (conf >= confidenceThreshold)\n\n      val scoreOption = gold.get(extr) match {\n        case Some(score) => Some(score)\n        case None if prompt => promptScore(index, extr, confidence, rest)\n        case None => None\n      }\n    } yield {\n      scoreOption match {\n        case Some(score) =>\n          // update golden set\n          golden += extr -> score\n        case None =>\n      }\n\n      // output\n      Scored(scoreOption, conf, extr, rest)\n    }\n\n    (scored.toList, golden)\n  }\n}\n\ncase class Scored(score: Option[Boolean], confidence: Double, extraction: String, extra: Seq[String]) {\n  def toRow = (if (!score.isDefined) \"\" else if (score.get == true) \"1\" else \"0\")+\"\\t\"+confidence+\"\\t\"+extraction+\"\\t\"+extra.mkString(\"\\t\")\n}\n\nobject Scored {\n  def fromRow(row: String) = {\n    val parts = row.split(\"\\t\")\n    val score = parts(0) match {\n      case \"1\" => true\n      case \"0\" => false\n      case _ => throw new IllegalArgumentException(\"must be 1 or 0: \" + parts(0))\n    }\n    val confidence = parts(1).toDouble\n    val extraction = parts(2)\n    val extra = parts.drop(3)\n\n    Scored(Some(score), confidence, extraction, extra)\n  }\n}\n\nobject GoldSet {\n  def load(file: File) = {\n    using(Source.fromFile(file, \"UTF8\")) { source =>\n      source.getLines.map { line =>\n        val parts = line.split(\"\\t\")\n        parts(1) -> (if (parts(0) == \"1\") true else false)\n      }.toMap\n    }\n  }\n\n  def save(gold: Map[String, Boolean], file: File) = {\n    using(new PrintWriter(file, \"UTF8\")) { writer =>\n      gold.foreach { case (extr, correct) => writer.println((if (correct) 1 else 0) + \"\\t\" + extr) }\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/eval/StatisticalSignificance.scala",
    "content": "package edu.knowitall.openparse.eval\n\nimport java.io.File\n\nimport edu.knowitall.common.{Random, Analysis}\n\nimport scopt.OptionParser\n\n/** Compute the statistical significance of scored extractions to a baseline.\n  * \n  * @author Michael Schmitz\n  */\nobject StatisticalSignificance {\n  abstract class Settings {\n    def iterations: Int\n    def systemFile: File\n    def baselineFile: File\n  }\n\n  def main(args: Array[String]) {\n    object settings extends Settings {\n      var systemFile: File = _\n      var baselineFile: File = _\n      var iterations: Int = 1000\n    }\n\n    val parser = new OptionParser(\"statsig\") {\n      arg(\"system\", \"scored extractions from the new system\", { path: String => settings.systemFile = new File(path) })\n      arg(\"baseline\", \"scored extractions from the baseline system\", { path: String => settings.baselineFile = new File(path) })\n      intOpt(\"i\", \"iterations\", \"number of iterations\", { n: Int => settings.iterations = n })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  /**\n    * Uses the bootstrap test for statistical significance.  \n    * This is described in the following paper:\n    *\n    *    http://maroo.cs.umass.edu/pub/web/getpdf.php?id=744\n    *\n    * Note that this function is agnostic to the order of \n    * `system` and `baseline`.\n    * \n    * @param  system  a metric for the system, i.e. AUC\n    * @param  baseline  a metric for the baseline, i.e. AUC\n    * @param  sample  a lambda that resamples the systems, returning the metric, i.e. AUC\n    * @param  iterations  the number of iterations\n    */\n  def bootstrapTestWithMetric(system: Double, \n      baseline: Double, \n      sample: ()=>(Double, Double), \n      iterations: Int) = {\n    val difference = math.abs(system - baseline)\n    val sampled = for (i <- 0 until iterations) yield (sample())\n    val differences = sampled.map { case (sys, base) => math.abs(sys - base) }\n    val average = differences.sum / differences.size.toDouble\n    val normed = differences.map(_ - average)\n    val pscore = normed.count(_ >= difference).toDouble / normed.size.toDouble\n\n    pscore\n  }\n\n  /**\n    * Uses the bootstrap test for statistical significance.  \n    * This is described in the following paper:\n    *\n    *    http://maroo.cs.umass.edu/pub/web/getpdf.php?id=744\n    *\n    * Note that this function is agnostic to the order of \n    * `system` and `baseline`.\n    * \n    * @param  system  a metric for the system, i.e. AUC\n    * @param  baseline  a metric for the baseline, i.e. AUC\n    * @param  sample  a lambda that resamples the systems, returning the metric, i.e. AUC\n    * @param  iterations  the number of iterations\n    */\n  def bootstrapTestWithScores(system: Seq[Boolean], \n    baseline: Seq[Boolean], \n    metric: Seq[Boolean]=>Double, \n    iterations: Int, rand: util.Random) = {\n\n    def sample(extrs: Seq[Boolean]) = \n      metric(extrs.map(extr=>Random.choose(extrs, extrs.size, rand)))\n\n    bootstrapTestWithMetric(metric(system), metric(baseline), \n        ()=>(sample(system), sample(baseline)), iterations)\n  }\n\n  def run(settings: Settings) {\n    val rand = new util.Random\n\n    def areaUnderCurve(scoreds: Seq[Scored]) = {\n      val points = Analysis.precisionYieldMeta(scoreds.map(extr => (extr.confidence, extr.score.get)))\n      Analysis.areaUnderCurve(points.map { case (conf, yld, prc) => (yld, prc) })\n    }\n\n    val systemExtractionsAll: Seq[Scored] =\n      Score.loadScoredFile(settings.systemFile).sortBy(-_.confidence)\n    val baselineExtractionsAll: Seq[Scored] = \n      Score.loadScoredFile(settings.baselineFile).sortBy(-_.confidence)\n\n    val sentences = (systemExtractionsAll.map(_.extra(0)).toSet ++ baselineExtractionsAll.map(_.extra(0)).toSet).toSeq.take(50).toSet\n\n    val systemExtractions = systemExtractionsAll.filter(extr => sentences.contains(extr.extra(0)))\n    val baselineExtractions = baselineExtractionsAll.filter(extr => sentences.contains(extr.extra(0)))\n\n    def sample(): (Double, Double) = {\n      def helper(extrs: Seq[Scored]) = {\n        val sent = sentences.map(extr=>Random.choose(sentences, sentences.size, rand))\n        val set = sent.flatMap(sent => extrs.filter(sent == _.extra(0))).toSeq.sortBy(_.confidence)\n        val auc = areaUnderCurve(set)\n        auc\n      }\n\n      (helper(systemExtractions), helper(baselineExtractions))\n    }\n\n    val pscore = bootstrapTestWithMetric(\n      areaUnderCurve(systemExtractions),\n      areaUnderCurve(baselineExtractions),\n      sample, settings.iterations)\n\n    println(pscore)\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/extract/Extraction.scala",
    "content": "package edu.knowitall.openparse.extract\n\nimport scala.collection.{SortedSet, Set}\nimport edu.knowitall.collection.immutable.graph.pattern.Match\nimport edu.knowitall.collection.immutable.graph.{Direction, Graph, DirectedEdge}\nimport edu.knowitall.collection.immutable.Interval\nimport edu.knowitall.openparse.GraphExpansions.{expand, components, augment}\nimport edu.knowitall.openparse.OpenParse\nimport edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph}\nimport edu.knowitall.ollie.Ollie.stemmer\nimport edu.knowitall.tool.stem.Stemmer\nimport Extraction.{Part, ClausalComponent, AdverbialModifier}\nimport edu.knowitall.tool.parse.graph.LabelEdgeMatcher\nimport edu.knowitall.collection.immutable.graph.pattern.DirectedEdgeMatcher\n\n/** A representation of an OpenParse extraction.\n  *\n  * @author Michael Schmitz\n  */\nabstract class Extraction(val relLemmas: Set[String]) {\n  /** the text of the first argument */\n  def arg1Text: String\n  /** the text of the relation */\n  def relText: String\n  /** the text of the second argument */\n  def arg2Text: String\n\n  def this(relText: String) = this(relText.split(\" \").map(implicitly[Stemmer].lemmatize(_)).toSet -- OpenParse.LEMMA_BLACKLIST)\n\n  override def equals(that: Any) = that match {\n    case that: Extraction => (that canEqual this) && that.arg1Text == this.arg1Text && that.relText == this.relText && that.arg2Text == this.arg2Text\n    case _ => false\n  }\n  def canEqual(that: Any) = that.isInstanceOf[Extraction]\n  override def hashCode = arg1Text.hashCode + 39 * (relText.hashCode + 39 * arg2Text.hashCode)\n\n  override def toString() = Iterable(arg1Text, relText, arg2Text).mkString(\"(\", \"; \", \")\")\n\n  def softMatch(that: Extraction) =\n    (that.arg1Text.contains(this.arg1Text) || this.arg1Text.contains(that.arg1Text)) &&\n      this.relLemmas == that.relLemmas &&\n      (that.arg2Text.contains(this.arg2Text) || this.arg2Text.contains(that.arg2Text))\n}\n\n/** A simple representation of an OpenParse extraction.\n  *\n  * @author Michael Schmitz\n  */\nclass SimpleExtraction(\n  override val arg1Text: String,\n  override val relText: String,\n  relLemmas: Set[String],\n  override val arg2Text: String)\n  extends Extraction(relLemmas) {\n\n  def this(arg1Text: String, relText: String, arg2Text: String) = this(arg1Text,\n    relText,\n    relText.split(\" \").map(implicitly[Stemmer].lemmatize(_)).toSet -- OpenParse.LEMMA_BLACKLIST,\n    arg2Text)\n\n  def replaceRelation(relation: String) =\n    new SimpleExtraction(this.arg1Text, this.relText, this.relLemmas, this.arg2Text)\n}\n\n/** A more informative representation of an OpenParse extraction.\n  *\n  * @author Michael Schmitz\n  */\nclass DetailedExtraction(\n  val extractor: PatternExtractor,\n  val `match`: Match[DependencyNode],\n  val arg1: Part,\n  val rel: Part,\n  val arg2: Part,\n  val clausal: Option[ClausalComponent] = None,\n  val modifier: Option[AdverbialModifier] = None)\n  extends Extraction(rel.text) {\n\n  override def arg1Text = arg1.text\n  override def relText = rel.text\n  override def arg2Text = arg2.text\n\n  def this(extractor: PatternExtractor, mch: Match[DependencyNode],\n    arg1Nodes: SortedSet[DependencyNode],\n    relNodes: SortedSet[DependencyNode],\n    arg2Nodes: SortedSet[DependencyNode]) =\n    this(extractor, mch, new Part(arg1Nodes), new Part(relNodes), new Part(arg2Nodes))\n\n  /** all the nodes in this extraction */\n  def nodes = arg1.nodes ++ rel.nodes ++ arg2.nodes\n\n  /** all the edges in this extraction */\n  def edges = `match`.bipath.path\n\n  def replaceRelation(relation: String) =\n    new DetailedExtraction(extractor, `match`, this.arg1, Part(this.rel.nodes, relation), this.arg2, this.clausal, this.modifier)\n}\n\nobject DetailedExtraction {\n  def nodesToString(nodes: Iterable[DependencyNode]) = nodes.iterator.map(_.text).mkString(\" \")\n}\n\n\n/** Includes logic for expanding relations and arguments.\n  *\n  * @author Michael Schmitz\n  */\nobject Extraction {\n  /** Representation of a part of an extraction.\n    *\n    * @author Michael Schmitz\n    */\n  case class Part(nodes: SortedSet[DependencyNode], text: String) {\n    def this(nodes: SortedSet[DependencyNode]) = {\n      this(nodes, DetailedExtraction.nodesToString(nodes))\n    }\n\n    def this(nodes: Iterable[DependencyNode]) = {\n      this(SortedSet[DependencyNode]() ++ nodes, DetailedExtraction.nodesToString(nodes))\n    }\n\n    def span = Interval.span(nodes.map(_.indices))\n  }\n  object Part {\n    def connections(m: Match[DependencyNode], node: DependencyNode): Set[Graph.Edge[DependencyNode]] = {\n      m.edges.filter(edge => edge.source == node || edge.dest == node).toSet\n    }\n\n    def connections(m: Match[DependencyNode], nodes: Set[DependencyNode]): Set[Graph.Edge[DependencyNode]] = {\n      m.edges.filter(edge => nodes.contains(edge.source) || nodes.contains(edge.dest)).toSet\n    }\n\n    def connections(m: Match[DependencyNode], nodes: Seq[DependencyNode]): Set[Graph.Edge[DependencyNode]] = {\n      m.edges.filter(edge => nodes.contains(edge.source) || nodes.contains(edge.dest)).toSet\n    }\n  }\n  case class ClausalComponent(rel: Part, arg: Part) {\n    def text = arg.text + \" \" + rel.text\n  }\n  case class AdverbialModifier(contents: Part) {\n    def text = contents.text\n  }\n\n  private val attributionPattern = DependencyPattern.deserialize(\"{old} <ccomp< {rel} >nsubj> {arg}\")\n  private val conditionalPattern = DependencyPattern.deserialize(\"{old} <ccomp< {rel} >nsubj> {arg}\")\n  def fromMatch(expand: Boolean)(graph: DependencyGraph, m: Match[DependencyNode], ex: PatternExtractor): Iterable[DetailedExtraction] = {\n    def clausalComponent(node: DependencyNode, until: Set[DependencyNode]) = {\n      attributionPattern.apply(graph.graph, node) match {\n        case List(m) =>\n          assume(m.nodeGroups.get(\"rel\").isDefined)\n          assume(m.nodeGroups.get(\"arg\").isDefined)\n\n          val rel = m.nodeGroups(\"rel\").node\n          val arg = m.nodeGroups(\"arg\").node\n\n          val Part(expandedRelNodes, expandedRelText) = expandRelation(graph, rel, until + arg).head\n          val expandedArg = expandArgument(graph, arg, until + rel)\n\n          Some(ClausalComponent(Part(expandedRelNodes, expandedRelText), Part(expandedArg, DetailedExtraction.nodesToString(expandedArg))))\n        case _ => None\n      }\n    }\n\n    def adverbialModifier(node: DependencyNode, until: Set[DependencyNode]): Option[AdverbialModifier] = {\n      val neighbors = graph.graph.neighbors(node, dedge => dedge.dir == Direction.Down && dedge.edge.label == \"advcl\")\n      val nodes = neighbors.flatMap(graph.graph.inferiors(_))\n      if (nodes.isEmpty) None\n      else {\n        val span = Interval.span(nodes.map(_.indices))\n        val clause = graph.nodes.filter(node => span.superset(node.indices))\n        Some(AdverbialModifier(Part(clause, DetailedExtraction.nodesToString(clause))))\n      }\n    }\n\n    val groups = m.nodeGroups\n\n    val rels = groups.filter(_._1 startsWith \"rel\").toSeq.sortBy(_._1).map(_._2.node)\n    if (rels.isEmpty) (throw new IllegalArgumentException(\"no rel: \" + m))\n    val arg1 = groups.get(\"arg1\").map(_.node) getOrElse (throw new IllegalArgumentException(\"no arg1: \" + m))\n    val arg2 = groups.get(\"arg2\").map(_.node) getOrElse (throw new IllegalArgumentException(\"no arg2: \" + m))\n\n    val expandedArg1 = if (expand) expandArgument(graph, arg1, rels.toSet) else SortedSet(arg1)\n    val expandedArg2 = if (expand) expandArgument(graph, arg2, rels.toSet) else SortedSet(arg2)\n    val expandRels =\n      // hack to exclude rel rel extractions with a second nsubj\n      if (rels.size > 0 && rels.tail.exists(rel => graph.graph.dedges(rel).exists(dedge => dedge.dir == Direction.Down && dedge.edge.label == \"nsubj\"))) {\n        Set.empty\n      }\n      else if (expand) {\n        import scalaz._\n        import Scalaz._\n\n        val expansions = rels.map(rel => expandRelation(graph, rel, expandedArg1 ++ expandedArg2).toList).toList.sequence\n\n        expansions.map(expansion => Part(expansion.map(_.nodes).reduce(_ ++ _), expansion.map(_.text).mkString(\" \")))\n      } else {\n        Set(Part(SortedSet.empty[DependencyNode] ++ rels, rels.map(_.text).mkString(\" \")))\n      }\n\n    for {\n      Part(expandedRelNodes, expandedRelText) <- expandRels\n      val nodes = expandedArg1 ++ expandedArg2 ++ expandedRelNodes\n      val clausal = rels.flatMap(rel => clausalComponent(rel, nodes)).headOption\n      val modifier = rels.flatMap(rel => adverbialModifier(rel, nodes)).headOption\n\n      // arguments don't overlap\n      if (!(Interval.span(expandedArg1.map(_.indices)(scala.collection.breakOut)) intersects Interval.span(expandedArg2.map(_.indices)(scala.collection.breakOut))))\n    } yield (\n      new DetailedExtraction(ex, m, new Part(expandedArg1), Part(expandedRelNodes, expandedRelText), new Part(expandedArg2), clausal = clausal, modifier = modifier)\n    )\n\n  }\n\n  private val argumentExpansionLabels = Set(\"det\", \"prep_of\", \"amod\", \"num\", \"number\", \"nn\", \"poss\", \"quantmod\", \"neg\")\n  def expandArgument(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode]): SortedSet[DependencyNode] = {\n    def expandNode(node: DependencyNode) = {\n      val expansion = expand(graph, node, until, argumentExpansionLabels)\n      if (expansion.exists(_.isProperNoun)) expansion\n      else expansion ++ components(graph, node, Set(\"rcmod\", \"infmod\", \"partmod\", \"ref\", \"prepc_of\"), until, false).flatten\n    }\n\n    // expand over any conjunction/disjunction edges to non-verbs\n    val nodes = graph.graph.connected(node, (dedge: DirectedEdge[DependencyNode]) =>\n      !(dedge.end.postag startsWith \"VB\") && (dedge.edge.label == \"conj_and\" || dedge.edge.label == \"conj_or\"))\n\n    if (nodes.size == 1) {\n      // there are no conjunctive edges\n      expandNode(node)\n    }\n    else {\n      val flat = nodes.map(expandNode).flatten\n      val span = Interval.span(flat.map(_.indices).toSeq)\n      // take the nodes that cover all the nodes found\n      graph.nodes.filter(node => span.superset(node.indices))\n    }\n  }\n\n  /** Expand the relation nodes of a match.\n    *\n    * Multiple parts can be returned if there are multiple dobj or iobjs.\n    *\n    * @return  parts  the part (or multiple parts) that describes the relation\n    */\n  def expandRelation(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode]): Set[Part] = {\n    // count the adjacent dobj edges.  We will only expand across\n    // dobj components if there is exactly one adjacent dobj edge.\n    // This edge may already be used, but in that case we won't\n    // expand over it because of the until set.\n    val dobjCount = graph.graph.edges(node).count(_.label == \"dobj\")\n    val iobjCount = graph.graph.edges(node).count(_.label == \"iobj\")\n\n    var attachLabels = Set[String]()\n    if (dobjCount == 1) attachLabels += \"dobj\"\n    if (iobjCount == 1) attachLabels += \"iobj\"\n\n    /*\n     * acomp: \"She looks beautiful on Thursday.\"\n     */\n    def pred(edge: Graph.Edge[DependencyNode]) =\n      // make sure we don't re-add the relation node\n      edge.dest != node && (\n          // attach adverbs\n          edge.label == \"advmod\" && edge.dest.postag == \"RB\" ||\n          edge.label == \"aux\" || edge.label == \"cop\" || edge.label == \"auxpass\" || edge.label == \"prt\" || edge.label == \"acomp\")\n\n    // expand across noun label for relational nouns\n    // i.e. \"He is the *best* president of the USA\"\n    val expandNounLabels =\n      if (node.postag startsWith \"NN\") expand(graph, node, until, argumentExpansionLabels)\n      else expand(graph, node, until, Set(\"det\", \"amod\", \"num\", \"number\", \"nn\", \"poss\", \"quantmod\", \"neg\"))\n\n    // modifiers on copulars are stored on a different node\n    // i.e. in \"he *will* be the president\"\n    val cops = graph.graph.predecessors(node, (e: Graph.Edge[DependencyNode])=>e.label == \"cop\").headOption\n    val expandCopLabels = cops.map(cop => augment(graph, cop, until, pred)).getOrElse(List.empty)\n\n    def f(s: Set[List[DependencyNode]]): Set[List[DependencyNode]] =\n      if (s.isEmpty) Set(List())\n      else s\n    val dobjs = f(components(graph, node, Set(\"dobj\"), until, true))\n    val iobjs = f(components(graph, node, Set(\"iobj\"), until, true))\n\n    for (dobj <- dobjs; iobj <- iobjs) yield {\n      val expansion = expandCopLabels ++ (expandNounLabels ::\n        // make sure that we don't use a label that was\n        // already captured by expandNounlabels.  This\n        // can happen when a verb edges goes between two\n        // noun labels.\n        ((augment(graph, node, until, pred).map(_ -- expandNounLabels)) :+\n          // add subcomponents\n          (SortedSet[DependencyNode]() ++ dobj) :+\n          (SortedSet[DependencyNode]() ++ iobj)).filterNot { c =>\n            // don't add empty components\n            c.isEmpty ||\n              // don't add components with just \"who\" or \"whom\"\n              c.size == 1 && c.headOption.map(_.postag == \"WP\").getOrElse(false)\n          })\n\n      val sorted = expansion.sortBy(nodes => Interval.span(nodes.map(_.indices)))\n\n      // perform a more complicated node->text transformation\n      val texts = sorted.map(DetailedExtraction.nodesToString(_))\n      Part(expansion.reduce(_ ++ _), texts.mkString(\" \"))\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/extract/GeneralExtractor.scala",
    "content": "package edu.knowitall.openparse.extract\n\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match}\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph}\nimport edu.knowitall.ollie.Ollie.stemmer\nimport GeneralExtractor.logger\nimport edu.knowitall.openparse.ExtractorPattern\n\n/** An extractor that is purely specified by a pattern.\n  *\n  * @param  pattern  the pattern to extract\n  * @param  conf  the confidence of this extractor\n  *\n  * @author Michael Schmitz\n  */\nclass GeneralExtractor(pattern: ExtractorPattern, val conf: Double) extends PatternExtractor(pattern) {\n  import GeneralExtractor._\n\n  def this(pattern: Pattern[DependencyNode], conf: Double) =\n    this(new ExtractorPattern(pattern), conf)\n\n  protected def extractWithMatches(dgraph: DependencyGraph)(implicit\n    buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction],\n    validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = {\n\n    // apply pattern and keep valid matches\n    val matches = pattern(dgraph.graph)\n    if (!matches.isEmpty && logger.isDebugEnabled) logger.debug(\"matches: \" + matches.mkString(\", \"))\n\n    val filtered = matches.filter(validMatch(dgraph.graph))\n    if (!filtered.isEmpty && logger.isDebugEnabled) logger.debug(\"filtered: \" + filtered.mkString(\", \"))\n\n    for (m <- filtered; extr <- buildExtraction(dgraph, m, this)) yield {\n      (extr, m)\n    }\n  }\n\n  override def extract(dgraph: DependencyGraph)(implicit\n    buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction],\n    validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = {\n    logger.debug(\"pattern: \" + pattern)\n\n    val extractions = this.extractWithMatches(dgraph).map(_._1)\n    if (!extractions.isEmpty) logger.debug(\"extractions: \" + extractions.mkString(\", \"))\n\n    extractions\n  }\n\n  override def confidence(extr: Extraction): Double = {\n    this.conf\n  }\n\n  /** A maximum confidence for any extraction from this extractor.\n    * This is used for optimization.  If the minimum confidence is\n    * larger than the threshold, we don't need to run this extractor. */\n  override def maximumConfidence: Double = this.conf\n}\n\ncase object GeneralExtractor extends PatternExtractorType {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  def fromLines(lines: Iterator[String]): List[GeneralExtractor] = {\n    val patterns: List[(Pattern[DependencyNode], Int)] = lines.map { line =>\n        line.split(\"\\t\") match {\n          // full information specified\n          case Array(pat, count) => (DependencyPattern.deserialize(pat), count.toInt)\n          // assume a count of 1 if nothing is specified\n          case Array(pat) => logger.warn(\"warning: pattern has no count: \" + pat); (DependencyPattern.deserialize(pat), 1)\n          case _ => throw new IllegalArgumentException(\"line must have one or two columns: \" + line)\n        }\n      }.toList\n\n    (for ((p, conf) <- patterns) yield {\n      new GeneralExtractor(new ExtractorPattern(p), conf.toDouble)\n    }).toList\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/extract/PatternExtractor.scala",
    "content": "package edu.knowitall.openparse.extract\n\nimport java.io.File\nimport scala.io.Source\nimport edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match}\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}\nimport javax.naming.OperationNotSupportedException\nimport edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher\nimport edu.knowitall.openparse.ExtractorPattern\n\n/** An superclass for extractors based on patterns.\n  *\n  * @param  pattern  the pattern to extract\n  *\n  * @author Michael Schmitz\n  */\nabstract class PatternExtractor(val pattern: ExtractorPattern) {\n  def extract(dgraph: DependencyGraph)(implicit\n    buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction],\n    validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean): Iterable[DetailedExtraction]\n  def confidence(extr: Extraction): Double\n\n  /** A maximum confidence for any extraction from this extractor.\n    * This is used for optimization.  If the minimum confidence is\n    * larger than the threshold, we don't need to run this extractor.\n    */\n  def maximumConfidence: Double\n\n  override def toString = pattern.toString\n\n  def tabSerialize: String = throw new OperationNotSupportedException()\n\n  def prepMismatch: Boolean = false\n}\n\nobject PatternExtractor {\n  def tabDeserialize(seq: Seq[String]): (PatternExtractor, Seq[String]) = {\n    seq(0).toLowerCase match {\n      case \"template\" => TemplateExtractor.tabDeserialize(seq.drop(1))\n    }\n  }\n}\n\nabstract class PatternExtractorType {\n  def fromFile(file: File): Seq[PatternExtractor] = {\n    using (Source.fromFile(file, \"UTF8\")) { source =>\n      fromLines(source.getLines)\n    }\n\n  }\n  def fromLines(lines: Iterator[String]): Seq[PatternExtractor]\n\n  def name = this.getClass.getSimpleName\n}\n\nobject PatternExtractorType {\n  def apply(string: String) = string match {\n    case \"general\" => GeneralExtractor\n    case \"template\" => TemplateExtractor\n    case \"specific\" => SpecificExtractor\n    case _ => throw new IllegalArgumentException(\"unknown extractor: \" + string)\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/extract/SpecificExtractor.scala",
    "content": "package edu.knowitall.openparse.extract\n\nimport scala.Array.canBuildFrom\nimport edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match}\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.openparse.ExtractorPattern\n\n/** An extractor that is specified only with a pattern\n  * but only works for specific relation lemmas.\n  *\n  * @param  relation  the resulting relation string\n  * @param  relationLemmas  the acceptible matched lemmas\n  * @param  pattern  the pattern to extract\n  * @param  conf  the confidence of this extractor\n  *\n  * @author Michael Schmitz\n  */\nclass SpecificExtractor(val relation: String,\n  val relationLemmas: List[String],\n  pattern: ExtractorPattern, conf: Double)\nextends GeneralExtractor(pattern, conf) {\n\n  def this(relation: String, relationLemmas: List[String], pattern: Pattern[DependencyNode], conf: Double) =\n    this(relation, relationLemmas, new ExtractorPattern(pattern), conf)\n\n  override def extract(dgraph: DependencyGraph)(implicit\n    buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction],\n    validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = {\n    val extractions = super.extract(dgraph)\n    extractions.withFilter{ extr =>\n      val extrRelationLemmas = extr.rel.text.split(\" \").map(MorphaStemmer.lemmatize(_))\n      relationLemmas.forall(extrRelationLemmas.contains(_))\n    }.map(_.replaceRelation(relation))\n  }\n}\n\ncase object SpecificExtractor extends PatternExtractorType {\n  def fromLines(lines: Iterator[String]) = throw new UnsupportedOperationException\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/extract/TemplateExtractor.scala",
    "content": "package edu.knowitall.openparse.extract\n\nimport scala.util.matching.Regex\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match}\nimport edu.knowitall.collection.immutable.graph.Graph\nimport edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph}\nimport Template.group\nimport edu.knowitall.ollie.Ollie.stemmer\nimport edu.knowitall.tool.postag.Postagger\nimport edu.knowitall.tool.parse.graph.RegexEdgeMatcher\nimport edu.knowitall.tool.parse.graph.LabelEdgeMatcher\nimport edu.knowitall.openparse.ExtractorPattern\n\n/** An extractor that is specified by a pattern and a template.\n  * the template can add a \"to be\" and/or preposition word around\n  * the relation.  It can also change the preposition word to another\n  * preposition (i.e., switch \"of\" to \"in\").\n  *\n  * @param  template  a template in which to put the relation words\n  * @param  pattern  the pattern to extract\n  * @param  conf  the confidence of this extractor\n  *\n  * @author Michael Schmitz\n  */\nclass TemplateExtractor(val template: Template, pattern: ExtractorPattern, conf: Double)\nextends GeneralExtractor(pattern, conf) {\n\n  def this(template: Template, pattern: Pattern[DependencyNode], conf: Double) =\n    this(template, new ExtractorPattern(pattern), conf)\n\n  override def extract(dgraph: DependencyGraph)(implicit\n    buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction],\n    validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = {\n\n    val extractions = super.extractWithMatches(dgraph)\n\n    extractions.map{ case (extr, m) => template(extr, dgraph, m) }\n  }\n\n  override def tabSerialize = Iterable(\"Template\", template.serialize, pattern.serialize, conf.toString).mkString(\"\\t\")\n\n  override def prepMismatch: Boolean = {\n    val trailingPrep = TemplateExtractor.trailingPreposition.findFirstIn(template.serialize)\n    val lastPatternPrep = pattern.baseEdgeMatchers.flatMap {\n      case m: RegexEdgeMatcher if m.labelRegex == new Regex(\"\"\"prep_(.*)\"\"\") => Some(\"{prep}\")\n      case m: LabelEdgeMatcher if m.label startsWith \"prep_\" => Some(m.label.drop(5))\n      case _ => None\n    }.lastOption\n\n    trailingPrep == lastPatternPrep\n  }\n}\n\ncase object TemplateExtractor extends PatternExtractorType {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  private val trailingPreposition = new Regex(\"\\\\s(?:\" + Postagger.prepositions.mkString(\"|\") + \"|\\\\{prep\\\\})$\")\n\n  override def fromLines(lines: Iterator[String]): List[PatternExtractor] = {\n    val patterns: List[(Template, Pattern[DependencyNode], Double)] = lines.map { line =>\n      line.split(\"\\t\") match {\n        // full information specified\n        case Array(template, pat, conf) =>\n          (Template.deserialize(template), DependencyPattern.deserialize(pat), conf.toDouble)\n        // assume a count of 1 if nothing is specified\n        case Array(template, pat) =>\n          logger.warn(\"warning: pattern has no confidence: \" + pat);\n          (Template.deserialize(template), DependencyPattern.deserialize(pat), 1.0)\n        case _ => throw new IllegalArgumentException(\"line must have two or three columns: \" +line)\n      }\n    }.toList\n\n    val maxCount = patterns.maxBy(_._3)._3\n    (for ((template, pattern, conf) <- patterns) yield {\n      new TemplateExtractor(template, new ExtractorPattern(pattern), conf)\n    }).toList\n  }\n\n  def tabDeserialize(string: String) = {\n    val parts = string.split(\"\\t\")\n  }\n\n  def tabDeserialize(parts: Seq[String]): (TemplateExtractor, Seq[String]) = {\n    val Seq(templateString, patternString, confString, rest @ _*) = parts\n\n    val template = Template.deserialize(templateString)\n    val pattern = new ExtractorPattern(DependencyPattern.deserialize(patternString))\n    val conf = confString.toDouble\n\n    (new TemplateExtractor(template, pattern, conf), rest)\n  }\n}\n\ncase class Template(template: String, be: Boolean) {\n  import Template._\n  def apply(extr: DetailedExtraction, dgraph: DependencyGraph, m: Match[DependencyNode]) = {\n    def matchGroup(name: String): String = name match {\n      case \"rel\" => extr.relText\n      case \"arg1\" => extr.arg1Text\n      case \"arg2\" => extr.arg2Text\n      case _ => m.groups(name).text\n    }\n\n    // don't add the be if we attach a verb using a cop, aux, or auxpass edge.\n    // there are a lot of examples where adding \"be\" makes it very messy\n    //     \"She has practiced law, with Foo, Bar.\"\n    //     don't want: (Bar; be has practiced with; Foo)\n    // This is somewhat of a hack that makes bad patterns look less bad.\n    val prefix = if (be &&\n        !(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))) {\n      \"be\"\n    }\n    else \"\"\n\n    // pull out the modals because they must preceed the prefix\n    // also include \"to\"\n    val modals = extr.rel.nodes.filter(node => (node.postag startsWith \"MD\") ||\n        (node.postag == \"TO\"))\n\n    // horrible escape is required.  See JavaDoc for Match.replaceAll\n    // or https://issues.scala-lang.org/browse/SI-5437\n    var rel = group.replaceAllIn(template, (gm: Regex.Match) => matchGroup(gm.group(1))\n      .replaceAll(\"_\", \" \")\n      .replaceAll(\"\"\"\\\\\"\"\", \"\"\"\\\\\\\\\"\"\")\n      .replaceAll(\"\"\"\\$\"\"\", \"\"\"\\\\\\$\"\"\"))\n\n    if (!prefix.isEmpty) {\n      if (modals.isEmpty) {\n        rel = prefix + \" \" + rel\n      } else {\n        val regex = new Regex(\"(^.*\\\\b(?:\" + modals.iterator.map(_.text).mkString(\"|\") + \"))\\\\b\")\n        rel = regex.replaceAllIn(rel, \"$1 \" + prefix)\n      }\n    }\n\n    extr.replaceRelation(rel)\n  }\n\n  override def toString = (if (be) \"be \" else \"\") + template\n\n  def serialize = this.toString\n}\n\nobject Template {\n  val group = \"\"\"\\{(.*?)}\"\"\".r\n  def deserialize(string: String) = {\n    if (string.startsWith(\"be \")) {\n      Template(string.drop(3), true)\n    }\n    else {\n      Template(string, false)\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/template/BuildTemplates.scala",
    "content": "package edu.knowitall.openparse.template\n\nimport java.io.{PrintWriter, File}\n\nimport scala.Option.option2Iterable\nimport scala.annotation.elidable\nimport scala.collection.immutable\nimport scala.io.Source\nimport scala.util.matching.Regex\n\nimport org.slf4j.LoggerFactory\n\nimport edu.knowitall.collection.immutable.graph.pattern.{Matcher, ConjunctiveNodeMatcher, DirectedEdgeMatcher, CaptureEdgeMatcher}\nimport edu.knowitall.collection.immutable.Bag\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.enrich.Traversables.traversableOncePairTo\nimport edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ArgumentMatcher}\nimport edu.knowitall.tool.parse.graph.{RegexNodeMatcher, RegexEdgeMatcher, PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyNode}\nimport edu.knowitall.tool.postag.Postagger\nimport edu.knowitall.ollie.Ollie.stemmer\n\nimport scalaz.Scalaz._\nimport scalaz._\nimport Semigroup._\nimport scopt.OptionParser\n\n/** A main method for building template extractors from\n  * a bootstrapping set of relations, patterns, and their count.\n  *\n  * @author Michael Schmitz\n  */\nobject BuildTemplates {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  implicit def BagMonoid[T]: Monoid[Bag[T]] = new Monoid[Bag[T]] {\n    def append(f1: Bag[T], f2: => Bag[T]) = f1 ++ f2\n    def zero: Bag[T] = Bag.empty[T]\n  }\n  /*\n  implicit def BagSemigroup[T]: Semigroup[Bag[T]] = semigroup(_ ++ _)\n  implicit def BagZero[T]: Zero[Bag[T]] = zero(Bag.empty[T])\n  implicit def BagPure: Pure[Bag] = new Pure[Bag] {\n    def pure[T](x: => T) = Bag[T](x)\n  }\n  */\n\n\n  abstract class Settings {\n    def sourceFile: File\n    def destFile: Option[File]\n    def templateFile: Option[File]\n    def minCount: Int\n    def relationSemantics: Boolean\n    def slotSemantics: Boolean\n\n    def debug: Option[File]\n    def fromHistogram: Boolean\n\n    def filterNnEdge: Boolean\n    def filterAmodEdge: Boolean\n    def filterSideRel: Boolean\n    def filterPrepMismatch: Boolean\n\n    val minimumSemanticsCount = 5\n  }\n\n  def main(args: Array[String]) {\n    val settings = new Settings {\n      var sourceFile: File = null\n      var destFile: Option[File] = None\n      var templateFile: Option[File] = None\n      var minCount: Int = 5\n      var semantics: Boolean = false\n\n      var debug: Option[File] = None\n      var fromHistogram: Boolean = false\n\n      var filterNnEdge = false\n      var filterAmodEdge = false\n      var filterSideRel = false\n      var filterPrepMismatch = false\n\n      var relationSemantics = false\n      var slotSemantics = false\n    }\n\n    val parser = new OptionParser(\"buildtemp\") {\n      arg(\"source\", \"file with source relation, pattern pairs\", { path: String => settings.sourceFile = new File(path) })\n      argOpt(\"dest\", \"optional parameter to specify output to a file\", { path: String => settings.destFile = Some(new File(path)) })\n      opt(\"t\", \"reltemplates\", \"relation templates\", { path: String => settings.templateFile = Some(new File(path)) })\n      intOpt(\"n\", \"minimum\", \"minimum frequency for a pattern\", { min: Int => settings.minCount = min })\n\n      opt(\"relation-semantics\", \"add lexical restrictions\", { settings.relationSemantics = true })\n      opt(\"slot-semantics\", \"add lexical restrictions\", { settings.slotSemantics = true })\n      opt(\"filter-nnedge\", \"filter nn edges\", {settings.filterNnEdge = true} )\n      opt(\"filter-amodedge\", \"filter amod edges\", {settings.filterAmodEdge = true} )\n      opt(\"filter-siderel\", \"filter relation on side\", {settings.filterSideRel = true} )\n      opt(\"filter-prepmismatch\", \"filter prep mismatch\", {settings.filterPrepMismatch = true} )\n\n      opt(\"from-histogram\", \"input is the histogram\", { settings.fromHistogram = true })\n      opt(\"d\", \"debug\", \"directory to output debug files\", { path: String => settings.debug = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def order(items: TraversableOnce[((Any, Any), Attrib)]) =\n    items.toSeq.sortBy(item => (-item._2.count, item._1.toString))\n\n  def output(file: File, items: TraversableOnce[((Any, Any), Attrib)]): Unit = {\n    using (new PrintWriter(file, \"UTF8\")) { pw =>\n      outputDetailed(pw, items)\n    }\n  }\n\n  def output(writer: PrintWriter, items: TraversableOnce[((Any, Any), Attrib)]): Unit = {\n    items.foreach {\n      case ((rel, pattern), attrib) =>\n        writer.println(rel + \"\\t\" + pattern + \"\\t\" + attrib.count)\n    }\n  }\n\n  def outputDetailed(file: File, items: TraversableOnce[((Any, Any), Attrib)]): Unit = {\n    using (new PrintWriter(file, \"UTF8\")) { pw =>\n      outputDetailed(pw, items)\n    }\n  }\n\n  def outputDetailed(writer: PrintWriter, items: TraversableOnce[((Any, Any), Attrib)]): Unit = {\n    items.foreach {\n      case ((rel, pattern), attrib) =>\n        writer.println(rel + \"\\t\" + pattern + \"\\t\" + attrib.count + \"\\t\" + attrib.slots.asMap.mkString(\"\\t\"))\n    }\n  }\n\n  def outputLookup[K, V](file: File, items: Iterable[(K, Iterable[V])]) = {\n    using (new PrintWriter(file, \"UTF8\")) { pw =>\n      items.foreach { case (key, values) =>\n        pw.println(key+\"\\t\"+values.mkString(\"\\t\"))\n      }\n    }\n  }\n\n  case class Attrib(count: Int, slots: Bag[String] = Bag.empty, rels: immutable.SortedSet[String] = immutable.SortedSet.empty, mismatch: Boolean = false) {\n    def plus(that: Attrib) = Attrib(this.count + that.count, this.slots merge that.slots, this.rels ++ that.rels, this.mismatch | that.mismatch)\n  }\n  implicit def AttribMonoid: Monoid[Attrib] = new Monoid[Attrib] {\n    def append(f1: Attrib, f2: => Attrib) = f1 plus f2\n    def zero: Attrib = Attrib(0, Bag.empty[String], immutable.SortedSet.empty[String])\n  }\n\n\n  def run(settings: Settings) {\n    val prepRegex = new Regex(\"^(.*?)\\\\s+((?:\"+Postagger.prepositions.map(_.replaceAll(\" \", \"_\")).mkString(\"|\")+\"))$\")\n\n    def relPrep(rel: String) = {\n      rel match {\n        case prepRegex(rel, prep) => Some(prep)\n        case rel => None\n      }\n    }\n\n    def relationOnSide: PartialFunction[ExtractorPattern, Boolean] =\n    { case pattern =>\n        pattern.nodeMatchers.head.isInstanceOf[RelationMatcher] ||\n        pattern.nodeMatchers.tail.isInstanceOf[RelationMatcher]\n    }\n\n    def nnEdge: PartialFunction[ExtractorPattern, Boolean] =\n    { case pattern => pattern.baseEdgeMatchers.exists {\n        case m: LabelEdgeMatcher => m.label == \"nn\"\n        case _ => false\n      }\n    }\n\n    def amodEdge: PartialFunction[ExtractorPattern, Boolean] =\n    { case pattern => pattern.baseEdgeMatchers.exists {\n        case m: LabelEdgeMatcher => m.label == \"amod\"\n        case _ => false\n      }\n    }\n\n    def prepMismatch: PartialFunction[((String, ExtractorPattern)), Boolean] =\n    { case ((rel, pattern)) =>\n        relPrep(rel) match {\n          case Some(relationPrep) =>\n            val edgePreps = pattern.baseEdgeMatchers.collect {\n              case m: LabelEdgeMatcher if m.label startsWith \"prep_\" => m.label.drop(5).replaceAll(\"_\", \" \")\n            }\n            edgePreps.exists(_ != relationPrep)\n          case None => false\n        }\n    }\n\n    // extract lemmas from a relation string\n    def baseRelLemmas(rel: String): Option[String] = {\n      def clean(rel: String) = {\n        rel.split(\"\\\\s+\").iterator.filterNot(_.isEmpty).filterNot(_==\"be\").filterNot(_==\"{prep}\").toSeq.lastOption.map(Some(_)).getOrElse(None)\n      }\n      rel match {\n        case prepRegex(rel, prep) => clean(rel)\n        case rel => clean(rel)\n      }\n    }\n\n    // lookup a relation in a map to get the template\n    val templatesMap = settings.templateFile.map { templateFile =>\n      using(Source.fromFile(templateFile)) { source =>\n        source.getLines.map { line =>\n          val Array(rel, template) = line.split(\"\\t\")\n          (rel, template)\n        }.toMap.withDefault((x: String)=>x)\n      }\n    }.getOrElse(Map().withDefault((x: String)=>x))\n\n    // build a template from the supplied relation\n    def buildTemplate(string: String) = {\n      // build a template from the supplied relation WITHOUT a preposition\n      def templateFromRel(rel: String) =\n        rel.split(\"\\\\s+\").iterator.map {\n          case s@\"be\" => s\n          case s@\"{prep}\" => s\n          case s => \"{rel}\"\n        }.mkString(\" \")\n\n      templatesMap.get(string).getOrElse {\n        string match {\n          case prepRegex(rel, prep) =>\n            templateFromRel(rel) + \" \" + prep\n          case rel => templateFromRel(rel)\n        }\n      }\n    }\n\n    def buildHistogram(file: File) = {\n      val serializedHistogram =\n        using(Source.fromFile(file)) { source =>\n          if (settings.fromHistogram) {\n            // the input is the histogram so just read it\n            // this fork exists because creating this histogram\n            // is the slowest part of building templates.\n            source.getLines.map { line =>\n              val Array(rel, pattern, count, slots @ _*) = line.split(\"\\t\")\n              ((rel, pattern), Attrib(count.toInt, slots=Bag.from(slots)))\n            }.toMap\n          } else {\n            // create the histogram from the patterned file\n            source.getLines.map { line =>\n              val Array(rel, _, _, _, pattern, _, _, slots @ _*) = line.split(\"\\t\")\n              val slotBag: Bag[String] =\n                if (settings.slotSemantics) Bag.from(slots.iterator.filter(_.forall(_.isLetter)))\n                else Bag.empty\n              ((rel, pattern), Attrib(1, slotBag, immutable.SortedSet.empty))\n            }.mergeKeys\n          }\n        }\n\n      // deserialize the patterns after creating the histogram\n      // for efficiency\n      val histogram = serializedHistogram.map {\n        case ((rel, pattern), attrib) =>\n          ((rel, new ExtractorPattern(DependencyPattern.deserialize(pattern))), attrib)\n      }\n      assume(serializedHistogram.size == histogram.size)\n\n      histogram\n    }\n\n    def generalizePrepositions(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = {\n      val result = histogram.iterator.map {\n        case item @ ((rel, pattern), attrib) =>\n          val relPrepOption = relPrep(rel)\n\n          val patternContainsPrep = pattern.baseEdgeMatchers.exists {\n            case m: LabelEdgeMatcher if m.label startsWith \"prep_\" => true\n            case _ => false\n          }\n\n          val mismatch = prepMismatch(rel, pattern) || patternContainsPrep && !relPrepOption.isDefined\n\n          val template = rel match {\n            case prepRegex(rel, prep) =>\n              // if the pattern contains a preposition too, substitute\n              // with the capture group name\n              if (patternContainsPrep && !mismatch) rel + \" {prep}\"\n              // otherwise, keep the preposition\n              else rel + \" \" + prep\n            case _ => rel\n          }\n\n          def target(relPrep: String)(m: Matcher[DependencyNode]): Boolean = m match {\n            case m: DirectedEdgeMatcher[_] =>\n              m.matcher match {\n                case sub: LabelEdgeMatcher if sub.label.startsWith(\"prep_\") => sub.label.drop(5).replaceAll(\"_\", \" \") == relPrep\n                case _ => false\n              }\n            case _ => false\n          }\n\n          import scalaz._\n          import Scalaz._\n\n          val newMatchers =\n            if (!patternContainsPrep || !relPrepOption.isDefined || mismatch) None\n            else\n              (for {\n                relPrep <- relPrepOption\n                zipper <- pattern.matchers.zipperEnd\n                found <- zipper findPrevious target(relPrep)\n              } yield {\n                found.modify { m =>\n                  new CaptureEdgeMatcher[DependencyNode](\"prep\",\n                    new DirectedEdgeMatcher[DependencyNode](m.asInstanceOf[DirectedEdgeMatcher[_]].direction,\n                      new RegexEdgeMatcher(\"prep_(.*)\".r)))\n                }.toStream.toList\n              }).orElse(throw new IllegalStateException(rel + \" -> \" + relPrepOption.toString + \" -> \" + pattern))\n\n          ((template, newMatchers.map(matchers => new ExtractorPattern(new DependencyPattern(matchers))).getOrElse(pattern)), attrib.copy(mismatch=mismatch))\n      }.mergeKeys\n\n      assume(result.values.iterator.map(_.count).sum == histogram.iterator.map(_._2.count).sum)\n      result\n    }\n\n    def generalizeRelation(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = {\n      // we need to handle semantics\n      val groups = histogram.toSeq.map {\n        case item @ ((rel, pattern), attrib) =>\n          val template = buildTemplate(rel)\n          ((template, pattern), if (settings.relationSemantics) attrib.copy(rels = immutable.SortedSet[String]() ++ baseRelLemmas(rel)) else attrib)\n      }.toSeq.groupBy(_._1).flatMap {\n        case (key @ (template, pattern), seqs) =>\n          val attribs = seqs.map(_._2)\n          val attrib = attribs.reduce(_ plus _)\n          if (settings.relationSemantics && (nnEdge(pattern) || amodEdge(pattern) || relationOnSide(pattern) || attrib.mismatch)) {\n            val values = attribs.filter(_.count > settings.minimumSemanticsCount)\n            if (values.isEmpty || values.iterator.flatMap(_.rels).isEmpty) None\n            else Some((key, (true, values.reduce(_ plus _))))\n          } else {\n            Some(key, (false, attrib))\n          }\n      }\n\n      val result = groups.map {\n        case ((template, pattern), (true, attrib)) =>\n          val nnedge = nnEdge(pattern)\n          val regex = attrib.rels.toSeq.mkString(\"|\").r\n          val matchers = pattern.matchers.map {\n            case m: RelationMatcher => new RelationMatcher(\"rel\", new ConjunctiveNodeMatcher(Set(m.matcher, new RegexNodeMatcher(regex))))\n            case m: ArgumentMatcher if nnedge => new ArgumentMatcher(m.alias, new PostagNodeMatcher(\"NNP\"))\n            case m => m\n          }\n          ((template, new ExtractorPattern(matchers)), attrib)\n        case ((template, pattern), (false, attrib)) =>\n          ((template, pattern), attrib)\n      }.mergeKeys\n\n      if (!settings.relationSemantics) {\n        assume(result.values.iterator.map(_.count).sum == histogram.iterator.map(_._2.count).sum)\n      }\n\n      result\n    }\n\n    def addSlotSemantics(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = {\n      if (settings.slotSemantics) {\n        histogram.flatMap { case ((rel, pattern), attrib) =>\n          val hasSlot = pattern.matchers.exists(_.isInstanceOf[SlotMatcher])\n\n          if (!hasSlot) Some(((rel, pattern), attrib))\n          else {\n            val semantics = attrib.slots.asMap.filter(_._2 >= 5)\n\n            if (semantics.isEmpty) None\n            else {\n\t          val matchers = pattern.matchers.map {\n\t            case m: SlotMatcher =>\n\t              new SlotMatcher(m.alias, new ConjunctiveNodeMatcher(m.matcher, new RegexNodeMatcher(semantics.keys.toSeq.sorted.mkString(\"|\").r)))\n\t            case m => m\n\t          }\n\n\t          Some((rel, new ExtractorPattern(matchers)), attrib)\n            }\n          }\n        }\n      }\n      else histogram\n    }\n\n    logger.info(\"Building histogram...\")\n    val histogram = buildHistogram(settings.sourceFile)\n    settings.debug map { dir =>\n      outputDetailed(new File(dir, \"histogram.txt\"), order(histogram))\n    }\n\n    logger.info(\"Removing bad templates...\")\n    val filtered = histogram filterNot { case ((rel, pattern), count) =>\n      settings.filterNnEdge && nnEdge(pattern) ||\n      settings.filterAmodEdge && amodEdge(pattern) ||\n      settings.filterSideRel && relationOnSide(pattern) ||\n      settings.filterPrepMismatch && prepMismatch((rel, pattern))\n    }\n    settings.debug.map { dir =>\n    output (new File(dir, \"filtered-keep.txt\"), filtered)\n    //output (new File(dir, \"filtered-del-edge.txt\"), (histogram.iterator filter relationOnSide).toSeq.sortBy(-_._2))\n    //output (new File(dir, \"filtered-del-nn.txt\"), (histogram.iterator filter nnEdge).toSeq.sortBy(-_._2))\n    //output (new File(dir, \"filtered-del-prepsmatch.txt\"), (histogram.iterator filterNot prepsMatch).toSeq.sortBy(-_._2))\n    }\n    logger.info((histogram.values.iterator.map(_.count).sum - filtered.values.iterator.map(_.count).sum).toString + \" items removed.\")\n\n    logger.info(\"Generalizing prepositions...\")\n    val generalizedPreposition = generalizePrepositions(filtered)\n    settings.debug.map { dir =>\n      output(new File(dir, \"generalized-prep.txt\"), order(generalizedPreposition))\n    }\n\n    logger.info(\"Generalizing relations...\")\n    val generalizedRelation = generalizeRelation(generalizedPreposition)\n    settings.debug.map { dir =>\n      output(new File(dir, \"generalized-rel.txt\"), order(generalizedRelation))\n    }\n\n    logger.info(\"Adding slot semantics...\")\n    val withSlotSemantics = addSlotSemantics(generalizedRelation)\n    settings.debug.map { dir =>\n      output(new File(dir, \"semantics-slot.txt\"), order(generalizedRelation))\n    }\n\n    val cleaned = withSlotSemantics\n      .filter {\n        case ((template, pat), attrib) =>\n          attrib.count >= settings.minCount\n      }\n      .filter {\n        case ((template, pattern), attrib) =>\n          // remove {rel} {rel} templates for now\n          template.split(\"\\\\s+\").count(_ == \"{rel}\") <= 1\n      }\n    settings.debug.map { dir =>\n      output(new File(dir, \"cleaned.txt\"), order(cleaned))\n    }\n\n    logger.info(\"Removing duplicates...\")\n    val dedup = cleaned.groupBy { case ((template, pat), attrib) =>\n      def filter(matchers: Iterable[Matcher[_]]) = matchers.filter {\n        case m: ArgumentMatcher => false\n        case _ => true\n      }\n      // set the key to the matchers, without arg1 and arg2,\n      // and the reflection's matchers so we don't have mirrored\n      // patterns\n      Set(filter(pat.matchers), filter(pat.reflection.matchers))\n    }.mapValues(_.maxBy(_._2.count)).values\n    settings.debug.map { dir =>\n      output(new File(dir, \"dedup.txt\"), order(dedup))\n    }\n\n    logger.info(\"Writing templates...\")\n    using {\n      settings.destFile match {\n        case Some(file) => new PrintWriter(file)\n        case None => new PrintWriter(System.out)\n      }\n    } { writer =>\n      output(writer, order(dedup))\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/template/CountsToConfidence.scala",
    "content": "package edu.knowitall.openparse.template\n\nimport scopt.mutable.OptionParser\nimport java.io.File\nimport edu.knowitall.common.Resource.using\nimport scala.io.Source\nimport java.io.PrintWriter\n\nobject CountsToConfidence {\n  abstract class Settings {\n    def sourceFile: File\n    def destFile: Option[File]\n  }\n  \n  def main(args: Array[String]) = {\n    object settings extends Settings {\n      var sourceFile: File = _\n      var destFile: Option[File] = None\n    }\n    \n    val parser = new OptionParser(\"convertconf\") {\n      arg(\"source\", \"file with pattern, count pairs\", { path: String => settings.sourceFile = new File(path) })\n      argOpt(\"dest\", \"optional parameter to specify output to a file\", { path: String => settings.destFile = Some(new File(path)) })\n    }\n    \n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n  \n  def run(settings: Settings) = {\n    using (Source.fromFile(settings.sourceFile)) { source =>\n      using (\n        settings.destFile match {\n          case Some(file) => new PrintWriter(file)\n          case None => new PrintWriter(System.out)\n        }\n      ) { output =>\n        val lines = {\n          val it = source.getLines\n          val first = it.next\n          output.println(first)\n          it.toList\n        }\n        \n        val max = lines.map(_.split(\"\\t\").last.toInt).max\n\n        for (line <- lines) {\n          val parts = line.split(\"\\t\")\n          val count = parts.last.toInt\n          output.println(parts.take(parts.length - 1).mkString(\"\\t\") + \"\\t\" + (\"%1.4f\" format (count.toDouble / max.toDouble)))\n        }\n      }\n    }\n  }\n}"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/template/GeneralizeTemplate.scala",
    "content": "package edu.knowitall.openparse.template\n\nimport java.io.{PrintWriter, File}\n\nimport scala.collection.immutable\nimport scala.io.Source\n\nimport edu.knowitall.collection.immutable.graph.pattern.{NodeMatcher, ConjunctiveNodeMatcher}\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ExtractionPartMatcher}\nimport edu.knowitall.tool.parse.graph.{RegexNodeMatcher, PostagNodeMatcher, DependencyPattern, DependencyNode}\nimport edu.knowitall.ollie.Ollie.stemmer\n\nimport scopt.OptionParser\n\n/** Generalize semantic restrictions to semantic classes.\n  * \n  * @author Michael Schmitz\n  */\nobject GeneralizeTemplates {\n  abstract class Settings {\n    def sourceFile: File\n    def destFile: Option[File]\n\n    val categories = List(\"person\", \"location\")\n  }\n\n  def main(args: Array[String]) = {\n    object settings extends Settings {\n      var sourceFile: File = null\n      var destFile: Option[File] = None\n    }\n\n    val parser = new OptionParser(\"buildtemp\") {\n      arg(\"source\", \"file with source relation, pattern pairs\", { path: String => settings.sourceFile = new File(path) })\n      argOpt(\"dest\", \"optional parameter to specify output to a file\", { path: String => settings.destFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def lexicalRestrictions(extractionPartMatcher: ExtractionPartMatcher) = {\n    extractionPartMatcher.matcher match {\n      case m: ConjunctiveNodeMatcher[_] =>\n        val postag = (m.matchers.collect { case m: PostagNodeMatcher => m } head).postag\n        val lemmas = (m.matchers.collect { case m: RegexNodeMatcher => m } head).regex.toString.split(\"\\\\|\").toSeq\n        Some(postag, lemmas)\n      case _ => None\n    }\n  }\n\n  case class Category(name: String, elements: Set[String]) {\n    override def toString = \"Category(\" + name + \")\"\n  }\n\n  def loadCategories(categories: Seq[String]) = {\n    def loadCategory(name: String) = {\n      val elements =\n        using(this.getClass.getClassLoader.getResourceAsStream(\"categories/\" + name + \".txt\")) { stream =>\n          using(Source.fromInputStream(stream)) { source =>\n            source.getLines().toSet\n          }\n        }\n\n      Category(name, elements)\n    }\n\n    (for (cat <- categories) yield (loadCategory(cat))).toList\n  }\n\n  def run(settings: Settings) {\n    val categories = loadCategories(settings.categories)\n\n    def generalize(matcher: NodeMatcher[DependencyNode], postag: String, lemmas: Set[String]) = {\n      def distance(cat: Category) = {\n        val intersectSize = (cat.elements intersect lemmas).size\n        intersectSize.toDouble / lemmas.size.toDouble\n        if (intersectSize < 5) 0.0\n        else intersectSize.toDouble / lemmas.size.toDouble\n      }\n      if (lemmas.size < 10) matcher\n      else {\n        postag match {\n          case \"NN\" | \"NNS\" =>\n            val overlaps = categories map (cat => (cat, distance(cat))) sortBy (-_._2)\n            if (overlaps.iterator.map(_._2).sum > 0.75) {\n              val categories = overlaps.filter(_._2 > 0.10).map(_._1)\n              val uncategorized = lemmas -- categories.flatMap(_.elements)\n              val elements = immutable.SortedSet[String]() ++ categories.flatMap(_.elements) ++ uncategorized\n              new ConjunctiveNodeMatcher(new PostagNodeMatcher(postag), new RegexNodeMatcher(elements.mkString(\"|\").r))\n            } else matcher\n          case m => matcher\n        }\n      }\n    }\n\n    var templates =\n      using(Source.fromFile(settings.sourceFile, \"UTF8\")) { source =>\n        source.getLines().map { line =>\n          val Array(template, pattern, count) = line.split(\"\\t\")\n          ((template, new ExtractorPattern(DependencyPattern.deserialize(pattern))), count.toInt)\n        }.toList\n      }\n\n    templates = templates.map {\n      case ((template, pattern), count) =>\n        val matchers = pattern.matchers.map { matcher =>\n          matcher match {\n            case m: ExtractionPartMatcher if m.isInstanceOf[SlotMatcher] || m.isInstanceOf[RelationMatcher] =>\n              lexicalRestrictions(m) match {\n                case Some((postag, lemmas)) => m.withMatcher(generalize(m.matcher, postag, lemmas.toSet))\n                case None => m\n              }\n            case m => m\n          }\n        }\n\n        ((template, new ExtractorPattern(matchers)), count)\n    }\n\n    using (\n      settings.destFile match {\n        case Some(file) => new PrintWriter(file, \"UTF8\")\n        case None => new PrintWriter(System.out)\n      })\n    { writer =>\n      templates map { case ((template, pattern), count) => Iterable(template, pattern, count).mkString(\"\\t\") } foreach writer.println\n    }\n  }\n}\n"
  },
  {
    "path": "core/src/main/scala/edu/knowitall/openparse/template/PassiveReflections.scala",
    "content": "package edu.knowitall.openparse.template\n\nimport java.io.{PrintWriter, File}\nimport scala.Option.option2Iterable\nimport scala.annotation.elidable\nimport scala.collection.immutable\nimport scala.io.Source\nimport scala.util.matching.Regex\nimport org.slf4j.LoggerFactory\nimport edu.knowitall.collection.immutable.graph.pattern.{Matcher, ConjunctiveNodeMatcher, DirectedEdgeMatcher, CaptureEdgeMatcher}\nimport edu.knowitall.collection.immutable.Bag\nimport edu.knowitall.common.Resource.using\nimport edu.knowitall.common.enrich.Traversables.traversableOncePairTo\nimport edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ArgumentMatcher}\nimport edu.knowitall.tool.parse.graph.{RegexNodeMatcher, RegexEdgeMatcher, PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyNode}\nimport edu.knowitall.tool.postag.Postagger\nimport edu.knowitall.ollie.Ollie.stemmer\nimport scalaz.Scalaz._\nimport scalaz._\nimport scopt.OptionParser\nimport edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher\n\n/** A main method for adding active and passive conversions\n  * of patterns to a model file.  BuiltTemplates removes\n  * duplicate patterns, removing a lot of garbage but also\n  * the active/passive conversions.\n  *\n  * @author Michael Schmitz\n  */\nobject PassiveReflections {\n  val logger = LoggerFactory.getLogger(this.getClass)\n\n  abstract class Settings {\n    def sourceFile: File\n    def destFile: Option[File]\n  }\n\n  def main(args: Array[String]) {\n    val settings = new Settings {\n      var sourceFile: File = null\n      var destFile: Option[File] = None\n    }\n\n    val parser = new OptionParser(\"passivemodel\") {\n      arg(\"source\", \"input model file\", { path: String => settings.sourceFile = new File(path) })\n      argOpt(\"dest\", \"output model file\", { path: String => settings.destFile = Some(new File(path)) })\n    }\n\n    if (parser.parse(args)) {\n      run(settings)\n    }\n  }\n\n  def run(settings: Settings) {\n    def switchArgs(pattern: ExtractorPattern) = {\n      val arg1 = pattern.matchers.find { case m: CaptureNodeMatcher[_] => m.alias == \"arg1\" case _ => false } get\n      val arg2 = pattern.matchers.find { case m: CaptureNodeMatcher[_] => m.alias == \"arg2\" case _ => false } get\n\n      new ExtractorPattern(pattern.matchers.map {\n        case m: CaptureNodeMatcher[_] if m.alias == \"arg1\" => arg2\n        case m: CaptureNodeMatcher[_] if m.alias == \"arg2\" => arg1\n        case m => m\n      })\n    }\n\n    val patterns = using {\n      Source.fromFile(settings.sourceFile)\n    } { source =>\n      source.getLines.drop(1).map { line =>\n        val Array(template, pattern, count) = line.split(\"\\t\")\n        (template, new ExtractorPattern(DependencyPattern.deserialize(pattern)), count)\n      }.toList\n    }\n\n    using(\n      settings.destFile match {\n        case Some(file) => new PrintWriter(file, \"UTF8\")\n        case None => new PrintWriter(System.out)\n      }) { output =>\n        patterns.foreach {\n          case (template, pattern, count) =>\n            output.println(Iterable(template, pattern, count).mkString(\"\\t\"))\n\n            if (pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == \"nsubj\" case _ => false }) {\n              // print the passive conversion\n\n              if (!(template startsWith \"be \")) {\n                output.println(Iterable(\"be \" + template, switchArgs(pattern), count).mkString(\"\\t\"))\n              }\n            } else if (pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == \"nsubjpass\" case _ => false }) {\n              if (template startsWith \"be \") {\n                output.println(Iterable(template.drop(3), switchArgs(pattern), count).mkString(\"\\t\"))\n              }\n            }\n        }\n      }\n  }\n}"
  },
  {
    "path": "core/src/test/resources/logback-test.xml",
    "content": "<?xml version=\"1.0\"?>\n<configuration>\n  <appender name=\"STDOUT\" class=\"ch.qos.logback.core.ConsoleAppender\">\n    <!-- encoders are assigned the type\n         ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->\n    <encoder>\n      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>\n    </encoder>\n  </appender>\n  <root level=\"info\">\n    <appender-ref ref=\"STDOUT\"/>\n  </root>\n</configuration>\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/common/enrich/TraversableSpecTest.scala",
    "content": "package edu.knowitall.common.enrich\n\nimport edu.knowitall.collection.immutable.Bag\n\nimport org.junit.runner.RunWith\nimport org.specs2.mutable.Specification\nimport org.specs2.runner.JUnitRunner\n\n@RunWith(classOf[JUnitRunner])\nobject TraversableSpecTest extends Specification {\n  import Traversables._\n\n  \"simple histogram works fine\" in {\n    val h1 = List(1, 2, 2, 3, 3, 3).histogram\n    val h2 = List(3, 2, 1, 3, 2, 3).histogram\n    h1 must_== h2\n    h1 must haveTheSameElementsAs(List((1, 1), (2, 2), (3, 3)))\n  }\n\n  \"histogram from partials works fine\" in {\n    val list = List((1, 1), (2, 2), (2, 2), (3, 3), (3, 3), (3, 3))\n    val h1 = list.mergeHistograms\n    val h2 = list.reverse.mergeHistograms\n    val h3 = list.mergeKeys(_ + _)\n    h1 must_== h2\n    h1 must_== h3\n    h1 must haveTheSameElementsAs(List((1, 1), (2, 4), (3, 9)))\n  }\n\n  \"list multimaps works fine\" in {\n    val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2)\n    val multimap = list.toListMultimap\n\n    multimap must haveTheSameElementsAs(Map(1 -> List(1, 2, 1), 2 -> List(2)))\n\n    val extended = (multimap.toSeq :+ (1 -> List(2, 3, 4, 5)))\n    val merged = extended.mergeKeys(_ ++ _)\n\n    merged must haveTheSameElementsAs(Map(1 -> List(1, 2, 1, 2, 3, 4, 5), 2 -> List(2)))\n  }\n\n  \"set multimaps works fine\" in {\n    val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2)\n    val multimap = list.toSetMultimap\n\n    multimap must haveTheSameElementsAs(Map(1 -> Set(1, 2), 2 -> Set(2)))\n\n    val extended = (multimap.toSeq :+ (1 -> Set(2, 3, 4, 5)))\n    val merged = extended.mergeKeys(_ ++ _)\n\n    merged must haveTheSameElementsAs(Map(1 -> Set(1, 2, 3, 4, 5), 2 -> Set(2)))\n  }\n\n  \"bag multimaps works fine\" in {\n    val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2)\n    val multimap = list.toBagMultimap\n\n    multimap must haveTheSameElementsAs(Map(1 -> Bag(1, 1, 2), 2 -> Bag(2)))\n\n    val extended = (multimap.toSeq :+ (1 -> Bag(2, 3, 4, 5)))\n    val merged = extended.mergeKeys(_ ++ _)\n\n    merged must haveTheSameElementsAs(Map(1 -> Bag(1, 1, 2, 2, 3, 4, 5), 2 -> Bag(2)))\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/ollie/DependencyGraphExtrasSpec.scala",
    "content": "package edu.knowitall.ollie\n\nimport org.junit.runner.RunWith\nimport org.specs2.mutable.Specification\nimport org.specs2.runner.JUnitRunner\nimport edu.knowitall.tool.parse.graph.DependencyGraph\n\n@RunWith(classOf[JUnitRunner])\nobject DependencyGraphExtrasTest extends Specification {\n  \"switch to passive voice works\" in {\n    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)\")\n    val extras = new DependencyGraphExtras(graph)\n\n    val switched = extras.switchVoice\n\n    switched.size must_== 1\n    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)\"\n  }\n\n  \"switch to active voice works\" in {\n    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)\")\n    val extras = new DependencyGraphExtras(graph)\n\n    val switched = extras.switchVoice\n\n    switched.size must_== 1\n    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)\"\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/ollie/confidence/OllieFeatureSetSpec.scala",
    "content": "package edu.knowitall.ollie.confidence\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.ollie.Ollie\nimport edu.knowitall.ollie.OllieExtractionInstance\nimport edu.knowitall.ollie.ScoredOllieExtractionInstance\nimport edu.knowitall.openparse.OpenParse\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\n\n@RunWith(classOf[JUnitRunner])\nobject OllieFeatureSetSpec extends Specification {\n  val ollie = new Ollie(OpenParse.withDefaultModel())\n\n  \"if right before arg1\" in {\n    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)\")\n    val extrs = ollie.extract(graph)\n\n    val extr = extrs.toSeq(2)\n    OllieFeatures.ifRightBeforeArg1(extr) must_== 1.0\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/openparse/BuildPatternsSpec.scala",
    "content": "package edu.knowitall.openparse\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\n\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.stem.MorphaStemmer\n\n@RunWith(classOf[JUnitRunner])\nobject BuildPatternsSpecTest extends Specification {\n  def findPatterns(row: (String, String, String, String, String), maxLength: Option[Int] = None) = {\n    val (rel, arg1, arg2, lemmasString, pickled) = row\n    val lemmas = lemmasString.split(\"\\\\s+\").toSet\n    val graph = DependencyGraph.deserialize(pickled).map(_.lemmatize(MorphaStemmer)).normalize\n    BuildPatterns.findRelationPatterns(graph, rel, arg1, arg2, lemmas, maxLength)\n  }\n\n  \"A pattern is found when the argument overlap\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubjpass< {rel:postag=VBN} >prep_to> {arg2}\"\n  }\n\n  \"A pattern is found with exactly one slot\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubj< {rel:postag=VBD} <rcmod< {slot0:postag=NN} >prep_to> {arg2}\"\n  }\n\n  \"A pattern is NOT found because of a length restriction\" in {\n    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)\")\n    val patterns = findPatterns(row, Some(2))\n    patterns.size must_== 0\n  }\n\n  // rel rel\n  \"A pattern is found\" in {\n    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)\")\n    val patterns = findPatterns(row, Some(2))\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\"\n  }\n\n  \"A single pattern is found with a slot instead of a rel rel\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubjpass< {rel0:postag=VBN} >dobj> {rel1:postag=NN} >prep_of> {arg2}\"\n  }\n\n  \"A single pattern is found with a slot instead of a rel rel\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.head._1.toString must_== \"{arg1} <nsubj< {rel0:postag=NN} >partmod> {rel1:postag=VBN} >prep_in> {arg2}\"\n  }\n\n  \"A single pattern is found with a slot instead of a rel rel\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubj< {slot0:postag=VBG} >xcomp> {rel:postag=VB} >dobj> {arg2}\"\n  }\n\n  \"A single pattern is found with a slot instead of a rel rel\" in {\n    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)\")\n    val patterns = findPatterns(row)\n    patterns.size must_== 1\n    patterns.head._1.toString must_== \"{arg1} <nsubj< {rel0:postag=VBZ} >dobj> {rel1:postag=NN} >prep_on> {arg2}\"\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/openparse/ExtractorPatternSpec.scala",
    "content": "package edu.knowitall.openparse\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\n\nimport edu.knowitall.tool.parse.graph.DependencyPattern\nimport edu.knowitall.ollie.Ollie.stemmer\n\n@RunWith(classOf[JUnitRunner])\nobject ExtractorPatternSpecTest extends Specification {\n  def testSymmetric(pattern: String, symmetric: Boolean) {\n    (pattern + \" is \" + (if (symmetric) \"symmetric\" else \"not symmetric\")) in {\n      new ExtractorPattern(DependencyPattern.deserialize(pattern)).symmetric must be_==(symmetric)\n    }\n  }\n\n  testSymmetric(\"{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\", false)\n  testSymmetric(\"{arg1} <nsubj< {rel:postag=VBD} >nsubj> {arg2}\", true)\n  testSymmetric(\"{arg1} <prep_of< {rel:postag=NN} >prep_of> {arg2}\", true)\n  testSymmetric(\"{rel:postag=NN} <nn< {arg1} >nn> {arg2}\", false)\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/openparse/OllieSpec.scala",
    "content": "package edu.knowitall.openparse\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.stem.MorphaStemmer\nimport edu.knowitall.ollie.Ollie\nimport edu.knowitall.ollie.OllieExtractionInstance\nimport edu.knowitall.ollie.ScoredOllieExtractionInstance\nimport edu.knowitall.ollie.confidence.OllieConfidenceFunction\n\n@RunWith(classOf[JUnitRunner])\nobject OllieSpecTest extends Specification {\n  val ollie = new Ollie(OpenParse.withDefaultModel())\n  val conf = OllieConfidenceFunction.loadDefaultClassifier()\n\n  \"Ollie finds an example extraction\" in {\n    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)\")\n    val extrs = ollie.extract(graph)\n\n    val extr = extrs.head\n    extr must_== OllieExtractionInstance.tabDeserialize(extr.tabSerialize)\n\n    val scored = new ScoredOllieExtractionInstance(true, extr)\n    scored must_== ScoredOllieExtractionInstance.tabDeserialize(scored.tabSerialize)\n  }\n\n  \"Ollie confidence function executes\" in {\n    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)\")\n    val extrs = ollie.extract(graph)\n    extrs map conf must not(throwA[Exception])\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/openparse/OpenParseSpec.scala",
    "content": "package edu.knowitall.openparse\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\n\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.stem.MorphaStemmer\n\n@RunWith(classOf[JUnitRunner])\nobject OpenParseSpecTest extends Specification {\n  val openparse = OpenParse.withDefaultModel()\n\n  \"OpenParse finds an example extraction\" in {\n    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)\")\n    val extrs = openparse.extract(graph)\n    \n    extrs.size must_== 1\n    extrs.head._2.toString must_== \"(OpenParse; finds; an example extraction)\"\n  }\n}\n"
  },
  {
    "path": "core/src/test/scala/edu/knowitall/openparse/PatternExtractorSpec.scala",
    "content": "package edu.knowitall.openparse\n\nimport org.junit._\nimport org.junit.Assert._\nimport org.specs2.mutable.Specification\nimport org.junit.runner.RunWith\nimport org.specs2.runner.JUnitRunner\n\nimport edu.knowitall.ollie.Ollie.stemmer\nimport edu.knowitall.tool.parse.graph.DependencyGraph\nimport edu.knowitall.tool.parse.graph.Dependencies\nimport edu.knowitall.tool.parse.graph.DependencyPattern\n\nimport OpenParse._\nimport extract._\n\n@RunWith(classOf[JUnitRunner])\nobject PatternExtractorSpecTest extends Specification {\n  def testPostagConstraint {\n    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 .\"\n    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)\").\n        normalize\n\n    \"(Angels, appear, the Bible) is found without a postag constraint\" in {\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel} >prep_in> {arg2}\")\n      val extractions = new GeneralExtractor(pattern, 1.0).extract(graph)\n      extractions.size must_== 1\n      extractions.map(_.toString) must contain(\"(Angels; appear; the Bible story)\")\n    }\n\n    \"(Angels, appear, the Bible) is found with a postag constraint\" in {\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel:postag=VB} >prep_in> {arg2}\")\n      val extractions = new GeneralExtractor(pattern, 1.0).extract(graph)\n      extractions.size must_== 1\n      extractions.map(_.toString) must contain(\"(Angels; appear; the Bible story)\")\n    }\n\n    \"(Angels, appear, the Bible) is not found with the wrong postag constraint\" in {\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel:postag=XXX} >prep_in> {arg2}\")\n      val extractions = new GeneralExtractor(pattern, 1.0).extract(graph)\n      extractions.size must_== 0\n    }\n  }\n\n  def testRelnounCases {\n    \"adjective descriptor relnoun\" in {\n      val sentence = \"US President Barack Obama went to the grocery store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{rel} <nn< {arg1} >nn> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; US)\"))\n    }\n\n    \"adjective descriptor appositive relnoun\" in {\n      val sentence = \"Barack Obama, the US President, went to the store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel} >nn> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; US)\"))\n    }\n\n    \"appositive relnoun\" in {\n      val sentence = \"Barack Obama, the president of the US, went to the grocery store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel} >prep_of> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; the US)\"))\n    }\n\n    \"possessive relnoun\" in {\n      val sentence = \"Barack Obama, the president of the US, went to the grocery store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel} >prep_of> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; the US)\"))\n    }\n\n    \"possessive appositive relnoun\" in {\n      val sentence = \"The US's president, Barack Obama, went to the store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} <appos< {rel} >poss> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; The US)\"))\n    }\n\n    \"reverse possessive appositive relnoun\" in {\n      val sentence = \"Barack Obama, the US's president, went to the store.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel} >poss> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; the US)\"))\n    }\n\n    \"possessive is relnoun\" in {\n      val sentence = \"The US's President is Barack Obama.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >nsubj> {rel} >poss> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; The US)\"))\n    }\n\n    \"is possessive relnoun\" in {\n      val sentence = \"Barack Obama is the US's president.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel} >poss> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; the US)\"))\n    }\n\n    \"of is relnoun\" in {\n      val sentence = \"The president of the US is Barack Obama.\"\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled) // don't normalize\n      val pattern = DependencyPattern.deserialize(\"{arg1} >nsubj> {rel} >prep_of> {arg2}\")\n      val extractor = new SpecificExtractor(\"be the president of\", List(\"president\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; be the president of; the US)\"))\n    }\n  }\n\n  def testRelRel = {\n    \"A rel rel pattern is found\" in {\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled)\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubjpass< {rel1} >dobj> {rel2} >prep_of> {arg2}\")\n      val extractor = new TemplateExtractor(Template.deserialize(\"be {rel} of\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Barack Obama; was elected president of; the United States)\"))\n    }\n\n    \"A rel rel pattern is found\" in {\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled)\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel1} >partmod> {rel2} >prep_in> {arg2}\")\n      val extractor = new TemplateExtractor(Template.deserialize(\"be {rel} in\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(The Mariners; are a team located in; Seattle)\"))\n    }\n\n    \"A rel rel pattern is found\" in {\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled)\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel1} >xcomp> {rel2} >dobj> {arg2}\")\n      val extractor = new TemplateExtractor(Template.deserialize(\"be {rel}\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Humans; are going to populate; the earth)\"))\n    }\n\n    \"A rel rel pattern is found\" in {\n      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)\"\n      val graph = DependencyGraph.deserialize(pickled)\n      val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel1} >dobj> {rel2} >prep_on> {arg2}\")\n      val extractor = new TemplateExtractor(Template.deserialize(\"{rel} on\"), pattern, 1.0)\n      extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(Juliette; has a crush on; Romeo)\"))\n    }\n  }\n\n  \"relation expands across 'chaotically'\" in {\n    val sentence = \"The people fled away chaotically towards the barn.\"\n    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)\"\n    val graph = DependencyGraph.deserialize(pickled) // don't normalize\n    val pattern = DependencyPattern.deserialize(\"{arg1} <nsubj< {rel} >prep_towards> {arg2}\")\n    val extractor = new GeneralExtractor(pattern, 1.0)\n    extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List(\"(The people; fled chaotically; the barn)\"))\n  }\n\n  \"noun relation word expands across of when it doesn't overlap with the argument\" in {\n    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)\"\n    val graph = DependencyGraph.deserialize(pickled) // don't normalize\n    val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\")\n    val extractor = new TemplateExtractor(Template.deserialize(\"be {rel} {prep}\"), pattern, 1.0)\n    extractor.extract(graph).map(_.toString) must contain(\"(Sam Gosling; be an associate professor of psychology at; the University of Texas)\")\n  }\n\n  \"noun relation word does NOT expands across of when it overlaps with the argument\" in {\n    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)\"\n    val graph = DependencyGraph.deserialize(pickled) // don't normalize\n    val pattern = DependencyPattern.deserialize(\"{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\")\n    val extractor = new TemplateExtractor(Template.deserialize(\"be {rel} {prep}\"), pattern, 1.0)\n    extractor.extract(graph).map(_.toString) must contain(\"(Sam Gosling; be an associate professor of; psychology)\")\n  }\n\n  testPostagConstraint\n  testRelnounCases\n  testRelRel\n}\n"
  },
  {
    "path": "data/training.tsv",
    "content": "0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_19_75\tappears for ;;; appears_VBZ_20_78\tthe short term ;;; the_DT_15_58; short_JJ_16_62; term_NN_17_68\t0.24440\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_6_21\tmeans over ;;; means_VBZ_7_24\tthe long run ;;; the_DT_9_35; long_JJ_10_39; run_NN_11_44\t0.24440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tgold ;;; gold_NN_33_143\tthat has risen over ;;; that_IN_32_138; has_VBZ_34_148; risen_VBN_35_152\tthe past week or so ;;; the_DT_37_163; past_JJ_38_167; week_NN_39_172; or_CC_40_177; so_RB_41_180\t0.04440\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.006\the ;;; he_PRP_44_187\tsaid of ;;; said_VBD_45_190\tI ;;; I_PRP_1_2\t0.00600\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tThe obligation ;;; The_DT_1_2; obligation_NN_2_6\tis totally ;;; is_VBZ_3_17; totally_RB_4_20\tunwarranted ;;; unwarranted_JJ_5_28\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tI ;;; I_PRP_5_19\tread ;;; read_VBP_6_21\ta sign ;;; a_DT_7_26; sign_NN_8_28\t0.04160\tas_we whoosh through_16_19\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tTivoli Motel ;;; Tivoli_NNP_1_2; Motel_NNP_2_9\tread ;;; read_VBP_6_21\ta sign ;;; a_DT_7_26; sign_NN_8_28\t0.04160\tas_we whoosh through_16_19\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tI ;;; I_PRP_5_19\tread a sign in ;;; read_VBP_6_21; a_DT_7_26; sign_NN_8_28\tthe 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\t0.03070\tas_we whoosh through_16_19\tNone\n0\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tTivoli Motel ;;; Tivoli_NNP_1_2; Motel_NNP_2_9\tread a sign in ;;; read_VBP_6_21; a_DT_7_26; sign_NN_8_28\tthe 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\t0.03070\tas_we whoosh through_16_19\tNone\n1\t\tnumber($_$_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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\t$ 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\tis being offered by ;;; is_VBZ_8_59; being_VBG_9_62; offered_VBN_10_68\ta Morgan Stanley group ;;; a_DT_15_95; Morgan_NNP_16_97; Stanley_NNP_17_104; group_NN_18_112\t1.00000\tNone\tNone\n1\t\tnumber($_$_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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\t$ 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\tis being offered in ;;; is_VBZ_8_59; being_VBG_9_62; offered_VBN_10_68\tfour classes ;;; four_CD_12_79; classes_NN_13_84\t1.00000\tNone\tNone\n1\t\tnum(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tDr. Erik I. Asphaug ;;; Dr._NNP_7_38; Erik_NNP_8_42; I._NNP_9_47; Asphaug_NNP_10_50\tbe recipient of ;;; recipient_NN_12_60\tthe 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\t0.40310\tNone\tNone\n1\t\tnum(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tan asteroid ;;; an_DT_3_16; asteroid_NN_4_19\tbe named for ;;; named_VBN_5_28\tDr. Erik I. Asphaug ;;; Dr._NNP_7_38; Erik_NNP_8_42; I._NNP_9_47; Asphaug_NNP_10_50\t0.11100\tNone\tNone\n1\t\tnum(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\t7939 Asphaug ;;; 7939_CD_0_0; Asphaug_NNP_1_5\tis ;;; is_VBZ_2_13\tan 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\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tA collection of her art ;;; A_DT_0_0; collection_NN_1_2; of_IN_2_13; her_PRP$_3_16; art_NN_4_20\twas displayed at ;;; was_VBD_5_24; displayed_VBN_6_28\tan exhibition ;;; an_DT_8_41; exhibition_NN_9_44\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tA collection of her art ;;; A_DT_0_0; collection_NN_1_2; of_IN_2_13; her_PRP$_3_16; art_NN_4_20\twas displayed by ;;; was_VBD_5_24; displayed_VBN_6_28\tsupporters campaigning to release her ;;; supporters_NN_13_68; campaigning_VBG_14_79; to_TO_15_91; release_VB_16_94; her_PRP_17_102\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tA myelinated axon ;;; A_DT_0_0; myelinated_JJ_1_2; axon_NN_2_13\thas ;;; has_VBZ_7_35\ta conduction speed ;;; a_DT_8_39; conduction_NN_9_41; speed_NN_10_52\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tan embryo ;;; an_DT_3_10; embryo_NN_4_13\tbe packaged with ;;; packaged_VBN_5_20\ta supply of nutrients ;;; a_DT_7_34; supply_NN_8_36; of_IN_9_43; nutrients_NN_10_46\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tA seed ;;; A_DT_0_0; seed_NN_1_2\tis ;;; is_VBZ_2_7\tan 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\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tA temperate phage ;;; A_DT_0_0; temperate_JJ_1_2; phage_NN_2_12\tcalled ;;; called_VBD_3_18\tlambda 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\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tlambda ;;; lambda_NN_4_25\tbe written with ;;; written_VBN_6_34\tthe Greek letter ;;; the_DT_8_47; Greek_NNP_9_51; letter_NN_10_57\t0.11100\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tAchmat ;;; Achmat_NNP_0_0\tpublicly refused to take ;;; publicly_RB_1_7; refused_VBD_2_16; to_TO_3_24; take_VB_4_27\tAIDS medications ;;; AIDS_NNP_5_32; medications_NN_6_37\t0.37970\tuntil_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\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tAchmat ;;; Achmat_NNP_0_0\tto take ;;; to_TO_3_24; take_VB_4_27\tAIDS medications ;;; AIDS_NNP_5_32; medications_NN_6_37\t0.01950\tuntil_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\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tAction potentials ;;; Action_NNP_0_0; potentials_NN_1_7\tcan therefore spread along ;;; can_MD_2_18; therefore_RB_3_22; spread_VB_4_32\taxons ;;; axons_NN_6_45\t0.13490\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\ta signal ;;; a_DT_14_94; signal_NN_15_96\tbe transmitting over ;;; transmitting_VBG_13_81\tlong distances ;;; long_JJ_17_108; distances_NN_18_113\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_14_64\twas called back from ;;; was_VBD_15_67; called_VBN_16_71; back_RB_17_78\tthe loan ;;; the_DT_19_88; loan_NN_20_92\t1.00000\tCSKA_qualified for the round of 16 of the UEFA Cup 2008_1_12\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_14_64\twas registered as ;;; was_VBD_26_118; registered_VBN_27_122\ta CSKA player ;;; a_DT_29_136; CSKA_NNP_30_138; player_NN_31_143\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_14_64\twas registered on ;;; was_VBD_26_118; registered_VBN_27_122\t12 March 2009 ;;; 12_CD_23_104; March_NNP_24_107; 2009_CD_25_113\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\tSusan ;;; Susan_NNP_5_21\tphones 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\tJerry ;;; Jerry_NNP_13_65\t0.14430\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tSusan ;;; Susan_NNP_5_21\tphones ;;; phones_VBZ_6_27\tthe real estate agency ;;; the_DT_7_34; real_JJ_8_38; estate_NN_9_43; agency_NN_10_50\t0.14430\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tsomeone ;;; someone_NN_15_76\twas looking for ;;; was_VBD_16_84; looking_VBG_17_88\thim ;;; him_PRP_19_100\t0.03930\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRiley ;;; Riley_NNP_8_49\tre-emerged after ;;; re-emerged_VBD_9_55\ta hiatus ;;; a_DT_1_6; hiatus_NN_2_8\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRiley ;;; Riley_NNP_8_49\tre-emerged as ;;; re-emerged_VBD_9_55\ta star ;;; a_DT_15_88; star_NN_16_90\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRiley ;;; Riley_NNP_8_49\tre-emerged in ;;; re-emerged_VBD_9_55\tthe early 2000s ;;; the_DT_11_69; early_JJ_12_73; 2000s_CD_13_79\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tMadea 's Class Reunion ;;; Madea_NNP_30_175; 's_POS_31_181; Class_NNP_32_184; Reunion_NNP_33_190\tGoes to ;;; Goes_VBZ_36_206\tJail ;;; Jail_NNP_38_214\t0.24440\tWhy_Did I Get Married_40_44\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} of\t{arg1} <appos< {rel:postag=NNP} >poss> {arg2}\t0.0062\tMadea ;;; Madea_NNP_35_200\tbe Class Reunion of ;;; Class_NNP_32_184; Reunion_NNP_33_190\tMadea ;;; Madea_NNP_30_175\t0.00620\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRage ;;; Rage_NNP_17_97\tleft Death Row Records after ;;; left_VBD_18_102; Death_NNP_19_107; Row_NNP_20_113; Records_NNP_21_117\tthe 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRage ;;; Rage_NNP_17_97\tleft 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\tthe 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tRage ;;; Rage_NNP_17_97\tleft ;;; left_VBD_18_102\tDeath 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\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tDeath 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\tbe left after ;;; left_VBD_18_102\tthe 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\t0.01550\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tDrop Trio ;;; Drop_NNP_8_40; Trio_NNP_9_45\twas asked by ;;; was_VBD_10_50; asked_VBN_11_54\tSugarHill Recording Studios ;;; SugarHill_NNP_13_63; Recording_NNP_14_73; Studios_NNP_15_83\t1.00000\tNone\tNone\n0\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tunreleased ;;; unreleased_JJ_3_16\twas asked by ;;; was_VBD_10_50; asked_VBN_11_54\tSugarHill Recording Studios ;;; SugarHill_NNP_13_63; Recording_NNP_14_73; Studios_NNP_15_83\t1.00000\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta song ;;; a_DT_22_113; song_NN_23_115\tAlso to be record by ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106\tDestiny 's Child ;;; Destiny_NNP_25_123; 's_POS_26_131; Child_NN_27_134\t0.01320\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta song ;;; a_DT_22_113; song_NN_23_115\tAlso to be record for ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106\tan 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\t0.01320\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta song ;;; a_DT_22_113; song_NN_23_115\tAlso to be record in ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106\t2003 ;;; 2003_CD_18_96\t0.01320\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0117\tan upcoming compilation CD ;;; an_DT_29_144; upcoming_JJ_30_147; compilation_NN_31_156; CD_NN_32_168\tto be released by ;;; to_TO_33_171; be_VB_34_174; released_VBN_35_177\tthe studio ;;; the_DT_37_189; studio_NN_38_193\t0.01170\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tadaptive immunity ;;; adaptive_JJ_1_9; immunity_NN_2_18\toffers significant protection against ;;; offers_VBZ_3_27; significant_JJ_4_34; protection_NN_5_46\ta wide range of pathogens ;;; a_DT_7_65; wide_JJ_8_67; range_NN_9_72; of_IN_10_78; pathogens_NN_11_81\t0.24440\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tadaptive immunity ;;; adaptive_JJ_1_9; immunity_NN_2_18\toffers ;;; offers_VBZ_3_27\tsignificant protection ;;; significant_JJ_4_34; protection_NN_5_46\t0.14430\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tit ;;; it_PRP_13_93\tis ;;; is_VBZ_14_96\tnot fail-safe ;;; not_RB_15_99; fail-safe_JJ_16_103\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthese percentages ;;; these_DT_1_9; percentages_NN_2_15\tmay seem ;;; may_MD_3_27; seem_VB_4_31\tsmall , such immigration ;;; small_JJ_5_36; ,_,_6_42; such_JJ_7_44; immigration_NN_8_49\t0.14730\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tAmoebozoans ;;; Amoebozoans_NN_0_0\tinclude ;;; include_VBP_1_12\tslime molds ;;; slime_JJ_2_20; molds_NN_3_26\t0.04160\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tbirth control pills ;;; birth_NN_3_19; control_NN_4_25; pills_NN_5_33\tslightly raise ;;; slightly_RB_6_39; raise_VB_7_48\ta 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\t0.14730\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tbirth control pills ;;; birth_NN_3_19; control_NN_4_25; pills_NN_5_33\tslightly 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\tnonsmokers ;;; nonsmokers_NN_1_6\t0.13490\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta 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\tbe slightly raise among ;;; slightly_RB_6_39; raise_VB_7_48\tnonsmokers ;;; nonsmokers_NN_1_6\t0.01320\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\t76 % ;;; 76_CD_3_22; %_NN_4_25\thave ;;; have_VBP_5_27\ta favorable opinion of her ;;; a_DT_6_32; favorable_JJ_7_34; opinion_NN_8_44; of_IN_9_52; her_PRP_10_55\t0.04160\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\t76 % ;;; 76_CD_3_22; %_NN_4_25\thave 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\tprofessionals ;;; professionals_NN_1_6\t0.03070\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_18_111\tdismissed against ;;; dismissed_VBD_19_114\tthe touring nation ;;; the_DT_28_170; touring_NN_29_174; nation_NN_30_182\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_18_111\tdismissed for ;;; dismissed_VBD_19_114\tWestern Australia ;;; Western_JJ_25_144; Australia_NNP_26_152\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_18_111\tdismissed in ;;; dismissed_VBD_19_114\ta tour match ;;; a_DT_21_127; tour_NN_22_129; match_NN_23_134\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe 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\twere amongst ;;; were_VBD_6_43\this victims ;;; his_PRP$_1_8; victims_NN_2_12\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tAmuro ;;; Amuro_NNP_0_0\treturned to solo activities on ;;; returned_VBD_1_6; to_TO_2_15; solo_VB_3_18; activities_NN_4_23\ther own ;;; her_PRP$_6_37; own_JJ_7_41\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tAmuro ;;; Amuro_NNP_0_0\treturned to solo ;;; returned_VBD_1_6; to_TO_2_15; solo_VB_3_18\tactivities ;;; activities_NN_4_23\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBN}\t0.0509\t2003 ;;; 2003_CD_21_100\tbe released on ;;; released_VBN_16_78\tMarch 6 ;;; March_NNP_18_90; 6_CD_19_96\t0.05090\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tAmuro ;;; Amuro_NNP_0_0\tto solo ;;; to_TO_2_15; solo_VB_3_18\tactivities ;;; activities_NN_4_23\t0.01950\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|advise|agree|allow|appoint|arrive|ask|attempt|be|beat|begin|bring|call|challenge|choose|claim|come|command|compel|continue|convince|cross|cut|dare|decide|decline|defeat|depart|desire|determine|didn|direct|do|drop|elect|encourage|expect|fail|feel|flee|force|gather|get|go|happen|have|instruct|intend|interrupt|invite|leave|long|make|manage|mean|move|need|offer|open|opt|order|pause|permit|persuade|plan|pledge|pray|prepare|pretend|proceed|promise|pull|raise|receive|refuse|request|require|resign|resolve|return|rise|roll|seek|seem|send|set|shift|sit|snap|start|suspend|swivel|take|teach|tear|tell|threaten|tilt|try|turn|urge|use|volunteer|vote|vow|want|win|wish|work} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0181\tAmuro ;;; Amuro_NNP_0_0\tto solo activities on ;;; to_TO_2_15; solo_VB_3_18; activities_NN_4_23\ther own ;;; her_PRP$_6_37; own_JJ_7_41\t0.01810\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tactivities ;;; activities_NN_4_23\tto be solo on ;;; to_TO_2_15; solo_VB_3_18\ther own ;;; her_PRP$_6_37; own_JJ_7_41\t0.01320\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tAn aqueous solution ;;; An_DT_0_0; aqueous_JJ_1_3; solution_NN_2_11\tis ;;; is_VBZ_3_20\tone ;;; one_CD_4_23\t0.00840\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tone ;;; one_CD_4_23\tis ;;; is_VBZ_8_42\tthe solvent ;;; the_DT_9_45; solvent_NN_10_49\t0.00840\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tthe share issue ;;; the_DT_38_230; share_NN_39_234; issue_NN_40_240\tis part of ;;; is_VBZ_41_246; part_NN_42_249\ta 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\t0.95550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe Appropriations Committee leadership ;;; the_DT_10_55; Appropriations_NNP_11_59; Committee_NNP_12_74; leadership_NN_13_84\tturned 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\tback-to-back roll calls ;;; back-to-back_JJ_2_7; roll_NN_3_20; calls_NN_4_25\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe Appropriations Committee leadership ;;; the_DT_10_55; Appropriations_NNP_11_59; Committee_NNP_12_74; leadership_NN_13_84\tturned back ;;; turned_VBD_14_95; back_RP_15_102\tefforts 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\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tefforts 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\tbe turned back on ;;; turned_VBD_14_95; back_RP_15_102\tback-to-back roll calls ;;; back-to-back_JJ_2_7; roll_NN_3_20; calls_NN_4_25\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tLabatt 's balance sheet ;;; Labatt_NNP_48_282; 's_POS_49_289; balance_NN_50_292; sheet_NN_51_300\tto be strengthen in ;;; to_TO_46_268; strengthen_VB_47_271\tanticipation of acquisitions ;;; anticipation_NN_53_309; of_IN_54_322; acquisitions_NN_55_325\t0.01320\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0117\tacquisitions ;;; acquisitions_NN_55_325\tto be made during ;;; to_TO_56_338; be_VB_57_341; made_VBN_58_344\tthe 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\t0.01170\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tthe share issue ;;; the_DT_38_230; share_NN_39_234; issue_NN_40_240\tis ;;; is_VBZ_41_246\tpart of a strategy ;;; part_NN_42_249; of_IN_43_254; a_DT_44_257; strategy_NN_45_259\t0.00840\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tAnimal reproduction ;;; Animal_JJ_0_0; reproduction_NN_1_7\thowever takes ;;; however_RB_3_22; takes_VBZ_5_32\tmany forms ;;; many_JJ_6_38; forms_NN_7_43\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tAnother historian ;;; Another_DT_0_0; historian_NN_1_8\twrote ;;; wrote_VBD_8_42\ta report ;;; a_DT_9_48; report_NN_10_50\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tBrowning ;;; Browning_NNP_19_102\twrote ;;; wrote_VBD_20_111\ta report ;;; a_DT_21_117; report_NN_22_119\t0.37970\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tAnother historian ;;; Another_DT_0_0; historian_NN_1_8\twrote at ;;; wrote_VBD_8_42\tAuschwitz ;;; Auschwitz_NNP_16_86\t0.00650\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tAnother historian ;;; Another_DT_0_0; historian_NN_1_8\twrote on ;;; wrote_VBD_20_111\tthe evidence ;;; the_DT_24_129; evidence_NN_25_133\t0.00650\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tAnother historian ;;; Another_DT_0_0; historian_NN_1_8\twrote on ;;; wrote_VBD_8_42\tthe gassing facilities ;;; the_DT_12_60; gassing_NN_13_64; facilities_NN_14_72\t0.00650\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tBrowning ;;; Browning_NNP_19_102\twrote at ;;; wrote_VBD_8_42\tAuschwitz ;;; Auschwitz_NNP_16_86\t0.00650\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tBrowning ;;; Browning_NNP_19_102\twrote on ;;; wrote_VBD_20_111\tthe evidence ;;; the_DT_24_129; evidence_NN_25_133\t0.00650\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0065\tBrowning ;;; Browning_NNP_19_102\twrote on ;;; wrote_VBD_8_42\tthe gassing facilities ;;; the_DT_12_60; gassing_NN_13_64; facilities_NN_14_72\t0.00650\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tArmed 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\tlinked Senator Panfilo Lacson to ;;; linked_VBD_13_80; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103\tthe February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126\t0.73450\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tJr. ;;; Jr._NNP_12_76\tlinked Senator Panfilo Lacson to ;;; linked_VBD_13_80; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103\tthe February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126\t0.73450\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\t2005 Coup ;;; 2005_CD_22_130; Coup_NN_23_135\td ;;; d_VBD_24_140\t'etat plot ;;; 'etat_JJ_25_142; plot_NN_26_148\t0.37970\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tArmed 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\tlinked ;;; linked_VBD_13_80\tSenator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103\t0.37970\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tJr. ;;; Jr._NNP_12_76\tlinked ;;; linked_VBD_13_80\tSenator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tSenator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103\tbe linked to ;;; linked_VBD_13_80\tthe February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_10_56\tled 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\tCommanding 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_10_56\tled ;;; led_VBD_11_59\tthe invasion of the Philippines ;;; the_DT_12_63; invasion_NN_13_67; of_IN_14_76; the_DT_15_79; Philippines_NNP_16_83\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe invasion of the Philippines ;;; the_DT_12_63; invasion_NN_13_67; of_IN_14_76; the_DT_15_79; Philippines_NNP_16_83\tbe led as ;;; led_VBD_11_59\tCommanding 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\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\the ;;; he_PRP_10_56\tbe the invasion of ;;; the_DT_12_63; invasion_NN_13_67\tthe Philippines ;;; the_DT_15_79; Philippines_NNP_16_83\t0.01190\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tVader ;;; Vader_NNP_6_30\tgot on ;;; got_VBD_13_68\tthe 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} of\t{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} <nn< {arg1:postag=NNP} >poss> {arg2:postag=NNP}\t0.0162\tJim Cornette ;;; Jim_NNP_11_55; Cornette_NNP_12_59\tbe manager of ;;; manager_NN_10_47\tVader ;;; Vader_NNP_8_38\t0.01620\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\the ;;; he_PRP_17_88\twill 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\ta 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\t0.13490\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\the ;;; he_PRP_17_88\twill 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\tthe Booster club ;;; the_DT_34_172; Booster_NNP_35_176; club_NN_36_184\t0.13490\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\the ;;; he_PRP_17_88\twill 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\tAugust 2012 ;;; August_NNP_31_155; 2012_CD_32_162\t0.13490\tNone\tNone\n0\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tJuly ;;; July_NNP_12_63\tsaw bringing to ;;; saw_VBD_13_68; bringing_VBG_38_186\tan ignominious close ;;; an_DT_44_224; ignominious_JJ_45_227; close_NN_46_239\t0.73450\tAs_if early elimination from the playoff race was n't enough_0_10\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tJuly ;;; July_NNP_12_63\tsaw 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\tDes 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\t0.73450\tAs_if early elimination from the playoff race was n't enough_0_10\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tJuly ;;; July_NNP_12_63\tsaw 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\tDes 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\t0.73450\tAs_if early elimination from the playoff race was n't enough_0_10\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tJuly ;;; July_NNP_12_63\tsaw suffer ;;; saw_VBD_13_68; suffer_VB_16_81\ttwo 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\t0.37970\tAs_if early elimination from the playoff race was n't enough_0_10\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthe team ;;; the_DT_14_72; team_NN_15_76\tsuffer ;;; suffer_VB_16_81\ttwo 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\t0.14730\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe team ;;; the_DT_14_72; team_NN_15_76\tsuffer two 8-0 demolitions by ;;; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\tDes 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\t0.13490\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe team ;;; the_DT_14_72; team_NN_15_76\tsuffer two 8-0 demolitions in ;;; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\tDes 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\t0.13490\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ttwo 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\tbe suffer by ;;; suffer_VB_16_81\tDes 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\t0.01320\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ttwo 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96\tbe suffer in ;;; suffer_VB_16_81\tDes 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\t0.01320\tNone\tNone\n1\t\tmark(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthe U.S. ;;; the_DT_5_19; U.S._NNP_6_23\tcan bomb ;;; can_MD_7_28; bomb_VB_8_32\tTripoli ;;; Tripoli_NNP_9_37\t0.14730\tAs_it now stands_0_3\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe band ;;; the_DT_1_3; band_NN_2_7\tstruggled without ;;; struggled_VBD_3_12\tthe 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\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthey ;;; they_PRP_19_100\tplayed locally in ;;; played_VBD_20_105; locally_RB_21_112\tSouthern California ;;; Southern_JJ_23_123; California_NNP_24_132\t0.73450\tAs_the band struggled to find support slots on upcoming tours without the help of a booking agent_0_17\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthey ;;; they_PRP_19_100\tplayed locally throughout ;;; played_VBD_20_105; locally_RB_21_112\tthe 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\t0.73450\tAs_the band struggled to find support slots on upcoming tours without the help of a booking agent_0_17\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tthe band ;;; the_DT_1_3; band_NN_2_7\tstruggled to find ;;; struggled_VBD_3_12; to_TO_4_22; find_VB_5_25\tsupport slots ;;; support_NN_6_30; slots_NN_7_38\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_8_52\textends finger-like projections into ;;; extends_VBZ_9_55; finger-like_JJ_10_63; projections_NN_11_75\tthe surrounding maternal tissue ;;; the_DT_13_92; surrounding_VBG_14_96; maternal_JJ_15_108; tissue_NN_16_117\t0.24440\tAs_the trophoblast thickens through cell division_0_6\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe trophoblast ;;; the_DT_1_3; trophoblast_NN_2_7\tthickens through ;;; thickens_VBZ_3_19\tcell division ;;; cell_NN_5_36; division_NN_6_41\t0.24440\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tit ;;; it_PRP_8_52\textends ;;; extends_VBZ_9_55\tfinger-like projections ;;; finger-like_JJ_10_63; projections_NN_11_75\t0.14430\tAs_the trophoblast thickens through cell division_0_6\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe South ;;; the_DT_26_137; South_NNP_27_141\twere forced into ;;; were_VBD_29_149; forced_VBN_30_154\tan inferior status ;;; an_DT_32_166; inferior_JJ_33_169; status_NN_34_178\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tPike ;;; Pike_NNP_8_48\tsaid at ;;; said_VBD_9_53\tthe 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthe South ;;; the_DT_10_58; South_NNP_11_62\tseek ;;; seek_VB_18_99\tequality ;;; equality_NN_19_104\t0.14730\tNone\tPike_said_8_8_9_9\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe South ;;; the_DT_10_58; South_NNP_11_62\tshould remain in ;;; should_MD_12_68; remain_VB_13_75\tthe Union ;;; the_DT_15_85; Union_NNP_16_89\t0.13490\tNone\tPike_said_8_8_9_9\n0\t\tpobj(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)\tTemplate\t{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=come|go|look|lose|move|nod|present|return|say|take|turn} >prep_at> {arg2}\t0.0623\tPike ;;; Pike_NNP_8_48\tsaid to ;;; said_VBD_9_53\tthe 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\t0.06230\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=appear|arrive|begin|crash|die|follow|hold|land|live|locate|meet|open|play|preach|present|remain|say|settle|stay|work|write} >prep_at> {arg2}\t0.0083\tPike ;;; Pike_NNP_8_48\tsaid in ;;; said_VBD_9_53\tthe 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\t0.00830\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.006\tPike ;;; Pike_NNP_8_48\tsaid of ;;; said_VBD_9_53\tthe South ;;; the_DT_10_58; South_NNP_11_62\t0.00600\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\te-catenin ;;; e-catenin_NN_16_103\talso 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\tthe sea anemone Nematostella vectensis ;;; the_DT_23_151; sea_NN_24_155; anemone_NN_25_159; Nematostella_NNP_26_167; vectensis_NN_27_180\t0.24440\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\te-catenin ;;; e-catenin_NN_16_103\talso helps to control ;;; also_RB_17_113; helps_VBZ_18_118; to_TO_19_124; control_VB_20_127\tgastrulation ;;; gastrulation_NN_21_135\t0.14430\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tgastrulation ;;; gastrulation_NN_21_135\tto be control in ;;; to_TO_19_124; control_VB_20_127\tthe sea anemone Nematostella vectensis ;;; the_DT_23_151; sea_NN_24_155; anemone_NN_25_159; Nematostella_NNP_26_167; vectensis_NN_27_180\t0.01320\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tBattaramulla ;;; Battaramulla_NNP_0_0\thas 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\tKotte ;;; Kotte_NNP_7_43\t0.04780\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tKotte ;;; Kotte_NNP_7_43\tlay on ;;; lay_VBD_10_57\tthe 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\t0.02000\tNone\tNone\n0\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tchemiosmosis ;;; chemiosmosis_NN_13_88\thas helped of ;;; has_VBZ_14_101; helped_VBN_15_105\tits central importance ;;; its_PRP$_2_11; central_JJ_3_15; importance_NN_4_23\t0.04440\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tchemiosmosis ;;; chemiosmosis_NN_13_88\thas helped unify ;;; has_VBZ_14_101; helped_VBN_15_105\tthe study of bioenergetics ;;; the_DT_17_118; study_NN_18_122; of_IN_19_128; bioenergetics_NN_20_131\t0.04440\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0125\tthe high surface-to-volume ratio ;;; the_DT_2_11; high_JJ_3_15; surface-to-volume_NN_4_20; ratio_NN_5_38\tgoes with ;;; goes_VBZ_7_49\tsmall size ;;; small_JJ_9_59; size_NN_10_65\t0.01250\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tBeecher ;;; Beecher_NNP_0_0\tbegan collecting fossils from ;;; began_VBD_1_8; collecting_VBG_2_14; fossils_NN_3_25\tlocal sandstones and shales ;;; local_JJ_5_38; sandstones_NN_6_44; and_CC_7_55; shales_NN_8_59\t0.73450\twhen_his family moved to northwestern Pennsylvania_9_15\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\this family ;;; his_PRP$_10_71; family_NN_11_75\tmoved to ;;; moved_VBD_12_82\tnorthwestern Pennsylvania ;;; northwestern_JJ_14_91; Pennsylvania_NNP_15_104\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tBeecher ;;; Beecher_NNP_0_0\tbegan collecting ;;; began_VBD_1_8; collecting_VBG_2_14\tfossils ;;; fossils_NN_3_25\t0.37970\twhen_his family moved to northwestern Pennsylvania_9_15\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tfossils ;;; fossils_NN_3_25\tbe collecting from ;;; collecting_VBG_2_14\tlocal sandstones and shales ;;; local_JJ_5_38; sandstones_NN_6_44; and_CC_7_55; shales_NN_8_59\t0.00790\twhen_his family moved to northwestern Pennsylvania_9_15\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\torders ;;; orders_NN_9_57\twere 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\tadjustment ;;; adjustment_NN_1_7\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.1473\tBoth radial glia and astrocytes ;;; Both_DT_0_0; radial_JJ_1_5; glia_NN_2_12; and_CC_3_17; astrocytes_NN_4_21\tcan also act generating ;;; can_MD_5_32; also_RB_6_36; act_VB_7_41; generating_VBG_12_61\tnew neurons and glia ;;; new_JJ_13_72; neurons_NN_14_76; and_CC_15_84; glia_NNP_16_88\t0.14730\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tBoth radial glia and astrocytes ;;; Both_DT_0_0; radial_JJ_1_5; glia_NN_2_12; and_CC_3_17; astrocytes_NN_4_21\tcan also act as ;;; can_MD_5_32; also_RB_6_36; act_VB_7_41\tstem cells ;;; stem_NN_9_48; cells_NN_10_53\t0.13490\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tBruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6\tbe chairman of ;;; chairman_NN_3_14\tDeGol Brothers Lumber ;;; DeGol_NNP_5_26; Brothers_NNP_6_32; Lumber_NNP_7_41\t0.40310\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=accept|acknowledge|allow|appoint|baptize|bear|believe|bless|build|call|choose|claim|consider|declare|design|destine|elect|elevate|expect|fit|force|give|guarantee|hold|inaugurate|intend|invite|know|locate|make|mean|name|nominate|perceive|poise|prepare|proclaim|project|prove|qualify|recognize|reelect|register|report|repute|require|say|schedule|see|select|set|show|slate|state|suppose|swear|take|think|understand|unqualify|use|vote} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0208\tBruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6\tbe a director of ;;; a_DT_16_78; director_NN_17_80\tthis bank-holding company ;;; this_DT_19_92; bank-holding_JJ_20_97; company_NN_21_110\t0.02080\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tDeGol Brothers Lumber ;;; DeGol_NNP_5_26; Brothers_NNP_6_32; Lumber_NNP_7_41\tbe chairman of ;;; chairman_NN_3_14\tGallitzin ;;; Gallitzin_NNP_9_50\t0.01090\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >xcomp> {arg2}\t0.0087\tBruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6\twas named ;;; was_VBD_14_68; named_VBN_15_72\ta 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\t0.00870\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe board ;;; the_DT_24_130; board_NN_25_134\tbe expanding to ;;; expanding_VBG_23_120\t11 members ;;; 11_CD_27_143; members_NN_28_146\t0.00790\tNone\tNone\n1\t\tpossessive(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tWolfowitz 's tenure ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17\twas a notable success largely owing to ;;; was_VBD_6_38; a_DT_7_42; notable_JJ_8_44; success_NN_9_52\tthe fact ;;; the_DT_14_79; fact_NN_15_83\t0.95550\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_21_108\twent native in ;;; went_VBD_22_111; native_JJ_23_116\tessence ;;; essence_NN_19_98\t0.73450\tNone\tNone\n1\t\tpossessive(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\ta notable success ;;; a_DT_7_42; notable_JJ_8_44; success_NN_9_52\tbe Wolfowitz 's tenure as ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17\tAmbassador ;;; Ambassador_NNP_5_27\t0.04770\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tWolfowitz 's tenure ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17\twas ;;; was_VBD_6_38\ta notable success ;;; a_DT_7_42; notable_JJ_8_44; success_NN_9_52\t0.02160\tNone\tNone\n0\t\tpossessive(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)\tTemplate\t{rel} to\t{arg1} <prep_in< {rel:postag=VBD:regex=come|fall|go|lose|say} >nsubj> {arg2}\t0.0071\tessence ;;; essence_NN_19_98\twent native to ;;; went_VBD_22_111; native_JJ_23_116\the ;;; he_PRP_21_108\t0.00710\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tthis approach called reverse genetics ;;; this_DT_1_4; approach_NN_2_9; called_VBN_4_20; reverse_NN_5_27; genetics_NN_6_35\tposes ;;; poses_VBZ_8_46\ta new challenge ;;; a_DT_9_52; new_JJ_10_54; challenge_NN_11_58\t0.14430\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe phenotype ;;; the_DT_14_82; phenotype_NN_15_86\tbe determining from ;;; determining_VBG_13_70\tthe genotype ;;; the_DT_17_101; genotype_NN_18_105\t0.00790\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tRome ;;; Rome_NNP_6_37\tasked 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\thelp ;;; help_NN_22_118\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe 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\tadvanced to ;;; advanced_VBD_33_183\tAmfissa ;;; Amfissa_NNP_35_195\t0.73450\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tRome ;;; Rome_NNP_6_37\tasked ;;; asked_VBD_14_75\tAntiochus III ;;; Antiochus_NNP_15_81; III_NNP_16_91\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tRome ;;; Rome_NNP_6_37\twas to rule ;;; was_VBD_7_42; to_TO_8_46; rule_VB_9_49\tthe Greek cities ;;; the_DT_10_54; Greek_JJ_11_58; cities_NN_12_64\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_38_211\tconquered ;;; conquered_VBD_39_214\tthe Crissaean plain ;;; the_DT_40_224; Crissaean_NNP_41_228; plain_NN_42_238\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe 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\tseized ;;; seized_VBD_30_166\tLamia ;;; Lamia_NNP_31_173\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\the ;;; he_PRP_38_211\tbesieged ;;; besieged_VBN_44_248\tthe town ;;; the_DT_45_257; town_NN_46_261\t0.05770\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\the ;;; he_PRP_38_211\tbesieged the town in ;;; besieged_VBN_44_248; the_DT_45_257; town_NN_46_261\t190 BC ;;; 190_CD_48_269; BC_NNP_49_273\t0.04440\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tRome ;;; Rome_NNP_6_37\tto rule ;;; to_TO_8_46; rule_VB_9_49\tthe Greek cities ;;; the_DT_10_54; Greek_JJ_11_58; cities_NN_12_64\t0.01950\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tAntiochus III ;;; Antiochus_NNP_15_81; III_NNP_16_91\tbe asked for ;;; asked_VBD_14_75\thelp ;;; help_NN_22_118\t0.01550\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0105\tthe Aetolians ;;; the_DT_2_9; Aetolians_NNP_3_13\trealised ;;; realised_VBD_4_23\tRome ;;; Rome_NNP_6_37\t0.01050\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tthe squadron ;;; the_DT_20_112; squadron_NN_21_116\tbe an airfield at ;;; an_DT_10_53; airfield_NN_11_56\tCape Torokina ;;; Cape_NNP_13_68; Torokina_NNP_14_73\t0.95550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tthe squadron ;;; the_DT_20_112; squadron_NN_21_116\tbe an airfield on ;;; an_DT_10_53; airfield_NN_11_56\tBougainville ;;; Bougainville_NNP_16_85\t0.95550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe squadron ;;; the_DT_20_112; squadron_NN_21_116\tbegan taking part in ;;; began_VBD_22_125; taking_VBG_23_131; part_NN_24_138\tthe air ;;; the_DT_26_146; air_NN_27_150\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tRabaul ;;; Rabaul_NNP_34_195\tbe the Japanese naval base at ;;; the_DT_36_204; Japanese_JJ_37_208; naval_JJ_38_217; base_NN_39_223\tKavieng ;;; Kavieng_NNP_41_231\t0.40310\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tthe squadron ;;; the_DT_20_112; squadron_NN_21_116\tbegan taking ;;; began_VBD_22_125; taking_VBG_23_131\tpart ;;; part_NN_24_138\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\t1944 the squadron ;;; 1944_CD_4_16; the_DT_5_21; squadron_NN_6_25\twas operating by ;;; was_VBD_7_34; operating_VBG_8_38\tJanuary 27 ;;; January_NNP_1_3; 27_CD_2_11\t0.03930\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\t1944 the squadron ;;; 1944_CD_4_16; the_DT_5_21; squadron_NN_6_25\twas operating from ;;; was_VBD_7_34; operating_VBG_8_38\tan airfield ;;; an_DT_10_53; airfield_NN_11_56\t0.03930\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tpart ;;; part_NN_24_138\tbe taking in ;;; taking_VBG_23_131\tthe air ;;; the_DT_26_146; air_NN_27_150\t0.00790\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tByrom ;;; Byrom_NNP_0_0\tis commemorated by ;;; is_VBZ_29_143; commemorated_VBN_30_146\ta plaque ;;; a_DT_32_162; plaque_NN_33_164\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tByrom ;;; Byrom_NNP_0_0\twas born at ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\this birth ;;; his_PRP$_27_133; birth_NN_28_137\tis commemorated by ;;; is_VBZ_29_143; commemorated_VBN_30_146\ta plaque ;;; a_DT_32_162; plaque_NN_33_164\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\this birth ;;; his_PRP$_27_133; birth_NN_28_137\twas born at ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=assassinate|base|bear|build|bury|celebrate|establish|found|headquarter|hold|keep|kill|locate|make|perform|permit|play|present|see|situate} >prep_at> {arg2}\t0.0432\tByrom ;;; Byrom_NNP_0_0\twas born in ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t0.04320\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN:regex=assassinate|base|bear|build|bury|celebrate|establish|found|headquarter|hold|keep|kill|locate|make|perform|permit|play|present|see|situate} >prep_at> {arg2}\t0.0432\this birth ;;; his_PRP$_27_133; birth_NN_28_137\twas born in ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t0.04320\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tThe Wellington Inn ;;; The_DT_16_74; Wellington_NNP_17_78; Inn_NNP_18_89\tis now ;;; is_VBZ_19_93; now_RB_20_96\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t0.00840\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|celebrate|crucify|deliver|find|give|hold|locate|play|situate} >prep_at> {arg2}\t0.0055\tByrom ;;; Byrom_NNP_0_0\twas born on ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t0.00550\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|celebrate|crucify|deliver|find|give|hold|locate|play|situate} >prep_at> {arg2}\t0.0055\this birth ;;; his_PRP$_27_133; birth_NN_28_137\twas born on ;;; was_VBD_1_6; born_VBN_2_10\ta major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116\t0.00550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tthe final proration factor ;;; the_DT_11_71; final_JJ_12_75; proration_NN_13_81; factor_NN_14_91\twas ;;; was_VBD_15_98\t0.628394 ;;; 0.628394_CD_16_102\t0.02160\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tits common stock dividend ;;; its_PRP$_12_73; common_JJ_13_77; stock_NN_14_84; dividend_NN_15_90\tbe reinstated at ;;; be_VB_16_99; reinstated_VBN_17_102\ta \" modest level ;;; a_DT_19_116; \"_``_20_118; modest_JJ_21_120; level_NN_22_127\t1.00000\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tmanagement ;;; management_NN_4_22\twould recommend to ;;; would_MD_5_33; recommend_VB_6_39\tits board ;;; its_PRP$_8_52; board_NN_9_56\t0.13490\tNone\tCMS ENERGY Corp._said_0_2_3_3\n0\t\tnn(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)\tTemplate\tbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} >tmod> {arg2}\t0.0305\tits common stock dividend ;;; its_PRP$_12_73; common_JJ_13_77; stock_NN_14_84; dividend_NN_15_90\tbe reinstated in ;;; be_VB_16_99; reinstated_VBN_17_102\tthis year ;;; this_DT_25_141; year_NN_26_146\t0.03050\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tCapillaries 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\tare usually filled to ;;; are_VBP_11_55; usually_RB_12_59; filled_VBN_13_67\tcapacity ;;; capacity_NN_15_77\t1.00000\tNone\tNone\n0\t\tprep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe blood supply ;;; the_DT_22_112; blood_NN_23_116; supply_NN_24_122\tvaries as ;;; varies_VBZ_25_129\tblood ;;; blood_NN_29_149\t0.24440\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe blood supply ;;; the_DT_22_112; blood_NN_23_116; supply_NN_24_122\tvaries over ;;; varies_VBZ_25_129\ttime ;;; time_NN_27_141\t0.24440\tNone\tNone\n0\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\theart ;;; heart_NN_5_27\tbe Capillaries in ;;; Capillaries_NN_0_0\tthe brain ;;; the_DT_2_15; brain_NN_3_19\t0.00660\tNone\tNone\n0\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tkidneys ;;; kidneys_NN_7_35\tbe Capillaries in ;;; Capillaries_NN_0_0\tthe brain ;;; the_DT_2_15; brain_NN_3_19\t0.00660\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tshe ;;; she_PRP_7_49\twas kidnapped in ;;; was_VBD_8_53; kidnapped_VBN_9_57\tBaghdad ;;; Baghdad_NNP_11_70\t1.00000\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tshe ;;; she_PRP_7_49\twas kidnapped on ;;; was_VBD_8_53; kidnapped_VBN_9_57\tJanuary 7 , 2006 ;;; January_NNP_13_81; 7_CD_14_89; ,_,_15_91; 2006_CD_16_93\t1.00000\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tCarroll ;;; Carroll_NNP_0_0\tbecame ;;; became_VBD_1_8\tan international cause clbre ;;; an_DT_2_15; international_JJ_3_18; cause_NN_4_32; clbre_NN_5_38\t0.02160\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tCedric Roussel ;;; Cedric_NNP_0_0; Roussel_NNP_1_7\tis 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\ta Belgian football striker ;;; a_DT_3_18; Belgian_JJ_4_20; football_NN_5_28; striker_NN_6_37\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_11_54\tlooked at ;;; looked_VBD_12_57\tdead cells ;;; dead_JJ_17_88; cells_NN_18_93\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_11_54\tlooked through ;;; looked_VBD_12_57\ta microscope ;;; a_DT_14_72; microscope_NN_15_74\t0.73450\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel} to\t{arg1} <nsubj< {rel:postag=VBD:regex=come|go|look|lose|move|nod|present|return|say|take|turn} >prep_at> {arg2}\t0.0623\the ;;; he_PRP_11_54\tlooked to ;;; looked_VBD_12_57\tdead cells ;;; dead_JJ_17_88; cells_NN_18_93\t0.06230\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tCell walls ;;; Cell_NNP_0_0; walls_NN_1_5\twere ;;; were_VBD_2_11\tfirst ;;; first_JJ_3_16\t0.02160\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0071\tfirst ;;; first_JJ_3_16\tbe seen by ;;; seen_VBN_4_22\tRobert Hooke ;;; Robert_NNP_6_30; Hooke_NNP_7_37\t0.00710\tas_he looked through a microscope at dead cells from the bark of an oak tree_10_25\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0071\tfirst ;;; first_JJ_3_16\tbe seen in ;;; seen_VBN_4_22\t1665 ;;; 1665_CD_9_46\t0.00710\tas_he looked through a microscope at dead cells from the bark of an oak tree_10_25\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tCephalopods ;;; Cephalopods_NN_0_0\tare the only molluscs with ;;; are_VBP_1_12; the_DT_2_16; only_JJ_3_20; molluscs_NN_4_25\ta 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\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tthe blood ;;; the_DT_13_78; blood_NN_14_82\tremains separate from ;;; remains_VBZ_15_88; separate_JJ_16_96\tfluid ;;; fluid_NN_18_110\t0.04780\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tthe blood ;;; the_DT_13_78; blood_NN_14_82\tremains separate in ;;; remains_VBZ_15_88; separate_JJ_16_96\tthe body cavity ;;; the_DT_20_119; body_NN_21_123; cavity_NN_22_128\t0.04780\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tthe blood ;;; the_DT_13_78; blood_NN_14_82\tremains ;;; remains_VBZ_15_88\tseparate ;;; separate_JJ_16_96\t0.00840\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tCertain species ;;; Certain_JJ_0_0; species_NN_1_8\thave ;;; have_VBP_2_16\tan especially large impact ;;; an_DT_3_21; especially_RB_4_24; large_JJ_5_35; impact_NN_6_41\t0.04160\tbecause_they are highly abundant or play a pivotal role in community dynamics_13_25\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta pivotal role ;;; a_DT_20_128; pivotal_JJ_21_130; role_NN_22_138\tbe play in ;;; play_VB_19_123\tcommunity dynamics ;;; community_NN_24_146; dynamics_NN_25_156\t0.01320\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tChesler ;;; Chesler_NNP_0_0\ttaught 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\tRichmond College ;;; Richmond_NNP_11_60; College_NNP_12_69\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tChesler ;;; Chesler_NNP_0_0\ttaught 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\tthe 1969-1970 school year ;;; the_DT_18_101; 1969-1970_CD_19_105; school_NN_20_115; year_NN_21_122\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tChesler ;;; Chesler_NNP_0_0\ttaught ;;; taught_VBD_1_8\tone 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\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tone 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\tbe taught at ;;; taught_VBD_1_8\tRichmond College ;;; Richmond_NNP_11_60; College_NNP_12_69\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tone 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\tbe taught during ;;; taught_VBD_1_8\tthe 1969-1970 school year ;;; the_DT_18_101; 1969-1970_CD_19_105; school_NN_20_115; year_NN_21_122\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tChristie ;;; Christie_NNP_0_0\tmade a splash with ;;; made_VBD_1_9; a_DT_2_14; splash_NN_3_16\ther extraordinary performance ;;; her_PRP$_5_28; extraordinary_JJ_6_32; performance_NN_7_46\t0.73450\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tJane Bennet ;;; Jane_NNP_9_61; Bennet_NNP_10_66\tacclaimed miniseries Lost in ;;; acclaimed_VBD_15_94; miniseries_NN_16_104; Lost_NNP_17_115\tAusten ;;; Austen_NNP_19_123\t0.73450\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tAusten ;;; Austen_NNP_19_123\tbe a modern twist on ;;; a_DT_21_132; modern_JJ_22_134; twist_NN_23_141\tAusten 's Pride ;;; Austen_NNP_25_150; 's_POS_26_157; Pride_NNP_27_160\t0.40310\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tChristie ;;; Christie_NNP_0_0\tmade ;;; made_VBD_1_9\ta splash ;;; a_DT_2_14; splash_NN_3_16\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tJane Bennet ;;; Jane_NNP_9_61; Bennet_NNP_10_66\tacclaimed ;;; acclaimed_VBD_15_94\tminiseries Lost ;;; miniseries_NN_16_104; Lost_NNP_17_115\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta splash ;;; a_DT_2_14; splash_NN_3_16\tbe made with ;;; made_VBD_1_9\ther extraordinary performance ;;; her_PRP$_5_28; extraordinary_JJ_6_32; performance_NN_7_46\t0.01550\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tminiseries Lost ;;; miniseries_NN_16_104; Lost_NNP_17_115\tbe acclaimed in ;;; acclaimed_VBD_15_94\tAusten ;;; Austen_NNP_19_123\t0.01550\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tClarcor ;;; Clarcor_NNP_0_0\tbe a maker of ;;; a_DT_2_10; maker_NN_3_12\tpackaging and filtration products ;;; packaging_NN_5_21; and_CC_6_31; filtration_NN_7_35; products_NN_8_46\t0.40310\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe two companies ;;; the_DT_11_62; two_CD_12_66; companies_NN_13_70\tcould n't agree on ;;; could_MD_14_80; n't_RB_15_86; agree_VB_16_90\tterms of a definitive agreement ;;; terms_NN_18_99; of_IN_19_105; a_DT_20_108; definitive_JJ_21_110; agreement_NN_22_121\t0.13490\tNone\tClarcor_said_0_0_10_10\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tCoca-Cola Enterprises ;;; Coca-Cola_NNP_0_0; Enterprises_NNP_1_10\tblamed the lower volume on ;;; blamed_VBD_2_22; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39\tits 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\t0.73450\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tCoca-Cola Enterprises ;;; Coca-Cola_NNP_0_0; Enterprises_NNP_1_10\tblamed ;;; blamed_VBD_2_22\tthe lower volume ;;; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe lower volume ;;; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39\tbe blamed on ;;; blamed_VBD_2_22\tits 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\t0.01550\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tthe hydrogen bonds ;;; the_DT_2_15; hydrogen_NN_3_19; bonds_NN_4_28\tCollectively hold the substance together ;;; Collectively_RB_0_0; hold_VBP_5_34; the_DT_6_39; substance_NN_7_43; together_RB_8_53\ta phenomenon called cohesion ;;; a_DT_10_64; phenomenon_NN_11_66; called_VBN_12_77; cohesion_NN_13_84\t0.04160\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tthe hydrogen bonds ;;; the_DT_2_15; hydrogen_NN_3_19; bonds_NN_4_28\tCollectively 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\tthe substance ;;; the_DT_6_39; substance_NN_7_43\t0.04160\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tthe San Juan ;;; the_DT_20_106; San_NNP_21_110; Juan_NNP_22_114\tbe the capital of ;;; the_DT_24_121; capital_NN_25_125\tPuerto Rico ;;; Puerto_NNP_27_136; Rico_NNP_28_143\t0.40310\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tCordero ;;; Cordero_NNP_0_0\twas born ;;; was_VBD_1_8; born_VBN_2_12\tFederico Arturo Cordero Salguero ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41\t0.01910\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=announce|appoint|bear|call|choose|declare|elect|inaugurate|install|make|name|notice|proclaim|reelect|refer|slate|swear|vote} >dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0124\tCordero ;;; Cordero_NNP_0_0\tbe Federico Arturo Cordero Salguero in ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41\tRio Piedras ;;; Rio_NNP_8_53; Piedras_NNP_9_57\t0.01240\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0083\tFederico Arturo Cordero Salguero ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41\twas born in ;;; was_VBD_1_8; born_VBN_2_12\tRio Piedras ;;; Rio_NNP_8_53; Piedras_NNP_9_57\t0.00830\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tCordis ;;; Cordis_NNP_0_0\tsold 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\tTelectronics Holding Ltd. of Australia ;;; Telectronics_NNP_9_54; Holding_NNP_10_67; Ltd._NNP_11_75; of_IN_12_80; Australia_NNP_13_83\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tCordis ;;; Cordis_NNP_0_0\tsold two years ago ;;; sold_VBD_1_7; two_CD_5_37; years_NN_6_41; ago_RB_7_47\tits pacemaker operations ;;; its_PRP$_2_12; pacemaker_NN_3_16; operations_NN_4_26\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tits pacemaker operations ;;; its_PRP$_2_12; pacemaker_NN_3_16; operations_NN_4_26\tbe sold two years ago to ;;; sold_VBD_1_7; two_CD_5_37; years_NN_6_41; ago_RB_7_47\tTelectronics Holding Ltd. of Australia ;;; Telectronics_NNP_9_54; Holding_NNP_10_67; Ltd._NNP_11_75; of_IN_12_80; Australia_NNP_13_83\t0.01550\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tShareData ;;; ShareData_NNP_2_12\tCurrently has ;;; Currently_RB_0_0; has_VBZ_3_22\tabout 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\t0.14430\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tThurston County ;;; Thurston_NNP_8_45; County_NNP_9_54\tbe eleven townships in ;;; eleven_CD_5_25; townships_NN_6_32\tUnited States ;;; United_NNP_13_74; States_NNP_14_81\t0.01090\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0095\tDawes Township ;;; Dawes_NNP_0_0; Township_NNP_1_6\tbe eleven townships in ;;; eleven_CD_5_25; townships_NN_6_32\tThurston County ;;; Thurston_NNP_8_45; County_NNP_9_54\t0.00950\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tDawes Township ;;; Dawes_NNP_0_0; Township_NNP_1_6\tis ;;; is_VBZ_2_15\tone of eleven townships ;;; one_CD_3_18; of_IN_4_22; eleven_CD_5_25; townships_NN_6_32\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tDell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5\tis the father of ;;; is_VBZ_2_11; the_DT_3_14; father_NN_4_18\tStephen Curry ;;; Stephen_NNP_6_28; Curry_NNP_7_36\t0.95550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tDell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5\twas chosen ;;; was_VBD_22_121; chosen_VBN_23_125\t7th overall ;;; 7th_NNP_24_132; overall_NN_25_136\t0.05770\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tDell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5\twas chosen 7th overall by ;;; was_VBD_22_121; chosen_VBN_23_125; 7th_NNP_24_132; overall_NN_25_136\tthe Golden State Warriors ;;; the_DT_27_147; Golden_NNP_28_151; State_NNP_29_158; Warriors_NNP_30_164\t0.04440\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tDell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5\twas chosen 7th overall in ;;; was_VBD_22_121; chosen_VBN_23_125; 7th_NNP_24_132; overall_NN_25_136\tthe 2009 NBA Draft ;;; the_DT_32_176; 2009_CD_33_180; NBA_NNP_34_185; Draft_NNP_35_189\t0.04440\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <appos< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0282\tNorth Carolina ;;; North_NNP_18_100; Carolina_NNP_19_106\tbe Davidson College in ;;; Davidson_NNP_13_69; College_NNP_14_78\tDavidson ;;; Davidson_NNP_16_89\t0.02820\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tStephen Curry ;;; Stephen_NNP_6_28; Curry_NNP_7_36\tplayed basketball at ;;; played_VBD_10_48; basketball_NN_11_55\tDavidson College ;;; Davidson_NNP_13_69; College_NNP_14_78\t0.02000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tbasketball ;;; basketball_NN_11_55\tbe played at ;;; played_VBD_10_48\tDavidson College ;;; Davidson_NNP_13_69; College_NNP_14_78\t0.01550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tDell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5\tis ;;; is_VBZ_2_11\tthe father of Stephen Curry ;;; the_DT_3_14; father_NN_4_18; of_IN_5_25; Stephen_NNP_6_28; Curry_NNP_7_36\t0.00840\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tDenis C. Smith ;;; Denis_NNP_0_0; C._NNP_1_6; Smith_NNP_2_9\twas named for ;;; was_VBD_3_15; named_VBN_4_19\tthis chemicals concern ;;; this_DT_18_107; chemicals_NN_19_112; concern_NN_20_122\t1.00000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tDenis C. Smith ;;; Denis_NNP_0_0; C._NNP_1_6; Smith_NNP_2_9\twas named to ;;; was_VBD_3_15; named_VBN_4_19\tthe 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\t1.00000\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=act|attack|bear|call|camera|convert|drive|escort|file|go|hire|land|live|look|meet|move|post|report|retreat|return|run|set|stand|start|surrender|talk|triumph|vote|wait|walk|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0101\tnew ;;; new_JJ_7_32\tpost of ;;; post_NN_8_36\tvice 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\t0.01010\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_3_13\twas at ;;; was_VBD_4_16\tR.Premadasa Stadium ;;; R.Premadasa_NNP_16_71; Stadium_NNP_17_83\t0.73450\tNone\tNone\n0\t\tpunct(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_3_13\twas during ;;; was_VBD_4_16\this innings of 23 ;;; his_PRP$_8_32; innings_NN_9_36; of_IN_10_44; 23_CD_11_47\t0.73450\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_3_13\twas on ;;; was_VBD_4_16\t4 ;;; 4_CD_6_23\t0.73450\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tDhoni ;;; Dhoni_NN_0_0\tcompleted ;;; completed_VBD_23_115\this 4,000 runs ;;; his_PRP$_24_125; 4,000_CD_25_129; runs_NN_26_135\t0.37970\tNone\tNone\n0\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tDhoni ;;; Dhoni_NN_0_0\tbe his 4,000 runs in ;;; his_PRP$_24_125; 4,000_CD_25_129; runs_NN_26_135\tODIs ;;; ODIs_NNP_28_143\t0.01190\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tDifferentiated cells ;;; Differentiated_JJ_0_0; cells_NN_1_15\tgenerally do not divide in ;;; generally_RB_4_34; do_VBP_5_44; not_RB_6_47; divide_VB_7_51\tculture ;;; culture_NN_9_61\t0.13490\tNone\tNone\n0\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tDisappointment ;;; Disappointment_NN_0_0\tled to reduce ;;; led_VBD_9_60; to_TO_12_92; reduce_VB_13_95\tits 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\t0.37970\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tPrudential-Bache Securities ;;; Prudential-Bache_NNP_10_64; Securities_NNP_11_81\tto reduce ;;; to_TO_12_92; reduce_VB_13_95\tits 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\t0.14730\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tDominion Textile Inc. holders ;;; Dominion_NNP_0_0; Textile_NNP_1_9; Inc._NNP_2_17; holders_NN_3_22\tadopted a shareholder-rights plan at ;;; adopted_VBD_4_30; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59\tthe annual meeting ;;; the_DT_9_67; annual_JJ_10_71; meeting_NN_11_78\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tDominion Textile Inc. holders ;;; Dominion_NNP_0_0; Textile_NNP_1_9; Inc._NNP_2_17; holders_NN_3_22\tadopted ;;; adopted_VBD_4_30\ta shareholder-rights plan ;;; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta shareholder-rights plan ;;; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59\tbe adopted at ;;; adopted_VBD_4_30\tthe annual meeting ;;; the_DT_9_67; annual_JJ_10_71; meeting_NN_11_78\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_9_52\thad during ;;; had_VBD_10_55\this freshman year ;;; his_PRP$_1_7; freshman_NN_2_11; year_NN_3_20\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_9_52\thelped 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\ta national championship ;;; a_DT_33_181; national_JJ_34_183; championship_NN_35_192\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\the ;;; he_PRP_9_52\thelped to lead ;;; helped_VBD_27_150; to_TO_28_157; lead_VB_29_160\tthe Buckeyes ;;; the_DT_30_165; Buckeyes_NN_31_169\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tthe Buckeyes ;;; the_DT_30_165; Buckeyes_NN_31_169\tto lead to be ;;; to_TO_28_157; lead_VB_29_160\ta national championship ;;; a_DT_33_181; national_JJ_34_183; championship_NN_35_192\t0.01320\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_9_41\twas involved during ;;; was_VBD_10_44; involved_VBN_11_48\this time ;;; his_PRP$_1_7; time_NN_2_11\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_9_41\twas involved in ;;; was_VBD_10_44; involved_VBN_11_48\tthe 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\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\tthe Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122\twas 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\tEast Berlin ;;; East_NNP_38_174; Berlin_NNP_39_179\t0.03140\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\tthe Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122\twas 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\tthe West ;;; the_DT_41_189; West_NNP_42_193\t0.03140\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\tthe Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122\twas the escape route of ;;; was_VBD_30_135; the_DT_31_139; escape_NN_32_143; route_NN_33_150\t57 people ;;; 57_CD_35_159; people_NN_36_162\t0.03140\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0057\the ;;; he_PRP_9_41\twas involved of ;;; was_VBD_10_44; involved_VBN_11_48\tthe 145 m long ;;; the_DT_16_76; 145_CD_17_80; m_NN_18_84; long_JJ_19_86\t0.00570\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tit ;;; it_PRP_11_59\tappeared to ;;; appeared_VBD_12_62\tFlemming ;;; Flemming_NNP_14_74\t0.73450\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tEach note ;;; Each_DT_0_0; note_NN_1_5\tis being offered at ;;; is_VBZ_2_10; being_VBG_3_13; offered_VBN_4_19\tmaturity ;;; maturity_NN_14_71\t1.00000\tNone\tNone\n1\t\tadvmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tCordis ;;; Cordis_NNP_4_20\tbe a maker of ;;; a_DT_6_29; maker_NN_7_31\tmedical devices ;;; medical_JJ_9_40; devices_NN_10_48\t0.40310\tNone\tNone\n0\t\tadvmod(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >tmod> {arg2}\t0.0151\tCordis ;;; Cordis_NNP_4_20\tagreed in ;;; agreed_VBD_12_58\tthis year ;;; this_DT_1_8; year_NN_2_13\t0.01510\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tA.P. Green ;;; A.P._NNP_17_84; Green_NNP_18_89\ttold ;;; told_VBD_25_127\tthe partnership ;;; the_DT_26_132; partnership_NN_27_136\t0.37970\tNone\tEast Rock Partners_said_0_2_16_16\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_28_148\tis n't for ;;; is_VBZ_29_151; n't_RB_30_154\tsale ;;; sale_NN_32_162\t0.24440\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tit ;;; it_PRP_7_41\tmight make ;;; might_MD_8_44; make_VB_9_50\ta bid ;;; a_DT_10_55; bid_NN_11_57\t0.14730\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0105\tEast Rock Partners ;;; East_NNP_0_0; Rock_NNP_1_5; Partners_NNP_2_10\tsaid ;;; said_VBD_16_79\tA.P. Green ;;; A.P._NNP_17_84; Green_NNP_18_89\t0.01050\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VB:regex=annex|appoint|ask|assign|assist|authorize|be|become|bring|call|celebrate|constitute|contact|contain|convert|designate|do|establish|form|give|have|honor|inform|invite|keep|last|make|mean|name|nominate|notify|offer|overcome|pose|present|provide|recall|receive|remain|remove|represent|request|retain|reveal|see|select|serve|stay|take|teach|use} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0057\tit ;;; it_PRP_7_41\tbe a bid for ;;; a_DT_10_55; bid_NN_11_57\tthe company ;;; the_DT_13_65; company_NN_14_69\t0.00570\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\ta pebble ;;; a_DT_12_88; pebble_NN_13_90\tbe dropping into ;;; dropping_VBG_11_79\ta pond ;;; a_DT_15_102; pond_NN_16_104\t0.00790\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tprices ;;; prices_NN_2_12\tElsewhere surged for ;;; Elsewhere_RB_0_0; surged_VBD_3_19\ta second day ;;; a_DT_5_30; second_JJ_6_32; day_NN_7_39\t0.73450\tNone\tNone\n0\t\tadvmod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tprices ;;; prices_NN_2_12\tclosed in ;;; closed_VBD_11_58\tZurich , Stockholm and Amsterdam ;;; Zurich_NNP_14_75; ,_,_15_82; Stockholm_NNP_16_84; and_CC_17_94; Amsterdam_NNP_18_98\t0.73450\tNone\tNone\n1\t\tadvmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJR} >{prep:regex=prep_(.*)}> {arg2}\t0.0128\tprices ;;; prices_NN_2_12\twere broadly lower in ;;; were_VBD_20_112; broadly_RB_21_117; lower_JJR_22_125\tMilan , Paris and Brussels ;;; Milan_NNP_24_134; ,_,_25_140; Paris_NNP_26_142; and_CC_27_148; Brussels_NNP_28_152\t0.01280\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\toperating profit ;;; operating_NN_5_24; profit_NN_6_34\tdeclined ;;; declined_VBD_7_41\t35 % ;;; 35_CD_8_50; %_NN_9_53\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tImperial Cup Corp. ;;; Imperial_NNP_12_79; Cup_NNP_13_88; Corp._NNP_14_92\tbe a closely held maker of ;;; a_DT_16_100; closely_RB_17_102; held_VBN_18_110; maker_NN_19_115\tpaper 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\t0.40310\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tit ;;; it_PRP_5_29\tcompleted ;;; completed_VBD_6_32\tthe 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\t0.37970\tNone\tFederal Paper Board Co._said_0_3_4_4\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tpaper cups ;;; paper_NN_21_124; cups_NN_22_130\tbe based in ;;; based_VBN_23_135\tKenton ;;; Kenton_NNP_25_144\t0.11100\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0901\tKenton ;;; Kenton_NNP_25_144\tbe based in ;;; based_VBN_23_135\tOhio ;;; Ohio_NNP_27_153\t0.09010\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tit ;;; it_PRP_5_29\tbe the previously announced purchase of ;;; the_DT_7_42; previously_RB_8_46; announced_VBN_9_57; purchase_NN_10_67\tImperial Cup Corp. ;;; Imperial_NNP_12_79; Cup_NNP_13_88; Corp._NNP_14_92\t0.01190\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VB}\t0.008\ta foreign molecule ;;; a_DT_2_8; foreign_JJ_3_10; molecule_NN_4_18\tFirst must be ;;; First_RB_0_0; must_MD_5_27; be_VB_6_32\tpresent ;;; present_JJ_7_35\t0.00800\tNone\tNone\n1\t\tnumber(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\t3.4 million additional shares ;;; 3.4_CD_11_54; million_CD_12_58; additional_JJ_13_66; shares_NN_14_77\twill be offered in ;;; will_MD_15_84; be_VB_16_89; offered_VBN_17_92\tconcurrent international offerings ;;; concurrent_JJ_19_103; international_JJ_20_114; offerings_NN_21_128\t1.00000\tNone\tNone\n1\t\tnumber(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\t3.4 million additional shares ;;; 3.4_CD_11_54; million_CD_12_58; additional_JJ_13_66; shares_NN_14_77\twill be offered in ;;; will_MD_3_20; be_VB_4_25; offered_VBN_5_28\tthe U.S. ;;; the_DT_7_39; U.S._NNP_8_43\t1.00000\tNone\tNone\n0\t\tnumber(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tFive million shares ;;; Five_CD_0_0; million_CD_1_5; shares_NN_2_13\twill be offered in ;;; will_MD_15_84; be_VB_16_89; offered_VBN_17_92\tconcurrent international offerings ;;; concurrent_JJ_19_103; international_JJ_20_114; offerings_NN_21_128\t1.00000\tNone\tNone\n1\t\tnumber(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tFive million shares ;;; Five_CD_0_0; million_CD_1_5; shares_NN_2_13\twill be offered in ;;; will_MD_3_20; be_VB_4_25; offered_VBN_5_28\tthe U.S. ;;; the_DT_7_39; U.S._NNP_8_43\t1.00000\tNone\tNone\n0\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0192\tFlagellated sperm swim ;;; Flagellated_VBN_0_0; sperm_NN_1_12; swim_NN_2_18\tentering the archegonia in ;;; entering_VBG_11_61; the_DT_12_70; archegonia_NN_13_74\tresponse ;;; response_NN_15_88\t0.01920\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe archegonia ;;; the_DT_12_70; archegonia_NN_13_74\tbe entering in ;;; entering_VBG_11_61\tresponse ;;; response_NN_15_88\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tFlorio Fiorini ;;; Florio_NNP_0_0; Fiorini_NNP_1_7\tbe managing director of ;;; managing_VBG_3_17; director_NN_4_26\tGeneva-based Sasea ;;; Geneva-based_JJ_6_38; Sasea_NNP_7_51\t0.40310\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthe investors ;;; the_DT_10_64; investors_NN_11_68\twould pay ;;; would_MD_12_78; pay_VB_13_84\ta symbolic one lira ;;; a_DT_15_93; symbolic_JJ_16_95; one_CD_17_104; lira_NN_18_108\t0.14730\tNone\tFlorio Fiorini_said_0_1_9_9\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe investors ;;; the_DT_10_64; investors_NN_11_68\twould 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\tthe station ;;; the_DT_20_117; station_NN_21_121\t0.13490\tNone\tFlorio Fiorini_said_0_1_9_9\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0577\twe ;;; we_PRP_25_137\thave agreed to raise ;;; have_VBP_26_140; agreed_VBN_27_145; to_TO_28_152; raise_VB_29_155\tthe 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\t0.05770\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta symbolic one lira ;;; a_DT_15_93; symbolic_JJ_16_95; one_CD_17_104; lira_NN_18_108\twould be pay for ;;; would_MD_12_78; pay_VB_13_84\tthe station ;;; the_DT_20_117; station_NN_21_121\t0.01320\tNone\tFlorio Fiorini_said_0_1_9_9\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe sunflower hybrid zone ;;; the_DT_28_183; sunflower_NN_29_187; hybrid_NN_30_197; zone_NN_31_204\tdiscussed earlier is influenced by ;;; discussed_VBN_32_209; earlier_RB_33_219; is_VBZ_34_227; influenced_VBN_35_230\tat least 26 chromosome segments ;;; at_IN_37_244; least_JJ_38_247; 26_CD_39_253; chromosome_NN_40_256; segments_NN_41_267\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\thybrid sterility ;;; hybrid_JJ_3_14; sterility_NN_4_21\tpseudoobscura 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\tat least four loci ;;; at_IN_19_133; least_JJ_20_136; four_CD_21_142; loci_NN_22_147\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\thybrid sterility ;;; hybrid_JJ_3_14; sterility_NN_4_21\tpseudoobscura ;;; pseudoobscura_VBD_13_82\tresults ;;; results_NN_14_96\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tpostzygotic isolation ;;; postzygotic_JJ_25_158; isolation_NN_26_170\tbe hybrid sterility between ;;; hybrid_JJ_3_14; sterility_NN_4_21\ttwo 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\t0.04770\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tpostzygotic isolation ;;; postzygotic_JJ_25_158; isolation_NN_26_170\tbe hybrid sterility for ;;; hybrid_JJ_3_14; sterility_NN_4_21\texample ;;; example_NN_1_4\t0.04770\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tresults ;;; results_NN_14_96\tbe pseudoobscura among ;;; pseudoobscura_VBD_13_82\tat least four loci ;;; at_IN_19_133; least_JJ_20_136; four_CD_21_142; loci_NN_22_147\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tyou ;;; you_PRP_3_14\tlearned for ;;; learned_VBD_4_18\texample ;;; example_NN_1_4\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tyou ;;; you_PRP_3_14\tlearned earlier stimulate ;;; learned_VBD_4_18; earlier_RB_5_26; stimulate_VB_9_56\tthe release of saliva ;;; the_DT_10_66; release_NN_11_70; of_IN_12_78; saliva_NN_13_81\t0.37970\twhen_food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx_14_30\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthat nervous reflexes ;;; that_DT_6_34; nervous_JJ_7_39; reflexes_NN_8_47\tearlier stimulate ;;; earlier_RB_5_26; stimulate_VB_9_56\tthe release of saliva ;;; the_DT_10_66; release_NN_11_70; of_IN_12_78; saliva_NN_13_81\t0.14730\twhen_food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx_14_30\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\ta bolus of food ;;; a_DT_24_153; bolus_NN_25_155; of_IN_26_161; food_NN_27_164\treaches ;;; reaches_VBZ_28_169\tthe pharynx ;;; the_DT_29_177; pharynx_NN_30_181\t0.14430\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tfood ;;; food_NN_15_93\tenters ;;; enters_VBZ_16_98\tthe 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\t0.14430\twhen_a bolus of food reaches the pharynx_23_30\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHatch ;;; Hatch_NNP_6_38\tworked as ;;; worked_VBD_7_44\tan Attorney ;;; an_DT_9_54; Attorney_NNP_10_57\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHatch ;;; Hatch_NNP_6_38\tworked at ;;; worked_VBD_7_44\tlaw ;;; law_NN_12_69\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHatch ;;; Hatch_NNP_6_38\tworked for ;;; worked_VBD_7_44\tfourteen years ;;; fourteen_CD_1_4; years_NN_2_13\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=appear|arrive|begin|crash|die|follow|hold|land|live|locate|meet|open|play|preach|present|remain|say|settle|stay|work|write} >prep_at> {arg2}\t0.0083\tHatch ;;; Hatch_NNP_6_38\tworked in ;;; worked_VBD_7_44\tlaw ;;; law_NN_12_69\t0.00830\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\tthe 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\tis 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\tmost terrestrial animals ;;; most_JJ_1_4; terrestrial_JJ_2_9; animals_NN_3_21\t0.07240\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\t2 to 4 times BMR ;;; 2_CD_13_79; to_TO_14_81; 4_CD_15_84; times_NN_16_86; BMR_NNP_17_92\tbe the average daily rate of ;;; the_DT_5_31; average_JJ_6_35; daily_JJ_7_43; rate_NN_8_49\tenergy consumption ;;; energy_NN_10_57; consumption_NN_11_64\t0.04770\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tthe 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\tis ;;; is_VBZ_12_76\t2 to 4 times BMR ;;; 2_CD_13_79; to_TO_14_81; 4_CD_15_84; times_NN_16_86; BMR_NNP_17_92\t0.00840\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33\tposted 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\tthe nine months ;;; the_DT_1_4; nine_CD_2_8; months_NN_3_13\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33\tposted 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\ta 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33\tposted ;;; posted_VBD_8_41\ta 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=announce|appear|arrive|begin|believe|close|come|commence|convene|die|end|explode|fall|hold|land|launch|live|locate|meet|open|pass|post|report|resign|say|sign|start|strike|surrender|write} >prep_on> {arg2}\t0.0371\tthe mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33\tposted 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\ta 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165\t0.03710\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55\tbe posted for ;;; posted_VBD_8_41\tthe nine months ;;; the_DT_1_4; nine_CD_2_8; months_NN_3_13\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55\tbe posted on ;;; posted_VBD_8_41\ta 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\towners ;;; owners_NN_2_10\tshould return ;;; should_MD_3_17; return_VB_4_24\tthe cars ;;; the_DT_5_31; cars_NN_6_35\t0.14730\tNone\tFord_said_0_0_1_1\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\towners ;;; owners_NN_2_10\tshould return the cars to ;;; should_MD_3_17; return_VB_4_24; the_DT_5_31; cars_NN_6_35\tdealers ;;; dealers_NN_8_43\t0.13490\tNone\tFord_said_0_0_1_1\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tthe cars ;;; the_DT_5_31; cars_NN_6_35\tshould be return to ;;; should_MD_3_17; return_VB_4_24\tdealers ;;; dealers_NN_8_43\t0.01320\tNone\tFord_said_0_0_1_1\n0\t\tnsubj(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)\tTemplate\t{rel} of\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.006\tFord ;;; Ford_NNP_0_0\tsaid of ;;; said_VBD_1_5\towners ;;; owners_NN_2_10\t0.00600\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tFunctional brain imaging ;;; Functional_JJ_0_0; brain_NN_1_11; imaging_NN_2_17\thas been applied to ;;; has_VBZ_3_25; been_VBN_4_29; applied_VBN_5_34\tthe study of human cognition ;;; the_DT_7_45; study_NN_8_49; of_IN_9_55; human_JJ_10_58; cognition_NN_11_64\t0.04440\tNone\tNone\n0\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tconsciousness ;;; consciousness_NN_13_76\tbe the study of ;;; the_DT_7_45; study_NN_8_49\thuman cognition ;;; human_JJ_10_58; cognition_NN_11_64\t0.00660\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tsmall dinosaurs ;;; small_JJ_36_211; dinosaurs_NN_37_217\tmay have had ;;; may_MD_38_227; have_VB_39_231; had_VBD_40_236\tdifficulty ;;; difficulty_NN_41_240\t0.37970\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tpaleontologists ;;; paleontologists_NN_2_14\tFurthermore have found ;;; Furthermore_RB_0_0; have_VBP_3_30; found_VBN_4_35\tfossils of dinosaurs ;;; fossils_NN_5_41; of_IN_6_49; dinosaurs_NN_7_52\t0.05770\talthough_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\tNone\n1\t\tadvmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tmilder 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\tbe the climate in ;;; the_DT_16_107; climate_NN_17_111\tthese areas ;;; these_DT_19_122; areas_NN_20_128\t0.04770\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tit ;;; it_PRP_31_187\twas enough ;;; was_VBD_32_190; enough_RB_34_199\tcool ;;; cool_JJ_33_194\t0.02160\tNone\tNone\n1\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tthe climate ;;; the_DT_16_107; climate_NN_17_111\twas ;;; was_VBD_21_134\tmilder 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\t0.02160\tNone\tNone\n0\t\tadvmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tit ;;; it_PRP_27_173\tis ;;; is_VBZ_28_176\ttoday ;;; today_NN_29_179\t0.00840\tNone\tNone\n0\t\tadvmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\ta high body temperature ;;; a_DT_43_263; high_JJ_44_265; body_NN_45_270; temperature_NN_46_275\tbe maintaining through ;;; maintaining_VBG_42_251\tectothermy ;;; ectothermy_NN_48_295\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tG. Vogel and C. Holden ;;; G._NNP_0_0; Vogel_NNP_1_3; and_CC_2_9; C._NNP_3_13; Holden_NNP_4_16\tleaps forward with ;;; leaps_VBZ_7_31; forward_RB_8_37\tnew stem cell advances ;;; new_JJ_10_50; stem_NN_11_54; cell_NN_12_59; advances_NN_13_64\t0.24440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tGDP ;;; GDP_NNP_0_0\tis the total value of ;;; is_VBZ_1_4; the_DT_2_7; total_JJ_3_11; value_NN_4_17\ta 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\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tGDP ;;; GDP_NNP_0_0\tis ;;; is_VBZ_1_4\tthe 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\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\ta Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39\treleased in ;;; released_VBD_11_59\tJanuary 2002 ;;; January_NNP_13_71; 2002_CD_14_79\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\ta Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39\treleased on ;;; released_VBD_11_59\tColumbia Records ;;; Columbia_NNP_16_87; Records_NNP_17_96\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\tGreatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9\tis 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\tWill Smith ;;; Will_NNP_9_48; Smith_NNP_10_53\t0.07240\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\tGreatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9\tis a Best of ;;; is_VBZ_2_14; a_DT_3_17; Best_NNP_4_19\tcompilation album ;;; compilation_NN_6_27; album_NN_7_39\t0.07240\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tGreatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9\tis ;;; is_VBZ_2_14\ta Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\ta Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39\treleased ;;; released_VBD_11_59\tJanuary 2002 ;;; January_NNP_13_71; 2002_CD_14_79\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} in\t{arg1} <nsubj< {rel:postag=VBD:regex=announce|establish|form|hold|locate|pass|publish|release} >prep_on> {arg2}\t0.0058\ta Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39\tbe released in ;;; released_VBD_11_59\tColumbia Records ;;; Columbia_NNP_16_87; Records_NNP_17_96\t0.00580\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tGuillermo Billinghurst ;;; Guillermo_NNP_0_0; Billinghurst_NNP_1_10\twas overthrown in ;;; was_VBD_2_23; overthrown_VBN_3_27\ta 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\t1.00000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tGuillermo Billinghurst ;;; Guillermo_NNP_0_0; Billinghurst_NNP_1_10\twas overthrown on ;;; was_VBD_2_23; overthrown_VBN_3_27\tFebruary 4 , 1914 ;;; February_NNP_5_41; 4_CD_6_50; ,_,_7_52; 1914_CD_8_54\t1.00000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta military coup ;;; a_DT_11_64; military_JJ_12_66; coup_NN_13_75\tbe headed by ;;; headed_VBN_14_80\tcolonel 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\t0.11100\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tit ;;; it_PRP_21_121\twould fill ;;; would_MD_22_124; fill_VB_23_130\ta gap ;;; a_DT_24_135; gap_NN_25_137\t0.14730\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tit ;;; it_PRP_12_61\tis particularly interested in ;;; is_VBZ_13_64; particularly_RB_14_67; interested_JJ_15_80\tTesoro 's refinery ;;; Tesoro_NNP_17_94; 's_POS_18_101; refinery_NN_19_104\t0.04780\tbecause_it would fill a gap in its business_20_28\tNone\n0\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tit ;;; it_PRP_12_61\tis particularly ;;; is_VBZ_13_64; particularly_RB_14_67\tinterested ;;; interested_JJ_15_80\t0.00840\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\tabout 800 retail gas stations ;;; about_IN_4_20; 800_CD_5_26; retail_JJ_6_30; gas_NN_7_37; stations_NN_8_41\tbe owns by ;;; owns_VBZ_3_15\tHarken ;;; Harken_NNP_0_0\t0.00670\tNone\tNone\n1\t\taux(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)\tTemplate\tbe {rel} of\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.1492\tRexford Tugwell ;;; Rexford_NNP_7_40; Tugwell_NNP_8_48\tbe planner of ;;; planner_NN_6_32\tNew Deal brain trust ;;; New_NNP_2_11; Deal_NNP_3_15; brain_NN_4_20; trust_NN_5_26\t0.14920\tNone\tNone\n1\t\taux(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)\tTemplate\tbe {rel} of\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.1492\ttrust planner Rexford Tugwell ;;; trust_NN_5_26; planner_NN_6_32; Rexford_NNP_7_40; Tugwell_NNP_8_48\tbe brain of ;;; brain_NN_4_20\tNew Deal ;;; New_NNP_2_11; Deal_NNP_3_15\t0.14920\tNone\tNone\n1\t\taux(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)\tTemplate\tbe {rel} for\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0162\tRexford Tugwell ;;; Rexford_NNP_7_40; Tugwell_NNP_8_48\tbe planner for ;;; planner_NN_6_32\tNew Deal brain trust ;;; New_NNP_2_11; Deal_NNP_3_15; brain_NN_4_20; trust_NN_5_26\t0.01620\tNone\tNone\n0\t\taux(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)\tTemplate\tbe {rel} for\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0162\ttrust planner Rexford Tugwell ;;; trust_NN_5_26; planner_NN_6_32; Rexford_NNP_7_40; Tugwell_NNP_8_48\tbe brain for ;;; brain_NN_4_20\tNew Deal ;;; New_NNP_2_11; Deal_NNP_3_15\t0.01620\tNone\tNone\n1\t\taux(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|anticipate|appoint|approach|ask|believe|call|certify|charge|choose|command|commission|commit|compel|deem|design|destine|determine|direct|elect|encourage|entitle|establish|excite|expect|force|grant|instruct|invite|lead|make|mandate|motivate|need|nominate|oblige|order|permit|persuade|pick|plan|poise|prepare|project|prompt|recruit|request|require|say|schedule|select|send|set|sign|slate|summon|suppose|tell|think|use} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0104\the ;;; he_PRP_14_76\tcollaborate in ;;; collaborate_VB_25_126\tthe 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\t0.01040\tNone\tNone\n0\t\taux(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|anticipate|appoint|approach|ask|believe|call|certify|charge|choose|command|commission|commit|compel|deem|design|destine|determine|direct|elect|encourage|entitle|establish|excite|expect|force|grant|instruct|invite|lead|make|mandate|motivate|need|nominate|oblige|order|permit|persuade|pick|plan|poise|prepare|project|prompt|recruit|request|require|say|schedule|select|send|set|sign|slate|summon|suppose|tell|think|use} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0104\the ;;; he_PRP_14_76\tto move in ;;; to_TO_17_91; move_VB_18_94\t1944 ;;; 1944_CD_23_117\t0.01040\tNone\tNone\n1\t\taux(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|anticipate|appoint|approach|ask|believe|call|certify|charge|choose|command|commission|commit|compel|deem|design|destine|determine|direct|elect|encourage|entitle|establish|excite|expect|force|grant|instruct|invite|lead|make|mandate|motivate|need|nominate|oblige|order|permit|persuade|pick|plan|poise|prepare|project|prompt|recruit|request|require|say|schedule|select|send|set|sign|slate|summon|suppose|tell|think|use} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0104\the ;;; he_PRP_14_76\tto move to ;;; to_TO_17_91; move_VB_18_94\tPuerto Rico ;;; Puerto_NNP_20_102; Rico_NNP_21_109\t0.01040\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\talso scored ;;; also_RB_1_3; scored_VBD_2_8\tthe second and decisive try ;;; the_DT_3_15; second_JJ_4_19; and_CC_5_26; decisive_JJ_6_30; try_NN_7_39\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tTigers ;;; Tigers_NNP_11_64\tretained ;;; retained_VBD_12_71\tthe cup ;;; the_DT_13_80; cup_NN_14_84\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tbegan to practice law in ;;; began_VBD_1_3; to_TO_2_9; practice_VB_3_12; law_NN_4_21\tMontgomery ;;; Montgomery_NNP_6_28\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\tbegan to practice ;;; began_VBD_1_3; to_TO_2_9; practice_VB_3_12\tlaw ;;; law_NN_4_21\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tHe ;;; He_PRP_0_0\twas elected ;;; was_VBD_8_43; elected_VBN_9_47\ta 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\t0.05770\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tHe ;;; He_PRP_0_0\twas 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\t1826 ;;; 1826_CD_19_107\t0.04440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tHe ;;; He_PRP_0_0\twas 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\t1828 ;;; 1828_CD_23_128\t0.04440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tHe ;;; He_PRP_0_0\tto practice ;;; to_TO_2_9; practice_VB_3_12\tlaw ;;; law_NN_4_21\t0.01950\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|advise|agree|allow|appoint|arrive|ask|attempt|be|beat|begin|bring|call|challenge|choose|claim|come|command|compel|continue|convince|cross|cut|dare|decide|decline|defeat|depart|desire|determine|didn|direct|do|drop|elect|encourage|expect|fail|feel|flee|force|gather|get|go|happen|have|instruct|intend|interrupt|invite|leave|long|make|manage|mean|move|need|offer|open|opt|order|pause|permit|persuade|plan|pledge|pray|prepare|pretend|proceed|promise|pull|raise|receive|refuse|request|require|resign|resolve|return|rise|roll|seek|seem|send|set|shift|sit|snap|start|suspend|swivel|take|teach|tear|tell|threaten|tilt|try|turn|urge|use|volunteer|vote|vow|want|win|wish|work} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0181\tHe ;;; He_PRP_0_0\tto practice law in ;;; to_TO_2_9; practice_VB_3_12; law_NN_4_21\tMontgomery ;;; Montgomery_NNP_6_28\t0.01810\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tlaw ;;; law_NN_4_21\tto be practice in ;;; to_TO_2_9; practice_VB_3_12\tMontgomery ;;; Montgomery_NNP_6_28\t0.01320\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tcame in ;;; came_VBD_1_3\t1980 ;;; 1980_CD_5_21\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tcame to ;;; came_VBD_1_3\tTehran ;;; Tehran_NNP_3_11\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tHe ;;; He_PRP_0_0\tcontinued studying traditional arrangements under ;;; continued_VBD_7_30; studying_VBG_8_40; traditional_JJ_9_49; arrangements_NN_10_61\tMohammad 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\t0.03930\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\tHe ;;; He_PRP_0_0\tcontinued studying ;;; continued_VBD_7_30; studying_VBG_8_40\ttraditional arrangements ;;; traditional_JJ_9_49; arrangements_NN_10_61\t0.02920\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\ttraditional arrangements ;;; traditional_JJ_9_49; arrangements_NN_10_61\tcontinued studying under ;;; continued_VBD_7_30; studying_VBG_8_40\tMohammad 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\t0.00790\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} to\t{arg1} <prep_in< {rel:postag=VBD:regex=come|fall|go|lose|say} >nsubj> {arg2}\t0.0071\t1980 ;;; 1980_CD_5_21\tcame to ;;; came_VBD_1_3\tHe ;;; He_PRP_0_0\t0.00710\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\tcaptured ;;; captured_VBD_1_3\tthe Parthian capital ;;; the_DT_2_12; Parthian_JJ_3_16; capital_NN_4_25\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tdownriver ;;; downriver_NN_10_62\tbe sailing to ;;; sailing_VBG_9_54\tthe Persian Gulf ;;; the_DT_12_75; Persian_NNP_13_79; Gulf_NNP_14_87\t0.00790\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tcompleted 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\tan undisclosed fee ;;; an_DT_20_94; undisclosed_JJ_21_97; fee_NN_22_109\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tcompleted 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\ta two-year deal ;;; a_DT_15_72; two-year_JJ_16_74; deal_NN_17_83\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\tcompleted ;;; completed_VBD_1_3\this move ;;; his_PRP$_2_13; move_NN_3_17\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\this move ;;; his_PRP$_2_13; move_NN_3_17\tbe completed for ;;; completed_VBD_1_3\tan undisclosed fee ;;; an_DT_20_94; undisclosed_JJ_21_97; fee_NN_22_109\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\this move ;;; his_PRP$_2_13; move_NN_3_17\tbe completed on ;;; completed_VBD_1_3\ta two-year deal ;;; a_DT_15_72; two-year_JJ_16_74; deal_NN_17_83\t0.01550\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tHe ;;; He_PRP_0_0\tbe his move on ;;; his_PRP$_2_13; move_NN_3_17\t4 June 2008 ;;; 4_CD_10_55; June_NNP_11_57; 2008_CD_12_62\t0.01190\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tHe ;;; He_PRP_0_0\tbe his move to ;;; his_PRP$_2_13; move_NN_3_17\tPremier League side Fulham ;;; Premier_NNP_5_25; League_NNP_6_33; side_NN_7_40; Fulham_NNP_8_45\t0.01190\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tdied in ;;; died_VBD_1_3\tWashington ;;; Washington_NNP_3_11\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tdied on ;;; died_VBD_1_3\tApril 10 , 1907 ;;; April_NNP_7_31; 10_CD_8_37; ,_,_9_40; 1907_CD_10_42\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tHe ;;; He_PRP_0_0\twas interred in ;;; was_VBD_12_51; interred_VBN_13_55\tLakeside Cemetery ;;; Lakeside_NNP_15_67; Cemetery_NNP_16_76\t0.04440\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\tHe ;;; He_PRP_0_0\tdied ;;; died_VBD_1_3\tWashington ;;; Washington_NNP_3_11\t0.00790\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\talso met with ;;; also_RB_10_51; met_VBD_11_56\tLao and Vietnamese leaders ;;; Lao_NNP_13_65; and_CC_14_69; Vietnamese_JJ_15_73; leaders_NN_16_84\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tHe ;;; He_PRP_0_0\thas made ;;; has_VBZ_1_3; made_VBN_2_7\tfrequent trips ;;; frequent_JJ_3_12; trips_NN_4_21\t0.05770\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tHe ;;; He_PRP_0_0\tincreases the board to ;;; increases_VBZ_1_3; the_DT_2_13; board_NN_3_17\tseven ;;; seven_CD_5_26\t0.24440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tHe ;;; He_PRP_0_0\tincreases ;;; increases_VBZ_1_3\tthe board ;;; the_DT_2_13; board_NN_3_17\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tplayed eleven seasons as ;;; played_VBD_1_3; eleven_CD_2_10; seasons_NN_3_17\tan outfielder ;;; an_DT_8_42; outfielder_NN_9_45\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\tplayed eleven seasons in ;;; played_VBD_1_3; eleven_CD_2_10; seasons_NN_3_17\tthe majors ;;; the_DT_5_28; majors_NN_6_32\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\tplayed ;;; played_VBD_1_3\televen seasons ;;; eleven_CD_2_10; seasons_NN_3_17\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\televen seasons ;;; eleven_CD_2_10; seasons_NN_3_17\tbe played as ;;; played_VBD_1_3\tan outfielder ;;; an_DT_8_42; outfielder_NN_9_45\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\televen seasons ;;; eleven_CD_2_10; seasons_NN_3_17\tbe played in ;;; played_VBD_1_3\tthe majors ;;; the_DT_5_28; majors_NN_6_32\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tCleveland Indians ;;; Cleveland_NNP_18_100; Indians_NNP_19_110\tbe an outfielder for ;;; an_DT_8_42; outfielder_NN_9_45\tthe Milwaukee Braves ;;; the_DT_11_60; Milwaukee_NNP_12_64; Braves_NNP_13_74\t0.00660\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tHouston Astros ;;; Houston_NNP_15_83; Astros_NNP_16_91\tbe an outfielder for ;;; an_DT_8_42; outfielder_NN_9_45\tthe Milwaukee Braves ;;; the_DT_11_60; Milwaukee_NNP_12_64; Braves_NNP_13_74\t0.00660\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tWashington Senators ;;; Washington_NNP_21_120; Senators_NNP_22_131\tbe an outfielder for ;;; an_DT_8_42; outfielder_NN_9_45\tthe Milwaukee Braves ;;; the_DT_11_60; Milwaukee_NNP_12_64; Braves_NNP_13_74\t0.00660\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\treached ;;; reached_VBD_1_3\tthe third round ;;; the_DT_2_11; third_JJ_3_15; round_NN_4_21\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\the ;;; he_PRP_11_52\tlost to Thai ;;; lost_VBD_12_55; to_TO_13_60; Thai_VB_14_63\tParadorn Srichaphan ;;; Paradorn_NNP_15_68; Srichaphan_NNP_16_77\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\the ;;; he_PRP_11_52\tto Thai ;;; to_TO_13_60; Thai_VB_14_63\tParadorn Srichaphan ;;; Paradorn_NNP_15_68; Srichaphan_NNP_16_77\t0.01950\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tcountryman Tommy Robredo ;;; countryman_NN_19_104; Tommy_NNP_20_115; Robredo_NNP_21_121\tbe defeating in ;;; defeating_VBG_18_94\tthe 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\t0.00790\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tcountryman Tommy Robredo ;;; countryman_NN_19_104; Tommy_NNP_20_115; Robredo_NNP_21_121\tbe defeating in ;;; defeating_VBG_18_94\tthe second round ;;; the_DT_31_182; second_JJ_32_186; round_NN_33_193\t0.00790\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\treplaced Jonathan Groff in ;;; replaced_VBD_1_3; Jonathan_NNP_2_12; Groff_NNP_3_21\tthe 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\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHe ;;; He_PRP_0_0\treplaced Jonathan Groff in ;;; replaced_VBD_1_3; Jonathan_NNP_2_12; Groff_NNP_3_21\tthe 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\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHe ;;; He_PRP_0_0\treplaced ;;; replaced_VBD_1_3\tJonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tJonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21\tbe replaced in ;;; replaced_VBD_1_3\tthe 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\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tJonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21\tbe replaced in ;;; replaced_VBD_1_3\tthe 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\t0.01550\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_17_79\tappointed as ;;; appointed_VBD_18_82\tgovernors ;;; governors_NN_20_95\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tthe rare Japanese ;;; the_DT_37_189; rare_JJ_38_193; Japanese_NNP_39_198\twere his friends like ;;; were_VBD_26_127; his_PRP$_27_132; friends_NN_28_136\tMatsukata Masayoshi ;;; Matsukata_NNP_31_151; Masayoshi_NNP_32_161\t0.04770\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tHe ;;; He_PRP_0_0\tthen was ;;; then_RB_1_3; was_VBD_2_8\table ;;; able_JJ_3_12\t0.02160\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\this 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\twere ;;; were_VBD_36_184\tthe rare Japanese ;;; the_DT_37_189; rare_JJ_38_193; Japanese_NNP_39_198\t0.02160\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tmost of the people ;;; most_JJ_13_60; of_IN_14_65; the_DT_15_68; people_NN_16_72\twere ;;; were_VBD_21_105\tyoung men ;;; young_JJ_22_110; men_NN_23_116\t0.02160\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=JJ:regex=able|afraid|available|certain|crazy|desperate|due|eager|easy|european|favorite|favourite|foolish|free|good|keen|likely|necessary|proud|ready|reluctant|right|smart|stupid|subject|sufficient|sure|unable|unlikely|unwill|will|wrong} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0054\tHe ;;; He_PRP_0_0\tto appoint ;;; to_TO_4_17; appoint_VB_5_20\tall 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\t0.00540\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tHe ;;; He_PRP_0_0\tthreatens ;;; threatens_VBZ_1_3\tus ;;; us_PRP_2_13\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\the ;;; he_PRP_11_49\tthreatens ;;; threatens_VBZ_1_3\tus ;;; us_PRP_2_13\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\twe ;;; we_PRP_4_20\tthreatens ;;; threatens_VBZ_1_3\tus ;;; us_PRP_2_13\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tHe ;;; He_PRP_0_0\tdoes n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61\tthe religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88\t0.13490\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\the ;;; he_PRP_11_49\tdoes n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61\tthe religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88\t0.13490\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\twe ;;; we_PRP_4_20\tdoes n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61\tthe religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88\t0.13490\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tHe ;;; He_PRP_0_0\tare afraid of ;;; are_VBP_5_23; afraid_JJ_7_31\thim ;;; him_PRP_9_41\t0.04780\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\the ;;; he_PRP_11_49\tare afraid of ;;; are_VBP_5_23; afraid_JJ_7_31\thim ;;; him_PRP_9_41\t0.04780\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\twe ;;; we_PRP_4_20\tare afraid of ;;; are_VBP_5_23; afraid_JJ_7_31\thim ;;; him_PRP_9_41\t0.04780\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tHe ;;; He_PRP_0_0\twas a producer on ;;; was_VBD_1_3; a_DT_2_7; producer_NN_3_9\tseveral Australian television series ;;; several_JJ_5_21; Australian_JJ_6_29; television_NN_7_40; series_NN_8_51\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tHe ;;; He_PRP_0_0\twas ;;; was_VBD_1_3\ta producer ;;; a_DT_2_7; producer_NN_3_9\t0.02160\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tHe ;;; He_PRP_0_0\twas also featured in ;;; was_VBD_1_3; also_RB_2_7; featured_VBN_3_12\tcover articles ;;; cover_NN_5_24; articles_NN_6_30\t1.00000\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tHe ;;; He_PRP_0_0\twas 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\tthe B low family ;;; the_DT_4_22; B_NNP_5_26; low_JJ_6_28; family_NN_7_32\t1.00000\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tHe ;;; He_PRP_0_0\twas descended ;;; was_VBD_1_3; descended_VBN_2_7\tan old aristocratic family ;;; an_DT_9_41; old_JJ_10_44; aristocratic_JJ_11_48; family_NN_12_61\t0.01910\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VB}\t0.008\tHe ;;; He_PRP_0_0\twill remain ;;; will_MD_1_3; remain_VB_2_8\tchairman ;;; chairman_NN_3_15\t0.00800\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tHe ;;; He_PRP_0_0\twill succeed ;;; will_MD_1_3; succeed_VB_2_8\tArthur E. Himebaugh ;;; Arthur_NNP_3_16; E._NNP_4_23; Himebaugh_NNP_5_26\t0.14730\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tHe ;;; He_PRP_0_0\twill 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\tgeneral manager ;;; general_JJ_7_39; manager_NN_8_47\t0.13490\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tArthur E. Himebaugh ;;; Arthur_NNP_3_16; E._NNP_4_23; Himebaugh_NNP_5_26\twill be succeed as ;;; will_MD_1_3; succeed_VB_2_8\tgeneral manager ;;; general_JJ_7_39; manager_NN_8_47\t0.01320\tNone\tNone\n1\t\tposs(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBN} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0577\ttank-killer teams ;;; tank-killer_NN_13_79; teams_NN_14_91\tarmed to destroy ;;; armed_VBN_15_97; to_TO_22_152; destroy_VB_23_155\tthe attacking North Korean T ;;; the_DT_24_163; attacking_VBG_25_167; North_JJ_26_177; Korean_JJ_27_183; T_NNP_28_190\t0.05770\tNone\tNone\n1\t\tposs(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tHis regiments ;;; His_PRP$_0_0; regiments_NN_1_4\thad been decimated in ;;; had_VBD_2_14; been_VBN_3_18; decimated_VBN_4_23\tearlier fighting ;;; earlier_JJR_6_36; fighting_NN_7_44\t0.04440\tNone\tNone\n1\t\tposs(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\ttank-killer teams ;;; tank-killer_NN_13_79; teams_NN_14_91\tarmed with ;;; armed_VBN_15_97\tthe 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\t0.04440\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|achieve|announce|appear|arrive|attend|attract|be|begin|believe|belong|break|bring|certify|claim|come|complete|contract|create|cut|de|debut|decide|declare|develop|die|discover|display|do|dream|drop|earn|emigrate|emmigrate|endure|enjoy|enlist|enrol|enter|escape|establish|excel|exhibit|fail|fall|feel|fight|find|flee|follow|form|found|gain|get|give|go|graduate|grow|have|help|hinge|immigrate|inherit|join|know|launch|lead|learn|leave|listen|live|lose|love|major|make|marry|migrate|move|name|note|null|obtain|offer|open|pass|perform|pick|play|prefer|prove|publish|pursue|quit|read|realize|receive|release|relocate|remain|report|respond|return|reveal|rise|say|seek|serve|set|settle|show|spend|split|star|start|state|study|suffer|survive|take|teach|tell|train|travel|turn|use|visit|want|win|work|write} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0227\tDean ;;; Dean_NNP_10_59\tbe armed with ;;; armed_VBN_15_97\tthe 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\t0.02270\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_47\twas hit by ;;; was_VBD_11_50; hit_VBN_12_54\tTexas 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\t1.00000\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_47\twas hit on ;;; was_VBD_11_50; hit_VBN_12_54\tSeptember 1 ;;; September_NNP_7_33; 1_CD_8_43\t1.00000\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_47\twas hit on ;;; was_VBD_11_50; hit_VBN_12_54\tthe hand ;;; the_DT_14_61; hand_NN_15_65\t1.00000\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} of\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.1492\tC.J. Wilson ;;; C.J._NNP_20_95; Wilson_NNP_21_100\tbe pitcher of ;;; pitcher_NN_19_87\tTexas Rangers ;;; Texas_NNP_17_73; Rangers_NNP_18_79\t0.14920\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} for\t{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< {arg1:postag=NNP} >nn> {arg2:postag=NNP}\t0.0162\tC.J. Wilson ;;; C.J._NNP_20_95; Wilson_NNP_21_100\tbe pitcher for ;;; pitcher_NN_19_87\tTexas Rangers ;;; Texas_NNP_17_73; Rangers_NNP_18_79\t0.01620\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tHis suspicions ;;; His_PRP$_0_0; suspicions_NN_1_4\twere confirmed in ;;; were_VBD_2_15; confirmed_VBN_3_20\t1935 ;;; 1935_CD_5_33\t1.00000\tNone\tNone\n1\t\tposs(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe American scientist Wendell Stanley ;;; the_DT_7_43; American_JJ_8_47; scientist_NN_9_56; Wendell_NNP_10_66; Stanley_NNP_11_74\tcrystallized ;;; crystallized_VBD_12_82\tthe 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\t0.37970\tNone\tNone\n1\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tthe infectious particle ;;; the_DT_13_95; infectious_JJ_14_99; particle_NN_15_110\tbe now known as ;;; now_RB_17_121; known_VBN_18_125\ttobacco mosaic virus ;;; tobacco_NN_20_134; mosaic_NN_21_142; virus_NN_22_149\t0.11100\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_5_29\tthat contains at ;;; that_IN_4_24; contains_VBZ_6_32\tthe time of death ;;; the_DT_8_44; time_NN_9_48; of_IN_10_53; death_NN_11_56\t0.24440\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe 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\tHowever slowly decays into ;;; However_RB_0_0; slowly_RB_12_62; decays_VBZ_13_69\tanother element ;;; another_DT_15_81; element_NN_16_89\t0.24440\tNone\tNone\n0\t\tposs(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_17_94\tis not captured home to ;;; is_VBZ_18_97; not_RB_19_100; captured_VBN_20_104; home_NN_23_126\tthe plantation ;;; the_DT_25_134; plantation_NN_26_138\t1.00000\tNone\tNone\n1\t\tposs(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\this father ;;; his_PRP$_1_8; father_NN_2_12\tHowever betrays ;;; However_RB_0_0; betrays_VBZ_6_35\this whereabouts ;;; his_PRP$_7_43; whereabouts_NN_8_47\t0.14430\tNone\tNone\n0\t\tposs(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\the ;;; he_PRP_17_94\tis not captured ;;; is_VBZ_18_97; not_RB_19_100; captured_VBN_20_104\thome ;;; home_NN_23_126\t0.01910\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tgovernment ;;; government_NN_10_57\toperated Hutt Park Railway in ;;; operated_VBD_11_68; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87\tPetone ;;; Petone_NNP_16_98\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tPetone ;;; Petone_NNP_16_98\tbe 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\tthe 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\t0.40310\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tPetone ;;; Petone_NNP_16_98\tbe a suburb of ;;; a_DT_18_107; suburb_NN_19_109\tthe city of Lower Hutt ;;; the_DT_21_119; city_NN_22_123; of_IN_23_128; Lower_NNP_24_131; Hutt_NNP_25_137\t0.40310\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tgovernment ;;; government_NN_10_57\toperated ;;; operated_VBD_11_68\tHutt Park Railway ;;; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=abbreviation|acronym|airline|airport|align|alternative|archipelago|area|arm|author|base|birth|birthplace|bishop|book|borough|branch|brother|campaign|capital|chairman|child|citizen|city|clone|combination|community|comprise|country|county|courtesy|creator|dance|daughter|defeat|department|descendant|dialect|director|disciple|district|division|editor|environment|export|extension|father|festival|flavor|follower|form|founder|gateway|go|god|government|governor|group|head|headquarter|hill|holiday|home|image|implementation|industry|island|issue|king|lake|land|language|launch|leader|locate|majority|man|master|mayor|member|mine|minority|mother|mountain|move|museum|name|native|neighborhood|newspaper|officer|park|part|party|peak|people|play|plugin|port|portion|pray|present|president|problem|professor|program|province|queen|quote|rage|rank|read|region|release|religion|restaurant|retrograde|return|revelation|river|ruler|run|school|sect|section|servant|service|set|sign|slave|son|source|speak|star|state|station|story|style|subject|subset|subsidiary|suburb|support|symbol|talk|territory|threat|town|trademark|tribe|type|unit|university|use|version|village|volcano|vote|wife|word|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0961\tWellington ;;; Wellington_NNP_28_149\tbe region of ;;; region_NN_29_160\tNew Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174\t0.09610\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} in\t{arg1:postag=NNP} <prep_of< {rel:postag=NN:regex=arrest|book|borough|city|community|country|county|district|headquarter|island|nation|neighborhood|province|region|release|state|suburb|town|village} >nn> {arg2:postag=NNP}\t0.0331\tNew Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174\tbe region in ;;; region_NN_29_160\tWellington ;;; Wellington_NNP_28_149\t0.03310\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} in\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=area|book|borough|city|country|county|district|festival|island|language|minority|neighborhood|province|region|release|river|state|suburb|town} >prep_of> {arg2:postag=NNP}\t0.021\tWellington ;;; Wellington_NNP_28_149\tbe region in ;;; region_NN_29_160\tNew Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174\t0.02100\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tHutt Park Railway ;;; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87\tbe operated in ;;; operated_VBD_11_68\tPetone ;;; Petone_NNP_16_98\t0.01550\tNone\tNone\n0\t\tmark(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tshe ;;; she_PRP_1_3\tbe confirmed by ;;; confirmed_VBN_8_42\tthe Senate ;;; the_DT_10_55; Senate_NNP_11_59\t1.00000\tNone\tNone\n0\t\tmark(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tshe ;;; she_PRP_1_3\tis nominated by ;;; is_VBZ_2_7; nominated_VBN_3_10\tPresident Bush ;;; President_NNP_5_23; Bush_NNP_6_33\t1.00000\tNone\tNone\n1\t\tmark(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tDr. Novello ;;; Dr._NNP_13_68; Novello_NNP_14_72\twould succeed ;;; would_MD_15_80; succeed_VB_16_86\tC. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105\t0.14730\tIf_she is nominated by President Bush and confirmed by the Senate_0_11\tNone\n1\t\tmark(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tC. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105\trattled conservatives alike with ;;; rattled_VBD_22_116; conservatives_NN_25_137; alike_RB_26_151\this outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176\t0.02000\tNone\tNone\n1\t\tmark(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tC. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105\trattled liberals alike with ;;; rattled_VBD_22_116; liberals_NN_23_124; alike_RB_26_151\this outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176\t0.02000\tNone\tNone\n1\t\tmark(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tliberals and conservatives ;;; liberals_NN_23_124; and_CC_24_133; conservatives_NN_25_137\tbe rattled alike with ;;; rattled_VBD_22_116; alike_RB_26_151\this outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176\t0.01550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tSivanath 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\tImmediately instituted ;;; Immediately_RB_0_0; instituted_VBD_11_73\tlegal action ;;; legal_JJ_12_84; action_NN_13_90\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31\twas introduced as ;;; was_VBD_7_36; introduced_VBN_8_40\tan ornamental waterfowl ;;; an_DT_13_69; ornamental_JJ_14_72; waterfowl_NN_15_83\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31\twas introduced in ;;; was_VBD_7_36; introduced_VBN_8_40\t1864 ;;; 1864_CD_1_3\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31\twas introduced to ;;; was_VBD_7_36; introduced_VBN_8_40\tNew Zealand ;;; New_NNP_10_54; Zealand_NNP_11_58\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tpopulations ;;; populations_NN_18_99\tare now common on ;;; are_VBP_19_111; now_RB_20_115; common_JJ_21_119\tlarger coastal or inland lakes ;;; larger_JJR_23_129; coastal_NN_24_136; or_CC_25_144; inland_NN_26_147; lakes_NN_27_154\t0.04780\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\the ;;; he_PRP_2_8\twas 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\t1972 ;;; 1972_CD_1_3\t0.95550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\the ;;; he_PRP_2_8\twas 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\tSir 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\t0.95550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} of\t{arg1} <nsubj< {rel:postag=NN:regex=agency|airline|airport|area|bishop|body|book|borough|capital|center|centre|city|community|country|county|currency|dance|dish|district|enclave|festival|figure|government|governor|hero|hub|ingredient|island|king|landmark|language|law|leader|member|mountain|museum|neighborhood|part|person|point|port|president|priest|professor|prophet|province|region|religion|sign|slave|sport|state|suburb|symbol|text|town|trademark|university} >prep_in> {arg2}\t0.0388\the ;;; he_PRP_2_8\twas 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\t1972 ;;; 1972_CD_1_3\t0.03880\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\the ;;; he_PRP_2_8\twas ;;; was_VBD_3_11\ta 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\t0.02160\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=author|bear|boom|business|capital|child|citizen|city|color|component|comprise|enemy|follower|form|group|implementation|industry|king|lamb|language|member|mine|minority|mother|name|neighborhood|newspaper|part|people|province|region|river|secretary|son|speak|square|story|style|trademark|way|will|word|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0086\ta Whore ;;; a_DT_32_166; Whore_JJ_33_168\twas a co-founder member in ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28\t1972 ;;; 1972_CD_1_3\t0.00860\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=author|bear|boom|business|capital|child|citizen|city|color|component|comprise|enemy|follower|form|group|implementation|industry|king|lamb|language|member|mine|minority|mother|name|neighborhood|newspaper|part|people|province|region|river|secretary|son|speak|square|story|style|trademark|way|will|word|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0086\ta Whore ;;; a_DT_32_166; Whore_JJ_33_168\twas a co-founder member with ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28\tSir 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\t0.00860\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tShe ;;; She_PRP_30_159\t's ;;; 's_VBZ_31_163\ta Whore ;;; a_DT_32_166; Whore_JJ_33_168\t0.00840\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tVasques ;;; Vasques_NNP_25_137\tbe playing in ;;; playing_VBG_24_129\tTis Pity ;;; Tis_NNP_28_150; Pity_NNP_29_154\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe band ;;; the_DT_2_8; band_NN_3_12\treached 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\t1997 ;;; 1997_CD_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe band ;;; the_DT_2_8; band_NN_3_12\treached ;;; reached_VBD_4_17\ta 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\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta 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\tbe reached in ;;; reached_VBD_4_17\t1997 ;;; 1997_CD_1_3\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tGreyston Bakery ;;; Greyston_NNP_3_10; Bakery_NNP_4_19\tmoved in ;;; moved_VBD_5_26\t2004 ;;; 2004_CD_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tGreyston Bakery ;;; Greyston_NNP_3_10; Bakery_NNP_4_19\tmoved to ;;; moved_VBD_5_26\ta 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta larger facility ;;; a_DT_7_35; larger_JJR_8_37; facility_NN_9_44\tbe designed by ;;; designed_VBN_10_53\tMaya Lin ;;; Maya_NNP_12_65; Lin_NNP_13_70\t0.11100\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tGruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19\texited 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\t2005 ;;; 2005_CD_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tGruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19\texited 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\tthe 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tGruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19\texited 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\tits women 's magazine portfolio ;;; its_PRP$_13_68; women_NN_14_72; 's_POS_15_78; magazine_NN_16_81; portfolio_NN_17_90\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tGruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19\texited ;;; exited_VBD_6_24\tthe U.S. magazine business ;;; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe U.S. magazine business ;;; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49\tbe exited in ;;; exited_VBD_6_24\t2005 ;;; 2005_CD_1_3\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tits women 's magazine portfolio ;;; its_PRP$_13_68; women_NN_14_72; 's_POS_15_78; magazine_NN_16_81; portfolio_NN_17_90\tbe selling to ;;; selling_VBG_12_60\tthe 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\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe airline ;;; the_DT_3_10; airline_NN_4_14\tlaunched 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\tShanghai ;;; Shanghai_NNP_13_80\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe airline ;;; the_DT_3_10; airline_NN_4_14\tlaunched 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\t2005 ;;; 2005_CD_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe airline ;;; the_DT_3_10; airline_NN_4_14\tlaunched 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\tGermany ;;; Germany_NNP_11_67\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe airline ;;; the_DT_3_10; airline_NN_4_14\tlaunched ;;; launched_VBD_5_22\tcodeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tcodeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41\tbe launched from ;;; launched_VBD_5_22\tShanghai ;;; Shanghai_NNP_13_80\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tcodeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41\tbe launched in ;;; launched_VBD_5_22\t2005 ;;; 2005_CD_1_3\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tcodeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41\tbe launched to ;;; launched_VBD_5_22\tGermany ;;; Germany_NNP_11_67\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_2_8\treturned once again in ;;; returned_VBD_3_11; once_RB_4_20; again_RB_5_25\t2008 ;;; 2008_CD_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_2_8\treturned 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\ta 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|advise|agree|allow|appoint|arrive|ask|attempt|be|beat|begin|bring|call|challenge|choose|claim|come|command|compel|continue|convince|cross|cut|dare|decide|decline|defeat|depart|desire|determine|didn|direct|do|drop|elect|encourage|expect|fail|feel|flee|force|gather|get|go|happen|have|instruct|intend|interrupt|invite|leave|long|make|manage|mean|move|need|offer|open|opt|order|pause|permit|persuade|plan|pledge|pray|prepare|pretend|proceed|promise|pull|raise|receive|refuse|request|require|resign|resolve|return|rise|roll|seek|seem|send|set|shift|sit|snap|start|suspend|swivel|take|teach|tear|tell|threaten|tilt|try|turn|urge|use|volunteer|vote|vow|want|win|wish|work} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0181\the ;;; he_PRP_2_8\tto perform as ;;; to_TO_6_31; perform_VB_7_34\ta 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\t0.01810\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tLenin ;;; Lenin_NNP_4_14\tdispatched Stalin in ;;; dispatched_VBD_5_20; Stalin_NNP_6_31\tMay 1918 ;;; May_NNP_1_3; 1918_CD_2_7\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tLenin ;;; Lenin_NNP_4_14\tdispatched Stalin to ;;; dispatched_VBD_5_20; Stalin_NNP_6_31\tthe city of Tsaritsyn ;;; the_DT_8_41; city_NN_9_45; of_IN_10_50; Tsaritsyn_NNP_11_53\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tLenin ;;; Lenin_NNP_4_14\tdispatched ;;; dispatched_VBD_5_20\tStalin ;;; Stalin_NNP_6_31\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tStalin ;;; Stalin_NNP_6_31\tbe dispatched in ;;; dispatched_VBD_5_20\tMay 1918 ;;; May_NNP_1_3; 1918_CD_2_7\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tStalin ;;; Stalin_NNP_6_31\tbe dispatched to ;;; dispatched_VBD_5_20\tthe city of Tsaritsyn ;;; the_DT_8_41; city_NN_9_45; of_IN_10_50; Tsaritsyn_NNP_11_53\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tLoral ;;; Loral_NNP_8_47\tclosed down 37.5 cents in ;;; closed_VBD_9_53; down_RB_14_73; 37.5_CD_15_78; cents_NN_16_83\tNew 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\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tKnight-Ridder ;;; Knight-Ridder_NNP_9_57\tclosed down 37.5 cents in ;;; closed_VBD_10_71; down_RB_15_91; 37.5_CD_16_96; cents_NN_17_101\tNew 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29\trose 0.1 % from ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46\tthe previous month ;;; the_DT_11_53; previous_JJ_12_57; month_NN_13_66\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29\trose 0.1 % in ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46\tSeptember ;;; September_NNP_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29\trose 0.1 % on ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46\ta seasonally adjusted basis ;;; a_DT_18_90; seasonally_RB_19_92; adjusted_JJ_20_103; basis_NN_21_112\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tthe number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29\trose 0.1 % to ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46\t2.5 million ;;; 2.5_CD_15_75; million_CD_16_79\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29\trose ;;; rose_VBD_7_37\t0.1 % ;;; 0.1_CD_8_42; %_NN_9_46\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\t0.1 % ;;; 0.1_CD_8_42; %_NN_9_46\tbe rose from ;;; rose_VBD_7_37\tthe previous month ;;; the_DT_11_53; previous_JJ_12_57; month_NN_13_66\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\t0.1 % ;;; 0.1_CD_8_42; %_NN_9_46\tbe rose in ;;; rose_VBD_7_37\tSeptember ;;; September_NNP_1_3\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\t0.1 % ;;; 0.1_CD_8_42; %_NN_9_46\tbe rose on ;;; rose_VBD_7_37\ta seasonally adjusted basis ;;; a_DT_18_90; seasonally_RB_19_92; adjusted_JJ_20_103; basis_NN_21_112\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\t0.1 % ;;; 0.1_CD_8_42; %_NN_9_46\tbe rose to ;;; rose_VBD_7_37\t2.5 million ;;; 2.5_CD_15_75; million_CD_16_79\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tBlue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29\tis aired twice in ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43\tSouth Africa ;;; South_NNP_1_3; Africa_NNP_2_9\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tBlue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29\tis aired twice on ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43\tGo ;;; Go_NNP_13_59\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tBlue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29\tis aired twice on ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43\tthe local satellite system ;;; the_DT_15_65; local_JJ_16_69; satellite_NN_17_75; system_NN_18_85\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tit ;;; it_PRP_5_25\twas incorrectly indicated in ;;; was_VBD_6_28; incorrectly_RB_7_32; indicated_VBN_8_44\tThursday 's edition ;;; Thursday_NNP_1_3; 's_POS_2_12; edition_NN_3_15\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tthe union ;;; the_DT_10_59; union_NN_11_63\thad paid ;;; had_VBD_12_69; paid_VBN_13_73\ta fee ;;; a_DT_14_78; fee_NN_15_80\t0.05770\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tthe union ;;; the_DT_10_59; union_NN_11_63\thad paid a fee to ;;; had_VBD_12_69; paid_VBN_13_73; a_DT_14_78; fee_NN_15_80\tformer House Speaker Jim Wright ;;; former_JJ_17_87; House_NNP_18_94; Speaker_NNP_19_100; Jim_NNP_20_108; Wright_NNP_21_112\t0.04440\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tshareholder 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\tcharged 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\ta 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\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tshareholder 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\tcharged 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\tbreach of fiduciary duty ;;; breach_NN_26_150; of_IN_27_157; fiduciary_JJ_28_160; duty_NN_29_170\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tshareholder 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\tcharged ;;; charged_VBD_17_93\tImperial ;;; Imperial_NNP_18_101\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta separate complaint ;;; a_DT_1_3; separate_JJ_2_5; complaint_NN_3_14\tbe also filed in ;;; also_RB_4_24; filed_VBN_5_29\tfederal court ;;; federal_JJ_7_38; court_NN_8_46\t0.11100\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\tshareholder 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\tsquandering ;;; squandering_VBG_31_179\tthe company 's assets ;;; the_DT_32_191; company_NN_33_195; 's_POS_34_203; assets_NN_35_206\t0.02920\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tImperial ;;; Imperial_NNP_18_101\tbe charged in ;;; charged_VBD_17_93\ta 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\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tImperial ;;; Imperial_NNP_18_101\tbe charged with ;;; charged_VBD_17_93\tbreach of fiduciary duty ;;; breach_NN_26_150; of_IN_27_157; fiduciary_JJ_28_160; duty_NN_29_170\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\ttheir kidneys ;;; their_PRP$_3_14; kidneys_NN_4_20\thave ;;; have_VBP_5_28\tsmall glomeruli or lack glomeruli ;;; small_JJ_6_33; glomeruli_NN_7_39; or_CC_8_49; lack_NN_9_52; glomeruli_JJ_10_57\t0.04160\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\ttheir kidneys ;;; their_PRP$_3_14; kidneys_NN_4_20\thave 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\taddition ;;; addition_NN_1_3\t0.03070\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tresearchers ;;; researchers_NN_5_21\ttransformed the differentiated cells in ;;; transformed_VBD_6_33; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64\tthese cases ;;; these_DT_2_7; cases_NN_3_13\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tresearchers ;;; researchers_NN_5_21\ttransformed the differentiated cells into ;;; transformed_VBD_6_33; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64\tES cells ;;; ES_NNP_11_75; cells_NN_12_78\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tresearchers ;;; researchers_NN_5_21\ttransformed ;;; transformed_VBD_6_33\tthe differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64\tbe transformed in ;;; transformed_VBD_6_33\tthese cases ;;; these_DT_2_7; cases_NN_3_13\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64\tbe transformed into ;;; transformed_VBD_6_33\tES cells ;;; ES_NNP_11_75; cells_NN_12_78\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51\tis 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\tbotulinum toxin ;;; botulinum_NN_12_73; toxin_NN_13_83\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51\tis 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\tanother example ;;; another_DT_1_3; example_NN_2_11\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51\tis caused vegetables by ;;; is_VBZ_9_60; caused_VBN_10_63; vegetables_NN_38_245\tbotulinum toxin ;;; botulinum_NN_12_73; toxin_NN_13_83\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51\tis caused vegetables in ;;; is_VBZ_9_60; caused_VBN_10_63; vegetables_NN_38_245\tanother example ;;; another_DT_1_3; example_NN_2_11\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tit ;;; it_PRP_25_168\tferments ;;; ferments_VBZ_26_171\tvarious foods ;;; various_JJ_27_180; foods_NN_28_188\t0.14430\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tthe potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51\tis caused ;;; is_VBZ_9_60; caused_VBN_10_63\tan 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\t0.01910\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tseafood ;;; seafood_NN_35_231\tbe various foods including ;;; various_JJ_27_180; foods_NN_28_188\tcanned meat ;;; canned_JJ_32_217; meat_NN_33_224\t0.00660\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthey ;;; they_PRP_23_131\tgain ;;; gain_VB_24_136\tmost of their heat ;;; most_JJ_25_141; of_IN_26_146; their_PRP$_27_149; heat_NN_28_155\t0.14730\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthey ;;; they_PRP_23_131\tgain 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\texternal sources ;;; external_JJ_30_165; sources_NN_31_174\t0.13490\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tamphibians , 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\tare mainly ectothermic in ;;; are_VBP_17_93; mainly_RB_18_97; ectothermic_JJ_19_104\tcontrast ;;; contrast_NN_1_3\t0.04780\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tmost of their heat ;;; most_JJ_25_141; of_IN_26_146; their_PRP$_27_149; heat_NN_28_155\tbe gain from ;;; gain_VB_24_136\texternal sources ;;; external_JJ_30_165; sources_NN_31_174\t0.01320\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe right hemisphere ;;; the_DT_3_14; right_JJ_4_18; hemisphere_NN_5_24\tappears in ;;; appears_VBZ_6_35\tcontrast ;;; contrast_NN_1_3\t0.24440\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\ta brief electrical pulse ;;; a_DT_3_21; brief_JJ_4_23; electrical_JJ_5_29; pulse_NN_6_40\tapplied in ;;; applied_VBD_7_46\telectroporation ;;; electroporation_NN_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\ta brief electrical pulse ;;; a_DT_3_21; brief_JJ_4_23; electrical_JJ_5_29; pulse_NN_6_40\tapplied to ;;; applied_VBD_7_46\ta solution containing cells ;;; a_DT_9_57; solution_NN_10_59; containing_VBG_11_68; cells_NN_12_79\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tMr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56\tsaid after ;;; said_VBD_11_63\tthe annual meeting ;;; the_DT_5_31; annual_JJ_6_35; meeting_NN_7_42\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tMr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56\tsaid in ;;; said_VBD_11_63\tresponse ;;; response_NN_1_3\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tthe company ;;; the_DT_12_68; company_NN_13_72\tis no longer looking for ;;; is_VBZ_14_80; no_RB_15_83; longer_RBR_16_86; looking_VBG_17_93\tan equity investor ;;; an_DT_19_105; equity_NN_20_108; investor_NN_21_115\t0.03930\tNone\tMr. Miller_said_9_10_11_11\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\tMr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56\tsaid ;;; said_VBD_11_63\tresponse ;;; response_NN_1_3\t0.00790\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} to\t{arg1} <prep_in< {rel:postag=VBD:regex=come|fall|go|lose|say} >nsubj> {arg2}\t0.0071\tresponse ;;; response_NN_1_3\tsaid to ;;; said_VBD_11_63\tMr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56\t0.00710\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tDNA analyses ;;; DNA_NNP_8_33; analyses_NN_9_37\thave shown in ;;; have_VBP_10_46; shown_VBN_11_51\tthe 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\t0.04440\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tadaptations ;;; adaptations_NN_7_37\thave 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\tthe context of these challenges ;;; the_DT_1_3; context_NN_2_7; of_IN_3_15; these_DT_4_18; challenges_NN_5_24\t0.04440\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tworkers ;;; workers_NN_5_21\twould receive ;;; would_MD_6_29; receive_VB_7_35\ta 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\t0.14730\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tworkers ;;; workers_NN_5_21\twould 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\tthe second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14\t0.13490\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tworkers ;;; workers_NN_5_21\twould 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\tthe second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14\t0.13490\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta 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\tbe followed by ;;; followed_VBN_19_78\ta 3 % increase ;;; a_DT_21_90; 3_CD_22_92; %_NN_23_94; increase_NN_24_96\t0.11100\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta 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\twould be receive in ;;; would_MD_6_29; receive_VB_7_35\tthe second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14\t0.01320\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tInterspec Inc. ;;; Interspec_NNP_0_0; Inc._NNP_1_10\treported ;;; reported_VBD_2_15\ta 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\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} in\t{arg1} >partmod> {rel:postag=VBN} >tmod> {arg2}\t0.0073\tthe fiscal third quarter ;;; the_DT_11_56; fiscal_JJ_12_60; third_JJ_13_67; quarter_NN_14_73\tbe ended in ;;; ended_VBN_15_81\tAug. 31 ;;; Aug._NNP_16_87; 31_CD_17_92\t0.00730\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tIt ;;; It_PRP_0_0\tis ;;; is_VBZ_1_3\ta 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\t0.00840\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tsuch features ;;; such_JJ_15_85; features_NN_16_90\treflect ;;; reflect_VBP_17_99\tevolutionary relationships ;;; evolutionary_JJ_18_107; relationships_NN_19_120\t0.04160\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tIt ;;; It_PRP_0_0\tis ;;; is_VBZ_1_3\timportant ;;; important_JJ_2_6\t0.00840\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tIt ;;; It_PRP_0_0\tis the presence of ;;; is_VBZ_1_3; the_DT_2_6; presence_NN_3_10\tinternal and external \" enemies ;;; internal_JJ_5_22; and_CC_6_31; external_JJ_7_35; \"_``_8_44; enemies_NN_9_46\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tMikhail Gorbachev 's Soviet Union ;;; Mikhail_NNP_22_112; Gorbachev_NNP_23_120; 's_POS_24_130; Soviet_NNP_25_133; Union_NNP_26_140\tcontinues to supply with ;;; continues_VBZ_27_146; to_TO_28_156; supply_VB_29_159\tbullets ;;; bullets_NN_31_171\t0.24440\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tIt ;;; It_PRP_0_0\tis ;;; is_VBZ_1_3\tthe 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\t0.00840\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|allow|answer|appear|ask|attempt|be|begin|choose|come|command|continue|decide|designate|desire|encourage|expect|fail|get|go|happen|have|hope|intend|invite|leaf|manage|meet|need|plan|prepare|promise|refuse|require|seem|set|start|stop|support|take|tell|try|turn|urge|use|vote|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0067\tMikhail Gorbachev 's Soviet Union ;;; Mikhail_NNP_22_112; Gorbachev_NNP_23_120; 's_POS_24_130; Soviet_NNP_25_133; Union_NNP_26_140\tto supply with ;;; to_TO_28_156; supply_VB_29_159\tbullets ;;; bullets_NN_31_171\t0.00670\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\tthe need ;;; the_DT_13_72; need_NN_14_76\tbe justifies by ;;; justifies_VBZ_12_62\tthe presence of internal and external \" enemies ;;; 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\t0.00670\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tIt ;;; It_PRP_0_0\ttakes encouragement from ;;; takes_VBZ_1_3; encouragement_NN_2_9\tone of the schoolboys ;;; one_CD_4_28; of_IN_5_32; the_DT_6_35; schoolboys_NN_7_39\t0.24440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\tIt ;;; It_PRP_0_0\ttakes encouragement to persuade ;;; takes_VBZ_1_3; encouragement_NN_2_9; to_TO_8_50; persuade_VB_9_53\tDavid ;;; David_NNP_10_62\t0.14430\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tIt ;;; It_PRP_0_0\ttakes ;;; takes_VBZ_1_3\tencouragement ;;; encouragement_NN_2_9\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tlife ;;; life_NN_13_83\tto be contemplate without ;;; to_TO_11_68; contemplate_VB_12_71\this wife ;;; his_PRP$_15_96; wife_NN_16_100\t0.01320\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tItaly 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22\trose from ;;; rose_VBD_4_27\t11.9 % ;;; 11.9_CD_15_72; %_NN_16_77\t0.73450\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tItaly 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22\trose in ;;; rose_VBD_4_27\tApril ;;; April_NNP_18_82\t0.73450\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tItaly 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22\trose in ;;; rose_VBD_4_27\tJuly ;;; July_NNP_13_62\t0.73450\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tItaly 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22\trose to ;;; rose_VBD_4_27\t12 % 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\t0.73450\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tthe provision ;;; the_DT_17_107; provision_NN_18_111\tbe initially drafted by ;;; initially_RB_19_121; drafted_VBN_20_131\tMr. Gray ;;; Mr._NNP_22_142; Gray_NNP_23_146\t0.11100\tNone\tNone\n0\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tJamaica , wary ;;; Jamaica_NNP_0_0; ,_,_1_8; wary_JJ_2_10\thas apparently instructed ;;; has_VBZ_10_57; apparently_RB_11_61; instructed_VBN_12_72\tits 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\t0.05770\tNone\tNone\n0\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta claim ;;; a_DT_47_264; claim_NN_48_266\tto be insert by ;;; to_TO_45_254; insert_VB_46_257\tthe Philippines ;;; the_DT_50_275; Philippines_NNP_51_279\t0.01320\tNone\tNone\n0\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tMr. Inouye ;;; Mr._NNP_31_189; Inouye_NNP_32_193\tis ;;; is_VBZ_43_246\table ;;; able_JJ_44_249\t0.00840\tNone\tNone\n0\t\tpunct(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)\tTemplate\tbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\tstrong ties ;;; strong_JJ_36_210; ties_NN_37_217\tbe has by ;;; has_VBZ_35_206\tMr. Inouye ;;; Mr._NNP_31_189; Inouye_NNP_32_193\t0.00670\tNone\tNone\n0\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=JJ:regex=able|afraid|available|certain|crazy|desperate|due|eager|easy|european|favorite|favourite|foolish|free|good|keen|likely|necessary|proud|ready|reluctant|right|smart|stupid|subject|sufficient|sure|unable|unlikely|unwill|will|wrong} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0054\tMr. Inouye ;;; Mr._NNP_31_189; Inouye_NNP_32_193\tto insert ;;; to_TO_45_254; insert_VB_46_257\ta claim ;;; a_DT_47_264; claim_NN_48_266\t0.00540\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tJi-an ;;; Ji-an_NNP_0_0\tis a township near ;;; is_VBZ_4_18; a_DT_5_21; township_NN_6_23\tHualien City ;;; Hualien_NNP_8_37; City_NNP_9_45\t0.95550\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tHualien City ;;; Hualien_NNP_8_37; City_NNP_9_45\tis a township near ;;; is_VBZ_4_18; a_DT_5_21; township_NN_6_23\tTaiwan ;;; Taiwan_NNP_11_52\t0.01090\tNone\tNone\n1\t\tpunct(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tJi-an ;;; Ji-an_NNP_0_0\tis ;;; is_VBZ_4_18\ta township ;;; a_DT_5_21; township_NN_6_23\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tJoseph Lombardo ;;; Joseph_NNP_0_0; Lombardo_NNP_1_7\twas ;;; was_VBD_18_97\tone of numerous defendants ;;; one_CD_19_101; of_IN_20_105; numerous_JJ_21_108; defendants_NN_22_117\t0.02160\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0095\tJoseph Lombardo ;;; Joseph_NNP_0_0; Lombardo_NNP_1_7\tbe numerous defendants in ;;; numerous_JJ_21_108; defendants_NN_22_117\tthe 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\t0.00950\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tJunge ;;; Junge_NNP_0_0\twas originally drafted by ;;; was_VBD_1_6; originally_RB_2_10; drafted_VBN_3_21\tthe Los Angeles Dodgers ;;; the_DT_5_32; Los_NNP_6_36; Angeles_NNP_7_40; Dodgers_NNP_8_48\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tJunge ;;; Junge_NNP_0_0\twas originally drafted in ;;; was_VBD_1_6; originally_RB_2_10; drafted_VBN_3_21\tthe 1999 amateur draft ;;; the_DT_10_59; 1999_CD_11_63; amateur_JJ_12_68; draft_NN_13_76\t1.00000\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tJunge ;;; Junge_NNP_0_0\twas then traded in to ;;; was_VBD_15_86; then_RB_16_90; traded_VBN_17_95; in_IN_22_131\tthe Philadelphia Phillies ;;; the_DT_19_105; Philadelphia_NNP_20_109; Phillies_NNP_21_122\t1.00000\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tLakitelek ;;; Lakitelek_NNP_0_0\tis a large village in ;;; is_VBZ_1_10; a_DT_2_13; large_JJ_3_15; village_NN_4_21\tBics-Kiskun county ;;; Bics-Kiskun_NNP_6_32; county_NN_7_44\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tLakitelek ;;; Lakitelek_NNP_0_0\tis a large village in ;;; is_VBZ_1_10; a_DT_2_13; large_JJ_3_15; village_NN_4_21\tthe 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\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=abbreviation|acronym|airline|airport|align|alternative|archipelago|area|arm|author|base|birth|birthplace|bishop|book|borough|branch|brother|campaign|capital|chairman|child|citizen|city|clone|combination|community|comprise|country|county|courtesy|creator|dance|daughter|defeat|department|descendant|dialect|director|disciple|district|division|editor|environment|export|extension|father|festival|flavor|follower|form|founder|gateway|go|god|government|governor|group|head|headquarter|hill|holiday|home|image|implementation|industry|island|issue|king|lake|land|language|launch|leader|locate|majority|man|master|mayor|member|mine|minority|mother|mountain|move|museum|name|native|neighborhood|newspaper|officer|park|part|party|peak|people|play|plugin|port|portion|pray|present|president|problem|professor|program|province|queen|quote|rage|rank|read|region|release|religion|restaurant|retrograde|return|revelation|river|ruler|run|school|sect|section|servant|service|set|sign|slave|son|source|speak|star|state|station|story|style|subject|subset|subsidiary|suburb|support|symbol|talk|territory|threat|town|trademark|tribe|type|unit|university|use|version|village|volcano|vote|wife|word|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0961\tSouthern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75\tbe region of ;;; region_NN_14_81\tsouthern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100\t0.09610\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} in\t{arg1:postag=NNP} <prep_of< {rel:postag=NN:regex=arrest|book|borough|city|community|country|county|district|headquarter|island|nation|neighborhood|province|region|release|state|suburb|town|village} >nn> {arg2:postag=NNP}\t0.0331\tsouthern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100\tbe region in ;;; region_NN_14_81\tSouthern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75\t0.03310\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} in\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=area|book|borough|city|country|county|district|festival|island|language|minority|neighborhood|province|region|release|river|state|suburb|town} >prep_of> {arg2:postag=NNP}\t0.021\tSouthern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75\tbe region in ;;; region_NN_14_81\tsouthern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100\t0.02100\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} of\t{arg1} <prep_in< {slot0:postag=NN:regex=aborigine|action|activity|arrival|attack|background|bank|basis|bird|business|buyer|capitalism|case|centre|century|change|child|church|city|client|club|community|company|concert|condition|conference|conflict|consumption|country|culture|customer|demand|design|destination|development|dictatorship|employer|event|experience|facility|factory|family|festival|flood|force|form|friend|girl|group|growth|history|holiday|home|hotel|impact|income|interest|investment|issue|job|lawyer|leader|library|life|lime|line|location|majority|manufacturer|market|member|militancy|mission|movement|museum|network|number|operation|operator|opportunity|organization|originate|partner|people|place|plant|player|power|practice|presence|problem|product|program|project|property|protection|protest|range|refugee|religion|revolution|rise|sale|scene|service|site|situation|soil|sport|store|student|study|temple|terrorism|time|town|tradition|train|travel|travels|trouble|use|user|village|violence|voter|website|woman|work|year} >prep_in> {rel:postag=NN:regex=capital|city|heart|member|part|region|state|suburb} >prep_of> {arg2}\t0.0095\tBics-Kiskun county ;;; Bics-Kiskun_NNP_6_32; county_NN_7_44\tbe 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\tsouthern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100\t0.00950\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tLakitelek ;;; Lakitelek_NNP_0_0\tis ;;; is_VBZ_1_10\ta large village ;;; a_DT_2_13; large_JJ_3_15; village_NN_4_21\t0.00840\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tlakes ;;; lakes_NN_30_164\tbe the filtering activities of ;;; the_DT_15_72; filtering_VBG_16_76; activities_NN_17_86\tfreshwater bivalves ;;; freshwater_NN_19_100; bivalves_NN_20_111\t0.04770\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tLand snails ;;; Land_NNP_0_0; snails_NN_1_5\tplay ;;; play_VBP_6_28\ta key role ;;; a_DT_7_33; key_JJ_8_35; role_NN_9_39\t0.04160\twhile_the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes_14_30\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tthe 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\tpurify ;;; purify_VBP_21_120\tthe waters of streams ;;; the_DT_22_127; waters_NN_23_131; of_IN_24_138; streams_NN_25_141\t0.04160\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tLand snails ;;; Land_NNP_0_0; snails_NN_1_5\tplay 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\texample ;;; example_NN_4_18\t0.03070\twhile_the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes_14_30\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\trivers ;;; rivers_NN_27_151\tbe the waters of ;;; the_DT_22_127; waters_NN_23_131\tstreams ;;; streams_NN_25_141\t0.00660\tNone\tNone\n0\t\tdep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\twe ;;; we_PRP_5_24\tLater 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\tfactors ;;; factors_NN_18_81\t0.14730\tNone\tNone\n1\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\tthe other organisms ;;; the_DT_20_92; other_JJ_21_96; organisms_NN_22_102\tare part of ;;; are_VBP_24_117; part_NN_25_121\tan individual 's environment ;;; an_DT_27_129; individual_NN_28_132; 's_POS_29_143; environment_NN_30_146\t0.03140\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tLenneth ;;; Lenneth_NNP_0_0\ttells him to forget about ;;; tells_VBZ_1_8; him_PRP_2_14; to_TO_3_18; forget_VB_4_21\ther and kisses ;;; her_PRP_6_34; and_CC_7_38; kisses_NN_8_42\t0.24440\tbefore_he departs but Lucian continues to brood upon Lenneth and Platina_10_21\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tLucian ;;; Lucian_NNP_14_75\tcontinues to ;;; continues_VBZ_15_82\tbrood ;;; brood_NN_17_95\t0.24440\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tLenneth ;;; Lenneth_NNP_0_0\ttells ;;; tells_VBZ_1_8\thim ;;; him_PRP_2_14\t0.14430\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|allow|answer|appear|ask|attempt|be|begin|choose|come|command|continue|decide|designate|desire|encourage|expect|fail|get|go|happen|have|hope|intend|invite|leaf|manage|meet|need|plan|prepare|promise|refuse|require|seem|set|start|stop|support|take|tell|try|turn|urge|use|vote|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0067\tLenneth ;;; Lenneth_NNP_0_0\tto forget about ;;; to_TO_3_18; forget_VB_4_21\ther and kisses ;;; her_PRP_6_34; and_CC_7_38; kisses_NN_8_42\t0.00670\tbefore_he departs but Lucian continues to brood upon Lenneth and Platina_10_21\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tLorenzo R. Stone House ;;; Lorenzo_NNP_0_0; R._NNP_1_8; Stone_NNP_2_11; House_NNP_3_17\tis a historic house at ;;; is_VBZ_4_23; a_DT_5_26; historic_JJ_6_28; house_NN_7_37\t218 South Street ;;; 218_CD_9_46; South_NNP_10_50; Street_NNP_11_56\t0.95550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tLorenzo R. Stone House ;;; Lorenzo_NNP_0_0; R._NNP_1_8; Stone_NNP_2_11; House_NNP_3_17\tis ;;; is_VBZ_4_23\ta historic house ;;; a_DT_5_26; historic_JJ_6_28; house_NN_7_37\t0.00840\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tLowery ;;; Lowery_NNP_0_0\twas elected in ;;; was_VBD_1_7; elected_VBN_2_11\ta 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\t1.00000\tNone\tNone\n1\t\tpartmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tMacromolecules ;;; Macromolecules_NN_0_0\tbe translocated through ;;; translocated_VBN_1_15\tthe phloem ;;; the_DT_3_36; phloem_NN_4_40\t0.11100\tNone\tNone\n1\t\tpartmod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tMacromolecules translocated through the phloem ;;; Macromolecules_NN_0_0; translocated_VBN_1_15; through_IN_2_28; the_DT_3_36; phloem_NN_4_40\tinclude ;;; include_VBP_5_47\tproteins 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\t0.04160\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tannuals ;;; annuals_NN_3_21\tas 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\tlegumes and cereal grains ;;; legumes_NN_13_73; and_CC_14_81; cereal_NN_15_85; grains_NN_16_92\t0.40310\tNone\tNone\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49\tcan be redeemed after ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144\tNov. 30 , 1992 ;;; Nov._NNP_40_213; 30_CD_41_218; ,_,_42_221; 1992_CD_43_223\t1.00000\tNone\tMark_said_0_0_8_8\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49\tcan be redeemed at ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144\tthe company 's option ;;; the_DT_30_156; company_NN_31_160; 's_POS_32_168; option_NN_33_171\t1.00000\tNone\tMark_said_0_0_8_8\n1\t\tpunct(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tthe 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49\tcan be redeemed under ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144\tcertain conditions ;;; certain_JJ_36_186; conditions_NN_37_194\t1.00000\tNone\tMark_said_0_0_8_8\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tNogai 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\tpillaged Bulgaria as ;;; pillaged_VBD_20_116; Bulgaria_NNP_21_125\ta Byzantine ally ;;; a_DT_23_137; Byzantine_JJ_24_139; ally_NN_25_149\t0.02000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tBulgaria ;;; Bulgaria_NNP_21_125\tbe pillaged as ;;; pillaged_VBD_20_116\ta Byzantine ally ;;; a_DT_23_137; Byzantine_JJ_24_139; ally_NN_25_149\t0.01550\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\this illegitimate daughter Euphrosyne ;;; his_PRP$_7_39; illegitimate_JJ_8_43; daughter_NN_9_56; Euphrosyne_NNP_10_65\tbe marrying to ;;; marrying_VBG_6_30\tNogai 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\t0.00790\tNone\tNone\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tit ;;; it_PRP_26_148\tcontinues to suffer from ;;; continues_VBZ_27_151; to_TO_28_161; suffer_VB_29_164\tthe 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\t0.24440\tNone\tMoody_said_0_0_2_2\n1\t\tpossessive(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tValley National , of Phoenix ;;; Valley_NNP_5_25; National_NNP_6_32; ,_,_7_41; of_IN_8_43; Phoenix_NNP_9_46\tto make ;;; to_TO_14_64; make_VB_15_67\tsubstantial further provisions ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92\t0.14730\tNone\tNone\n0\t\tpossessive(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\tit ;;; it_PRP_26_148\texpects to make ;;; expects_VBZ_4_17; to_TO_14_64; make_VB_15_67\tsubstantial further provisions ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92\t0.14430\tNone\tMoody_said_0_0_2_2\n1\t\tpossessive(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|allow|answer|appear|ask|attempt|be|begin|choose|come|command|continue|decide|designate|desire|encourage|expect|fail|get|go|happen|have|hope|intend|invite|leaf|manage|meet|need|plan|prepare|promise|refuse|require|seem|set|start|stop|support|take|tell|try|turn|urge|use|vote|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0067\tit ;;; it_PRP_26_148\tto suffer from ;;; to_TO_28_161; suffer_VB_29_164\tthe 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\t0.00670\tNone\tNone\n0\t\tpossessive(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VB:regex=annex|appoint|ask|assign|assist|authorize|be|become|bring|call|celebrate|constitute|contact|contain|convert|designate|do|establish|form|give|have|honor|inform|invite|keep|last|make|mean|name|nominate|notify|offer|overcome|pose|present|provide|recall|receive|remain|remove|represent|request|retain|reveal|see|select|serve|stay|take|teach|use} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0057\tValley National , of Phoenix ;;; Valley_NNP_5_25; National_NNP_6_32; ,_,_7_41; of_IN_8_43; Phoenix_NNP_9_46\tbe substantial further provisions against ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92\tits real-estate portfolio ;;; its_PRP$_20_111; real-estate_NN_21_115; portfolio_NN_22_127\t0.00570\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tMost coastal scyphozoans ;;; Most_JJ_0_0; coastal_JJ_1_5; scyphozoans_NN_2_13\tgo as ;;; go_VBP_3_25\tsmall polyps ;;; small_JJ_8_47; polyps_NN_9_53\t0.03070\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tMost coastal scyphozoans ;;; Most_JJ_0_0; coastal_JJ_1_5; scyphozoans_NN_2_13\tgo through ;;; go_VBP_3_25\ta stage ;;; a_DT_5_36; stage_NN_6_38\t0.03070\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tMr. Allday 's appointment ;;; Mr._NNP_0_0; Allday_NNP_1_4; 's_POS_2_11; appointment_NN_3_14\tis subject to ;;; is_VBZ_4_26; subject_JJ_5_29\tconfirmation ;;; confirmation_NN_7_40\t0.04780\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tMr. Allday 's appointment ;;; Mr._NNP_0_0; Allday_NNP_1_4; 's_POS_2_11; appointment_NN_3_14\tis ;;; is_VBZ_4_26\tsubject ;;; subject_JJ_5_29\t0.00840\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\the ;;; he_PRP_3_16\texpects 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\tthe Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107\t0.24440\tNone\tMr. Bailey_said_0_1_2_2\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBZ} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1443\the ;;; he_PRP_3_16\texpects to name ;;; expects_VBZ_4_19; to_TO_5_27; name_VB_6_30\ta 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\t0.14430\tNone\tMr. Bailey_said_0_1_2_2\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta 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\tto be name following ;;; to_TO_5_27; name_VB_6_30\tthe Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107\t0.01320\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBZ:regex=agree|allow|answer|appear|ask|attempt|be|begin|choose|come|command|continue|decide|designate|desire|encourage|expect|fail|get|go|happen|have|hope|intend|invite|leaf|manage|meet|need|plan|prepare|promise|refuse|require|seem|set|start|stop|support|take|tell|try|turn|urge|use|vote|want|wish} >xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0067\the ;;; he_PRP_3_16\tto 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\tthe Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107\t0.00670\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_9_54\tis prohibited as ;;; is_VBZ_10_57; prohibited_VBN_11_60\tNavigation Mixte chairman ;;; Navigation_NNP_5_26; Mixte_NNP_6_37; chairman_NN_7_43\t1.00000\tNone\tMr. Fournier_said_0_1_2_2\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_9_54\tis prohibited by ;;; is_VBZ_10_57; prohibited_VBN_11_60\ttakeover regulations ;;; takeover_NN_13_74; regulations_NN_14_83\t1.00000\tNone\tMr. Fournier_said_0_1_2_2\n0\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tConn ;;; Conn_NNP_10_59\tacquired 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\tan $ 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\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tNewport ;;; Newport_NNP_27_142\tbe a maker of ;;; a_DT_29_152; maker_NN_30_154\telectronic-measuring devices ;;; electronic-measuring_JJ_32_163; devices_NN_33_184\t0.40310\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tConn ;;; Conn_NNP_10_59\tacquired ;;; acquired_VBD_13_67\tmost of its stake ;;; most_JJ_14_76; of_IN_15_81; its_PRP$_16_84; stake_NN_17_88\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tmost of its stake ;;; most_JJ_14_76; of_IN_15_81; its_PRP$_16_84; stake_NN_17_88\tbe acquired in ;;; acquired_VBD_13_67\tan $ 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\t0.01550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tMrs. Coleman ;;; Mrs._NNP_0_0; Coleman_NNP_1_5\tis ;;; is_VBZ_11_53\tthe Maidenform strategist ;;; the_DT_12_56; Maidenform_NNP_13_60; strategist_NN_14_71\t0.00840\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tNero ;;; Nero_NNP_0_0\twas born ;;; was_VBD_1_5; born_VBN_2_9\tFrancesco Sparanero ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24\t0.01910\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=announce|appoint|bear|call|choose|declare|elect|inaugurate|install|make|name|notice|proclaim|reelect|refer|slate|swear|vote} >dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0124\tNero ;;; Nero_NNP_0_0\tbe Francesco Sparanero in ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24\tSan Prospero ;;; San_NNP_6_37; Prospero_NNP_7_41\t0.01240\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2}\t0.0083\tFrancesco Sparanero ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24\twas born in ;;; was_VBD_1_5; born_VBN_2_9\tSan Prospero ;;; San_NNP_6_37; Prospero_NNP_7_41\t0.00830\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0052\tNero ;;; Nero_NNP_0_0\tgrew up in ;;; grew_VBD_12_73; up_RP_13_78\tBedonia and in Milan ;;; Bedonia_NNP_15_84; and_CC_16_92; in_IN_17_96; Milan_NNP_18_99\t0.00520\tNone\tNone\n1\t\tmark(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\twe ;;; we_PRP_1_5\tmust choose ;;; must_MD_2_8; choose_VB_3_13\ta 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\t0.14730\tNone\tNone\n1\t\tmark(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tphylogeny ;;; phylogeny_NN_8_42\tbe inferring from ;;; inferring_VBG_7_32\tthese homologous characters ;;; these_DT_10_57; homologous_JJ_11_63; characters_NN_12_74\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tNorth Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6\tis a village in ;;; is_VBZ_2_16; a_DT_3_19; village_NN_4_21\tRutland ;;; Rutland_NNP_6_32\t0.95550\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tNorth Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6\tis a village in ;;; is_VBZ_2_16; a_DT_3_19; village_NN_4_21\tthe East Midlands of England ;;; the_DT_9_45; East_NNP_10_49; Midlands_NNP_11_54; of_IN_12_63; England_NNP_13_66\t0.95550\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tNorth Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6\tis ;;; is_VBZ_2_16\ta village ;;; a_DT_3_19; village_NN_4_21\t0.00840\tNone\tNone\n1\t\tadvmod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tgenes ;;; genes_NN_16_83\tare cloned in ;;; are_VBP_17_89; cloned_VBN_18_93\tplasmids ;;; plasmids_NN_20_103\t1.00000\tNone\twe_can see_12_12_13_14\n1\t\tadvmod(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tyou ;;; you_PRP_2_9\tNow 've learned about ;;; Now_RB_0_0; 've_VBP_3_13; learned_VBN_4_17\trestriction enzymes and DNA ligase ;;; restriction_NN_6_31; enzymes_NN_7_43; and_CC_8_51; DNA_NNP_9_55; ligase_NN_10_59\t0.04440\tNone\twe_can see_12_12_13_14\n0\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ttheir first live show ;;; their_PRP$_16_94; first_JJ_17_100; live_JJ_18_106; show_NN_19_111\tbe 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\tMay 2006 ;;; May_NNP_29_176; 2006_CD_30_180\t0.01550\tNone\tNone\n0\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ttheir first live show ;;; their_PRP$_16_94; first_JJ_17_100; live_JJ_18_106; show_NN_19_111\tbe 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\tnearly two decades ;;; nearly_RB_21_119; two_CD_22_126; decades_NN_23_130\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tPrince Kitashirakawa ;;; Prince_NNP_6_21; Kitashirakawa_NNP_7_28\tmarried 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\tApril 29 , 1909 ;;; April_NNP_1_3; 29_CD_2_9; ,_,_3_12; 1909_CD_4_14\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tPrincess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72\tbe the seventh daughter of ;;; the_DT_13_81; seventh_JJ_14_85; daughter_NN_15_93\tEmperor Meiji ;;; Emperor_NNP_17_105; Meiji_NNP_18_113\t0.40310\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tPrince Kitashirakawa ;;; Prince_NNP_6_21; Kitashirakawa_NNP_7_28\tmarried ;;; married_VBD_8_42\tPrincess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tPrincess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72\tbe married on ;;; married_VBD_8_42\tApril 29 , 1909 ;;; April_NNP_1_3; 29_CD_2_9; ,_,_3_12; 1909_CD_4_14\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_9_50\thad 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\tDecember 10 ;;; December_NNP_1_3; 10_CD_2_12\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_9_50\thad 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\tdefensive tackle Vonnie Holliday ;;; defensive_JJ_41_223; tackle_NN_42_233; Vonnie_NNP_43_240; Holliday_NNP_44_247\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_9_50\thad 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\ta five-yard loss ;;; a_DT_30_164; five-yard_JJ_31_166; loss_NN_32_176\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\the ;;; he_PRP_9_50\thad 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\tan 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\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\the ;;; he_PRP_9_50\thad 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\tquarterback Tom Brady ;;; quarterback_NN_26_138; Tom_NNP_27_150; Brady_NNP_28_154\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_9_50\thad ;;; had_VBD_10_53\tthree tackles ;;; three_CD_11_57; tackles_NN_12_63\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthree tackles ;;; three_CD_11_57; tackles_NN_12_63\tbe had on ;;; had_VBD_10_53\tDecember 10 ;;; December_NNP_1_3; 10_CD_2_12\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\the ;;; he_PRP_9_50\tbe three tackles including ;;; three_CD_11_57; tackles_NN_12_63\t1.5 sacks ;;; 1.5_CD_14_81; sacks_NN_15_85\t0.01190\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tan 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\tbe sharing with ;;; sharing_VBG_34_185\tdefensive tackle Vonnie Holliday ;;; defensive_JJ_41_223; tackle_NN_42_233; Vonnie_NNP_43_240; Holliday_NNP_44_247\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tquarterback Tom Brady ;;; quarterback_NN_26_138; Tom_NNP_27_150; Brady_NNP_28_154\tbe tackling for ;;; tackling_VBG_25_129\ta five-yard loss ;;; a_DT_30_164; five-yard_JJ_31_166; loss_NN_32_176\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_44\twas traded as ;;; was_VBD_11_47; traded_VBN_12_51\ta minor-leaguer ;;; a_DT_7_26; minor-leaguer_NN_8_28\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_44\twas traded by ;;; was_VBD_11_47; traded_VBN_12_51\tthe New York Yankees ;;; the_DT_14_61; New_NNP_15_65; York_NNP_16_69; Yankees_NN_17_74\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_44\twas traded for ;;; was_VBD_11_47; traded_VBN_12_51\tRickey 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\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_44\twas traded on ;;; was_VBD_11_47; traded_VBN_12_51\tDecember 5 , 1984 ;;; December_NNP_1_3; 5_CD_2_12; ,_,_3_14; 1984_CD_4_16\t1.00000\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_10_44\twas traded to ;;; was_VBD_11_47; traded_VBN_12_51\tthe Oakland Athletics ;;; the_DT_32_145; Oakland_NNP_33_149; Athletics_NNP_34_157\t1.00000\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\texchange ;;; exchange_NN_21_120\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\texchange ;;; exchange_NN_21_120\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\texchange ;;; exchange_NN_21_120\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.73450\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tthe 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\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tthe 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\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tHezbollah ;;; Hezbollah_NNP_5_18\ttransferred 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\tEhud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109\t0.37970\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=abbreviation|acronym|airline|airport|align|alternative|archipelago|area|arm|author|base|birth|birthplace|bishop|book|borough|branch|brother|campaign|capital|chairman|child|citizen|city|clone|combination|community|comprise|country|county|courtesy|creator|dance|daughter|defeat|department|descendant|dialect|director|disciple|district|division|editor|environment|export|extension|father|festival|flavor|follower|form|founder|gateway|go|god|government|governor|group|head|headquarter|hill|holiday|home|image|implementation|industry|island|issue|king|lake|land|language|launch|leader|locate|majority|man|master|mayor|member|mine|minority|mother|mountain|move|museum|name|native|neighborhood|newspaper|officer|park|part|party|peak|people|play|plugin|port|portion|pray|present|president|problem|professor|program|province|queen|quote|rage|rank|read|region|release|religion|restaurant|retrograde|return|revelation|river|ruler|run|school|sect|section|servant|service|set|sign|slave|son|source|speak|star|state|station|story|style|subject|subset|subsidiary|suburb|support|symbol|talk|territory|threat|town|trademark|tribe|type|unit|university|use|version|village|volcano|vote|wife|word|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0961\tHezbollah ;;; Hezbollah_NNP_28_161\tbe members during ;;; members_NN_29_171\tthe 2006 Lebanon War ;;; the_DT_34_205; 2006_CD_35_209; Lebanon_NNP_36_214; War_NNP_37_222\t0.09610\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tEhud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109\tbe 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\texchange ;;; exchange_NN_21_120\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tEhud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109\tbe 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe 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\tbe 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\texchange ;;; exchange_NN_21_120\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe 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\tbe 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe 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\tbe 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\texchange ;;; exchange_NN_21_120\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe 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\tbe 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\tJuly 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11\t0.01550\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=author|bear|boom|business|capital|child|citizen|city|color|component|comprise|enemy|follower|form|group|implementation|industry|king|lamb|language|member|mine|minority|mother|name|neighborhood|newspaper|part|people|province|region|river|secretary|son|speak|square|story|style|trademark|way|will|word|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0086\tother ;;; other_JJ_27_155\tbe Hezbollah members during ;;; Hezbollah_NNP_28_161; members_NN_29_171\tthe 2006 Lebanon War ;;; the_DT_34_205; 2006_CD_35_209; Lebanon_NNP_36_214; War_NNP_37_222\t0.00860\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tManager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144\tcalled on ;;; called_VBD_29_154\tNuxhall ;;; Nuxhall_NNP_31_164\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tManager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144\tcalled to enter ;;; called_VBD_29_154; to_TO_32_172; enter_VB_33_175\tthe game ;;; the_DT_34_181; game_NN_35_185\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tthe Reds ;;; the_DT_4_13; Reds_NN_5_17\ttrailing 13-0 in ;;; trailing_VBG_19_92; 13-0_CD_20_101\tthe ninth inning ;;; the_DT_22_109; ninth_JJ_23_113; inning_NN_24_119\t0.03930\twhen_Manager Bill McKechnie called on Nuxhall to enter the game_25_35\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tthe Reds ;;; the_DT_4_13; Reds_NN_5_17\twere 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\tCrosley Field ;;; Crosley_NNP_16_74; Field_NNP_17_82\t0.03930\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0393\tthe Reds ;;; the_DT_4_13; Reds_NN_5_17\twere 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\tJune 10 ;;; June_NNP_1_3; 10_CD_2_8\t0.03930\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\tthe Reds ;;; the_DT_4_13; Reds_NN_5_17\ttrailing ;;; trailing_VBG_19_92\t13-0 ;;; 13-0_CD_20_101\t0.02920\twhen_Manager Bill McKechnie called on Nuxhall to enter the game_25_35\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\tthe Reds ;;; the_DT_4_13; Reds_NN_5_17\twere playing ;;; were_VBD_6_22; playing_VBG_7_27\tthe 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\t0.02920\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tManager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144\tto enter ;;; to_TO_32_172; enter_VB_33_175\tthe game ;;; the_DT_34_181; game_NN_35_185\t0.01950\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\t13-0 ;;; 13-0_CD_20_101\tbe trailing in ;;; trailing_VBG_19_92\tthe ninth inning ;;; the_DT_22_109; ninth_JJ_23_113; inning_NN_24_119\t0.00790\twhen_Manager Bill McKechnie called on Nuxhall to enter the game_25_35\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe 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\twere playing at ;;; were_VBD_6_22; playing_VBG_7_27\tCrosley Field ;;; Crosley_NNP_16_74; Field_NNP_17_82\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe 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\twere playing on ;;; were_VBD_6_22; playing_VBG_7_27\tJune 10 ;;; June_NNP_1_3; 10_CD_2_8\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_6_23\tmarried 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\tMarianna ;;; Marianna_NNP_14_78\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_6_23\tmarried 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\tOctober 26 , 1997 ;;; October_NNP_1_3; 26_CD_2_11; ,_,_3_14; 1997_CD_4_16\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_6_23\tmarried ;;; married_VBD_7_26\tnatural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tnatural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67\tbe married in ;;; married_VBD_7_26\tMarianna ;;; Marianna_NNP_14_78\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tnatural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67\tbe married on ;;; married_VBD_7_26\tOctober 26 , 1997 ;;; October_NNP_1_3; 26_CD_2_11; ,_,_3_14; 1997_CD_4_16\t0.01550\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\the ;;; he_PRP_6_23\tmarried 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\tMarianna ;;; Marianna_NNP_14_78\t0.00790\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\twe ;;; we_PRP_5_18\tcan not fully explain ;;; can_MD_6_21; not_RB_7_25; fully_RB_8_29; explain_VB_9_35\ta higher level of order ;;; a_DT_10_43; higher_JJR_11_45; level_NN_12_52; of_IN_13_58; order_NN_14_61\t0.14730\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\twe ;;; we_PRP_5_18\tcan 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\tthe one hand ;;; the_DT_1_3; one_CD_2_7; hand_NN_3_11\t0.13490\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta higher level of order ;;; a_DT_10_43; higher_JJR_11_45; level_NN_12_52; of_IN_13_58; order_NN_14_61\tcan be not fully explain on ;;; can_MD_6_21; not_RB_7_25; fully_RB_8_29; explain_VB_9_35\tthe one hand ;;; the_DT_1_3; one_CD_2_7; hand_NN_3_11\t0.01320\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tit ;;; it_PRP_17_79\tbe breaking into ;;; breaking_VBG_16_70\tits parts ;;; its_PRP$_20_92; parts_NN_21_96\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tPharyngeal slits ;;; Pharyngeal_NNP_0_0; slits_NN_1_11\tfunction as ;;; function_VBP_2_17\tsuspension-feeding devices ;;; suspension-feeding_JJ_4_29; devices_NN_5_48\t0.03070\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tPlouzani ;;; Plouzani_NNP_0_0\tis a commune in ;;; is_VBZ_1_9; a_DT_2_12; commune_NN_3_14\tnorthwestern France ;;; northwestern_JJ_11_64; France_NNP_12_77\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tPlouzani ;;; Plouzani_NNP_0_0\tis a commune in ;;; is_VBZ_1_9; a_DT_2_12; commune_NN_3_14\tthe Finistre department ;;; the_DT_5_25; Finistre_NNP_6_29; department_NN_7_38\t0.95550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1:postag=NNP} <nn< {rel:postag=NN:regex=abbreviation|acronym|airline|airport|align|alternative|archipelago|area|arm|author|base|birth|birthplace|bishop|book|borough|branch|brother|campaign|capital|chairman|child|citizen|city|clone|combination|community|comprise|country|county|courtesy|creator|dance|daughter|defeat|department|descendant|dialect|director|disciple|district|division|editor|environment|export|extension|father|festival|flavor|follower|form|founder|gateway|go|god|government|governor|group|head|headquarter|hill|holiday|home|image|implementation|industry|island|issue|king|lake|land|language|launch|leader|locate|majority|man|master|mayor|member|mine|minority|mother|mountain|move|museum|name|native|neighborhood|newspaper|officer|park|part|party|peak|people|play|plugin|port|portion|pray|present|president|problem|professor|program|province|queen|quote|rage|rank|read|region|release|religion|restaurant|retrograde|return|revelation|river|ruler|run|school|sect|section|servant|service|set|sign|slave|son|source|speak|star|state|station|story|style|subject|subset|subsidiary|suburb|support|symbol|talk|territory|threat|town|trademark|tribe|type|unit|university|use|version|village|volcano|vote|wife|word|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP}\t0.0961\tFinistre ;;; Finistre_NNP_6_29\tbe department in ;;; department_NN_7_38\tBretagne ;;; Bretagne_NNP_9_52\t0.09610\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tPlouzani ;;; Plouzani_NNP_0_0\tis ;;; is_VBZ_1_9\ta commune ;;; a_DT_2_12; commune_NN_3_14\t0.00840\tNone\tNone\n0\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tPopulations of all species ;;; Populations_NN_0_0; of_IN_1_12; all_DT_2_15; species_NN_3_19\thave ;;; have_VBP_4_27\tthe potential ;;; the_DT_5_32; potential_JJ_6_36\t0.04160\tNone\tNone\n1\t\tpreconj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tM and N phenotypes ;;; M_NNP_3_14; and_CC_4_16; N_NNP_5_20; phenotypes_NN_6_22\tRather are exhibited by ;;; Rather_RB_0_0; are_VBP_7_33; exhibited_VBN_8_37\theterozygotes ;;; heterozygotes_NN_10_50\t1.00000\tsince_both molecules are present_12_16\tNone\n0\t\tcc(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tthe original paper ;;; the_DT_3_17; original_JJ_4_21; paper_NN_5_30\tbe analyze in ;;; analyze_VB_2_9\tInquiry ;;; Inquiry_NNP_7_39\t0.01320\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0416\tprimates ;;; primates_NN_5_28\thave 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\ta flat face ;;; a_DT_16_85; flat_JJ_17_87; face_NN_18_92\t0.04160\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0416\tprimates ;;; primates_NN_5_28\thave short jaws giving them ;;; have_VBP_6_37; short_JJ_11_60; jaws_NN_12_66; giving_VBG_14_73; them_PRP_15_80\ta flat face ;;; a_DT_16_85; flat_JJ_17_87; face_NN_18_92\t0.04160\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tprimates ;;; primates_NN_5_28\thave ;;; have_VBP_6_37\ta 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\t0.04160\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tResearchers ;;; Researchers_NN_0_0\tplaced 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\tthe ground ;;; the_DT_16_106; ground_NN_17_110\t0.73450\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tResearchers ;;; Researchers_NN_0_0\tplaced ;;; placed_VBD_6_45\tidentical samples of organic material ;;; identical_JJ_7_52; samples_NN_8_62; of_IN_9_70; organic_JJ_10_73; material_NN_11_81\t0.37970\tNone\tNone\n1\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tidentical samples of organic material ;;; identical_JJ_7_52; samples_NN_8_62; of_IN_9_70; organic_JJ_10_73; material_NN_11_81\tbe placed on ;;; placed_VBD_6_45\tthe ground ;;; the_DT_16_106; ground_NN_17_110\t0.01550\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tRevenue ;;; Revenue_NN_0_0\tdropped ;;; dropped_VBD_1_8\t5.4 % ;;; 5.4_CD_2_16; %_NN_3_20\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ta similar turnaround ;;; a_DT_30_172; similar_JJ_31_174; turnaround_NN_32_182\tto be guide at ;;; to_TO_28_163; guide_VB_29_166\tthe company 's latest acquisition ;;; the_DT_34_196; company_NN_35_200; 's_POS_36_208; latest_JJ_37_211; acquisition_NN_38_218\t0.01320\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tApplied Power Inc. ;;; Applied_NNP_9_52; Power_NNP_10_60; Inc._NNP_11_66\tbe transforming in ;;; transforming_VBG_8_39\tthe global market ;;; the_DT_20_117; global_JJ_21_121; market_NN_22_128\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tApplied Power Inc. ;;; Applied_NNP_9_52; Power_NNP_10_60; Inc._NNP_11_66\tbe transforming into ;;; transforming_VBG_8_39\ta feisty player ;;; a_DT_16_98; feisty_JJ_17_100; player_NN_18_107\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tthe root ;;; the_DT_8_52; root_NN_9_56\tdepends on ;;; depends_VBZ_10_61\tthe shoot ;;; the_DT_12_72; shoot_NN_13_76\t0.24440\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tRoot apical meristems ;;; Root_NNP_0_0; apical_JJ_1_5; meristems_NN_2_12\talso produce ;;; also_RB_3_22; produce_VBP_4_27\tauxin ;;; auxin_NN_5_35\t0.04160\talthough_the root depends on the shoot for much of its auxin_7_18\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tShe ;;; She_PRP_0_0\tspent some time managing ;;; spent_VBD_10_50; some_DT_11_56; time_NN_12_61; managing_VBG_13_66\ther son 's jazz group ;;; her_PRP$_14_75; son_NN_15_79; 's_POS_16_83; jazz_NN_17_86; group_NN_18_91\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tShe ;;; She_PRP_0_0\tspent ;;; spent_VBD_10_50\tsome time ;;; some_DT_11_56; time_NN_12_61\t0.37970\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tShe ;;; She_PRP_0_0\thas also served on ;;; has_VBZ_1_4; also_RB_2_8; served_VBN_3_13\tseveral task forces ;;; several_JJ_5_23; task_NN_6_31; forces_NN_7_36\t0.04440\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tShe ;;; She_PRP_0_0\thas practiced ;;; has_VBZ_1_4; practiced_VBN_2_8\tlaw ;;; law_NN_3_18\t0.05770\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBN}\t0.0509\tPLC ;;; PLC_NNP_13_64\thas practiced law with ;;; has_VBZ_1_4; practiced_VBN_2_8; law_NN_3_18\tBoult ;;; Boult_NNP_5_27\t0.05090\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tMcMillan and McMillan ;;; McMillan_NNP_33_167; and_CC_34_176; McMillan_NNP_35_180\tbe her husband in ;;; her_PRP$_30_152; husband_NN_31_156\tthe Clarksville firm ;;; the_DT_37_191; Clarksville_NNP_38_195; firm_NN_39_207\t0.01090\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tShe ;;; She_PRP_0_0\thas practiced ;;; has_VBZ_1_4; practiced_VBN_2_8\tlaw ;;; law_NN_3_18\t0.05770\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <appos< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=VBN}\t0.0509\tPLC ;;; PLC_NNP_13_61\thas practiced law with ;;; has_VBZ_1_4; practiced_VBN_2_8; law_NN_3_18\tBoult ;;; Boult_NNP_5_27\t0.05090\tNone\tNone\n0\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tMcMillan and McMillan ;;; McMillan_NNP_33_164; and_CC_34_173; McMillan_NNP_35_177\tbe her husband in ;;; her_PRP$_30_149; husband_NN_31_153\tthe Clarksville firm ;;; the_DT_37_188; Clarksville_NNP_38_192; firm_NN_39_204\t0.01090\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tWheeler Group ;;; Wheeler_NNP_2_9; Group_NNP_3_17\twas ;;; was_VBD_4_23\tprofitable ;;; profitable_JJ_5_27\t0.02160\tNone\tNone\n1\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tShe ;;; She_PRP_0_0\twas born in ;;; was_VBD_1_4; born_VBN_2_8\tBerkeley ;;; Berkeley_NNP_8_31\t1.00000\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0901\tBerkeley ;;; Berkeley_NNP_8_31\twas born in ;;; was_VBD_1_4; born_VBN_2_8\tCalifornia ;;; California_NNP_10_41\t0.09010\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} at\t{arg1} <nsubjpass< {rel:postag=VBN:regex=bear|defeat|enrol|hold|locate|purchase|see} >prep_in> {arg2}\t0.0089\tShe ;;; She_PRP_0_0\twas born at ;;; was_VBD_1_4; born_VBN_2_8\tBerkeley ;;; Berkeley_NNP_8_31\t0.00890\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel} on\t{arg1} <nsubjpass< {rel:postag=VBN:regex=base|bear|list|locate|make|release|situate|support} >prep_in> {arg2}\t0.005\tShe ;;; She_PRP_0_0\twas born on ;;; was_VBD_1_4; born_VBN_2_8\tBerkeley ;;; Berkeley_NNP_8_31\t0.00500\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tSinger Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13\twon 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\ta 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\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tSinger Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13\twon ;;; won_VBD_3_20\ta $ 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\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta $ 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\tbe won in ;;; won_VBD_3_20\ta 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\t0.01550\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tSinger Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13\tbe 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\tYoung ;;; Young_NNP_12_71\t0.01190\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD:regex=adopt|amend|arrive|attack|beat|bomb|call|complete|control|create|die|discover|enter|habe|have|hit|hold|introduce|invade|join|leave|lose|marry|occupy|pass|post|publish|release|rule|say|send|settle|speak|strike|take|tell|visit|win|write} >prep_in> {arg2}\t0.0079\tSinger Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13\twon 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\ta 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\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\ta popular advertising industry practice using \" sound-alike \" performers to tout products ;;; a_DT_20_112; popular_JJ_21_114; advertising_NN_22_122; industry_NN_23_134; practice_NN_24_143; using_VBG_26_155; \"_``_27_161; sound-alike_JJ_28_163; \"_''_29_175; performers_NN_30_177; to_TO_31_188; tout_VB_32_191; products_NN_33_196\tbe threatens by ;;; threatens_VBZ_19_102\ta case ;;; a_DT_16_90; case_NN_17_92\t0.00670\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.1473\tSocial Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16\twill rise 4.7 % boosting ;;; will_MD_3_25; rise_VB_4_30; 4.7_CD_5_35; %_NN_6_39; boosting_VBG_15_81\tthe average monthly benefit ;;; the_DT_16_90; average_JJ_17_94; monthly_JJ_18_102; benefit_NN_19_110\t0.14730\tNone\tthe Department of Health and Human Services_announced_27_33_34_34\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1473\tSocial Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16\twill 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\tpace ;;; pace_NN_11_59\t0.14730\tNone\tthe Department of Health and Human Services_announced_27_33_34_34\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tSocial Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16\twill rise ;;; will_MD_3_25; rise_VB_4_30\t4.7 % ;;; 4.7_CD_5_35; %_NN_6_39\t0.14730\tNone\tthe Department of Health and Human Services_announced_27_33_34_34\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tSocial Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16\twill 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\tinflation ;;; inflation_NN_13_69\t0.13490\tNone\tthe Department of Health and Human Services_announced_27_33_34_34\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tpace ;;; pace_NN_11_59\tto be keep with ;;; to_TO_9_51; keep_VB_10_54\tinflation ;;; inflation_NN_13_69\t0.01320\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tthe market 's strong reaction ;;; the_DT_4_23; market_NN_5_27; 's_POS_6_34; strong_JJ_7_37; reaction_NN_8_44\treflects ;;; reflects_VBZ_12_68\ta general uneasiness ;;; a_DT_13_77; general_JJ_14_79; uneasiness_NN_15_87\t0.14430\tNone\tSome dealers_said_0_1_2_2\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tSony Columbia Acquisition Corp. ;;; Sony_NNP_0_0; Columbia_NNP_1_5; Acquisition_NNP_2_14; Corp._NNP_3_26\tformed for ;;; formed_VBD_5_34\tthe Columbia deal ;;; the_DT_7_45; Columbia_NNP_8_49; deal_NN_9_58\t0.73450\tNone\ta spokesman_said_23_24_25_25\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tsongs ;;; songs_NN_12_55\tbe mating in ;;; mating_VBG_11_48\ttwo cryptic ;;; two_CD_14_64; cryptic_JJ_15_68\t0.00790\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tCuster County ;;; Custer_NNP_9_56; County_NNP_10_63\tbe thirty-one townships in ;;; thirty-one_JJ_6_32; townships_NN_7_43\tUnited States ;;; United_NNP_14_83; States_NNP_15_90\t0.01090\tNone\tNone\n0\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=CD:regex=one|two} >prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0095\tSpring Creek Township ;;; Spring_NNP_0_0; Creek_NNP_1_7; Township_NNP_2_13\tbe thirty-one townships in ;;; thirty-one_JJ_6_32; townships_NN_7_43\tCuster County ;;; Custer_NNP_9_56; County_NNP_10_63\t0.00950\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tSpring Creek Township ;;; Spring_NNP_0_0; Creek_NNP_1_7; Township_NNP_2_13\tis ;;; is_VBZ_3_22\tone of thirty-one townships ;;; one_CD_4_25; of_IN_5_29; thirty-one_JJ_6_32; townships_NN_7_43\t0.00840\tNone\tNone\n1\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tSuch fibers ;;; Such_JJ_0_0; fibers_NN_1_5\tare specialized in ;;; are_VBP_2_12; specialized_VBN_3_16\tways 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\t1.00000\tNone\tNone\n0\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tThey ;;; They_PRP_18_93\tcalled ;;; called_VBD_36_193\tmyoglobin ;;; myoglobin_NN_37_200\t0.37970\tNone\tNone\n0\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\ta 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\tcalled ;;; called_VBD_36_193\tmyoglobin ;;; myoglobin_NN_37_200\t0.37970\tNone\tNone\n1\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tThey ;;; They_PRP_18_93\thave ;;; have_VBP_19_98\tmany mitochondria ;;; many_JJ_20_103; mitochondria_NN_21_108\t0.04160\tNone\tNone\n0\t\tamod(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\ta 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\thave ;;; have_VBP_19_98\tmany mitochondria ;;; many_JJ_20_103; mitochondria_NN_21_108\t0.04160\tNone\tNone\n0\t\tamod(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=adopt|agree|announce|appoint|ask|attend|be|belong|bring|call|come|comment|declare|deliver|die|elect|end|enjoy|enter|experience|find|follow|give|go|grow|have|hold|join|lead|make|meet|note|offer|open|participate|pay|plan|present|provide|purge|receive|reconcile|refuse|represent|return|rise|say|serve|sit|speak|start|suffer|take|talk|tell|translate|try|use|visit|vote|welcome|work|write} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.006\tThey ;;; They_PRP_18_93\tbe a large amount of ;;; a_DT_29_149; large_JJ_30_151; amount_NN_31_157\tan oxygen-storing protein ;;; an_DT_33_167; oxygen-storing_JJ_34_170; protein_NN_35_185\t0.00600\tNone\tNone\n0\t\tdobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tus ;;; us_PRP_1_5\tbe Tell about ;;; Tell_VB_0_0\tspending restraint ;;; spending_NN_3_14; restraint_NN_4_23\t0.01320\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tTerry L. Haines ;;; Terry_NNP_0_0; L._NNP_1_6; Haines_NNP_2_9\twas elected to ;;; was_VBD_11_68; elected_VBN_12_72\tthe 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\t1.00000\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tTerry L. Haines ;;; Terry_NNP_0_0; L._NNP_1_6; Haines_NNP_2_9\tbe formerly general manager of ;;; formerly_RB_4_18; general_JJ_5_27; manager_NN_6_35\tCanadian operations ;;; Canadian_JJ_8_46; operations_NN_9_55\t0.40310\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe Breitling watchmaking company ;;; The_DT_0_0; Breitling_NNP_1_4; watchmaking_NN_2_14; company_NN_3_26\twas founded in ;;; was_VBD_4_34; founded_VBN_5_38\tSaint-Imier ;;; Saint-Imier_NNP_7_49\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tThe Cancer Genome Atlas ;;; The_DT_0_0; Cancer_NNP_1_4; Genome_NNP_2_11; Atlas_NNP_3_18\tis another example of ;;; is_VBZ_4_24; another_DT_5_27; example_NN_6_35\tsystems 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\t0.95550\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} <rcmod< {arg2}\t0.0103\ta large group of interacting genes ;;; a_DT_12_71; large_JJ_13_73; group_NN_14_79; of_IN_15_85; interacting_VBG_16_88; genes_NN_17_100\tare analyzed together in ;;; are_VBP_21_124; analyzed_VBN_22_128; together_RB_23_137\tsystems biology ;;; systems_NN_8_46; biology_NN_9_54\t0.01030\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <amod< {rel:postag=NN:regex=author|bear|boom|business|capital|child|citizen|city|color|component|comprise|enemy|follower|form|group|implementation|industry|king|lamb|language|member|mine|minority|mother|name|neighborhood|newspaper|part|people|province|region|river|secretary|son|speak|square|story|style|trademark|way|will|word|work} >{prep:regex=prep_(.*)}> {arg2}\t0.0086\tlarge ;;; large_JJ_13_73\tbe group of ;;; group_NN_14_79\tinteracting genes and gene products ;;; interacting_VBG_16_88; genes_NN_17_100; and_CC_18_106; gene_NN_19_110; products_NN_20_115\t0.00860\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tThe Cancer Genome Atlas ;;; The_DT_0_0; Cancer_NNP_1_4; Genome_NNP_2_11; Atlas_NNP_3_18\tis ;;; is_VBZ_4_24\tanother example of systems biology ;;; another_DT_5_27; example_NN_6_35; of_IN_7_43; systems_NN_8_46; biology_NN_9_54\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tThe Commodore 64 and 128 ;;; The_DT_0_0; Commodore_NNP_1_4; 64_CD_2_14; and_CC_3_17; 128_CD_4_21\tbe mainly used for ;;; mainly_RB_6_27; used_VBN_7_34\tchildren '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\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tThe Commodore 64 and 128 ;;; The_DT_0_0; Commodore_NNP_1_4; 64_CD_2_14; and_CC_3_17; 128_CD_4_21\thad surprised ;;; had_VBD_16_88; surprised_VBN_17_92\tmarket researchers ;;; market_NN_18_102; researchers_NN_19_109\t0.05770\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tother low-profit personal computers ;;; other_JJ_28_171; low-profit_JJ_29_177; personal_JJ_30_188; computers_NN_31_197\teven now operate ;;; even_RB_26_159; now_RB_32_207; operate_VBP_33_211\tseveral 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\t0.04160\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tSirsiDynix ;;; SirsiDynix_NNP_9_48\twas formed by ;;; was_VBD_10_59; formed_VBN_11_63\tthe 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\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tSirsiDynix ;;; SirsiDynix_NNP_9_48\twas formed in ;;; was_VBD_10_59; formed_VBN_11_63\tJune 2005 ;;; June_NNP_22_123; 2005_CD_23_128\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tSirsiDynix ;;; SirsiDynix_NNP_9_48\twas founded in ;;; was_VBD_3_22; founded_VBN_4_26\t1983 ;;; 1983_CD_6_37\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10\twas formed by ;;; was_VBD_10_59; formed_VBN_11_63\tthe 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\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10\twas formed in ;;; was_VBD_10_59; formed_VBN_11_63\tJune 2005 ;;; June_NNP_22_123; 2005_CD_23_128\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10\twas founded in ;;; was_VBD_3_22; founded_VBN_4_26\t1983 ;;; 1983_CD_6_37\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe Edward C. Peters House ;;; The_DT_0_0; Edward_NNP_1_4; C._NNP_2_11; Peters_NNP_3_14; House_NNP_4_21\tbe also known as ;;; also_RB_6_29; known_VBN_7_34\tIvy Hall ;;; Ivy_NNP_9_43; Hall_NNP_10_47\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tAtlanta ;;; Atlanta_NNP_19_85\tis 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\tGeorgia ;;; Georgia_NNP_21_94\t0.01090\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tan indoor arena ;;; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36\tbe located at ;;; located_VBN_8_42\tthe corner of Mount Royal ;;; the_DT_14_74; corner_NN_15_78; of_IN_16_85; Mount_NNP_17_88; Royal_NNP_18_94\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tan indoor arena ;;; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36\tbe located in ;;; located_VBN_8_42\tMontreal ;;; Montreal_NNP_10_53\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2}\t0.0901\tMontreal ;;; Montreal_NNP_10_53\tbe located in ;;; located_VBN_8_42\tCanada ;;; Canada_NNP_12_64\t0.09010\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2}\t0.0254\tThe Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16\twas an indoor arena at ;;; was_VBD_4_22; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36\tthe corner of Mount Royal ;;; the_DT_14_74; corner_NN_15_78; of_IN_16_85; Mount_NNP_17_88; Royal_NNP_18_94\t0.02540\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2}\t0.0254\tThe Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16\twas an indoor arena in ;;; was_VBD_4_22; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36\tMontreal ;;; Montreal_NNP_10_53\t0.02540\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tThe Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16\twas ;;; was_VBD_4_22\tan 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\t0.02160\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe 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\tis located at ;;; is_VBZ_6_35; located_VBN_7_38\t3501 State Street ;;; 3501_CD_9_49; State_NNP_10_54; Street_NNP_11_60\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe 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\tis located in ;;; is_VBZ_6_35; located_VBN_7_38\tthe Florence neighborhood ;;; the_DT_13_70; Florence_NNP_14_74; neighborhood_NN_15_83\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} in\t{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}\t0.036\tOmaha ;;; Omaha_NNP_21_116\tbe the north end in ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109\tNebraska ;;; Nebraska_NNP_23_124\t0.03600\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{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}\t0.0109\tOmaha ;;; Omaha_NNP_21_116\tbe the north end of ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109\tNebraska ;;; Nebraska_NNP_23_124\t0.01090\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >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}\t0.0057\tThe 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\tis located on ;;; is_VBZ_6_35; located_VBN_7_38\tthe north end of Omaha ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109; of_IN_20_113; Omaha_NNP_21_116\t0.00570\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tit ;;; it_PRP_10_67\tadded $ 121 million for ;;; added_VBD_11_70; $_$_12_76; 121_CD_13_78; million_CD_14_82\tlosses ;;; losses_NN_19_111\t0.73450\tNone\tThe Phoenix-based holding company_said_0_3_9_9\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tit ;;; it_PRP_10_67\tadded $ 121 million to ;;; added_VBD_11_70; $_$_12_76; 121_CD_13_78; million_CD_14_82\tits allowance ;;; its_PRP$_16_93; allowance_NN_17_97\t0.73450\tNone\tThe Phoenix-based holding company_said_0_3_9_9\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\thim ;;; him_PRP_14_70\tbe decapitated by ;;; decapitated_VBN_15_74\tthe Hyperforce ;;; the_DT_17_89; Hyperforce_NNP_18_93\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThe Skeleton King ;;; The_DT_0_0; Skeleton_NNP_1_4; King_NNP_2_13\tlater merged with ;;; later_RB_3_18; merged_VBD_4_24\tthe demon ;;; the_DT_6_36; demon_NN_7_40\t0.73450\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >tmod> {arg2}\t0.0151\tThe Skeleton King ;;; The_DT_0_0; Skeleton_NNP_1_4; King_NNP_2_13\tlater merged in ;;; later_RB_3_18; merged_VBD_4_24\tDark One ;;; Dark_NNP_8_46; One_CD_9_51\t0.01510\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta song ;;; a_DT_4_21; song_NN_5_23\tbe written by ;;; written_VBN_6_28\tthe Dave Matthews Band ;;; the_DT_8_39; Dave_NNP_9_43; Matthews_NNP_10_48; Band_NNP_11_57\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tThe announcement ;;; The_DT_0_0; announcement_NN_1_4\tfollows ;;; follows_VBZ_2_17\ta 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\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThe band ;;; The_DT_0_0; band_NN_1_4\tbegan recording demos for ;;; began_VBD_2_9; recording_VBG_3_15; demos_NN_4_25\ttheir next album ;;; their_PRP$_6_35; next_JJ_7_41; album_NN_8_46\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tThe band ;;; The_DT_0_0; band_NN_1_4\tbegan recording ;;; began_VBD_2_9; recording_VBG_3_15\tdemos ;;; demos_NN_4_25\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tdemos ;;; demos_NN_4_25\tbe recording for ;;; recording_VBG_3_15\ttheir next album ;;; their_PRP$_6_35; next_JJ_7_41; album_NN_8_46\t0.00790\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThe board ;;; The_DT_0_0; board_NN_1_4\texpanded to ;;; expanded_VBD_2_10\t17 seats ;;; 17_CD_4_22; seats_NN_5_25\t0.73450\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15\tis 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\tthe cuticle ;;; the_DT_9_50; cuticle_NN_10_54\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15\tis 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\tthe cuticle ;;; the_DT_9_50; cuticle_NN_10_54\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tThe body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15\tis completely covered ;;; is_VBZ_5_25; completely_RB_6_28; covered_VBN_7_39\tan 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\t0.01910\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThe car ;;; The_DT_0_0; car_NN_1_4\thas had two revisions since ;;; has_VBZ_2_8; had_VBD_3_12; two_CD_4_16; revisions_NN_5_20\tits inception ;;; its_PRP$_7_36; inception_NN_8_40\t0.73450\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tborrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95\tleft around from ;;; left_VBD_18_103; around_RB_19_108\tthe fourth generation ;;; the_DT_21_120; fourth_JJ_22_124; generation_NN_23_131\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tborrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95\tleft around in ;;; left_VBD_18_103; around_RB_19_108\t1997 ;;; 1997_CD_27_163\t0.73450\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tThe car ;;; The_DT_0_0; car_NN_1_4\thas had ;;; has_VBZ_2_8; had_VBD_3_12\ttwo revisions ;;; two_CD_4_16; revisions_NN_5_20\t0.37970\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ttwo revisions ;;; two_CD_4_16; revisions_NN_5_20\thas had since ;;; has_VBZ_2_8; had_VBD_3_12\tits inception ;;; its_PRP$_7_36; inception_NN_8_40\t0.01550\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >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}\t0.0105\tborrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95\tleft around ;;; left_VBD_18_103; around_RB_19_108\tThe car ;;; The_DT_0_0; car_NN_1_4\t0.01050\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.0416\tThe certificates ;;; The_DT_0_0; certificates_NN_1_4\thave 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\tmonthly prepayments ;;; monthly_JJ_12_72; prepayments_NN_13_80\t0.04160\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tThe certificates ;;; The_DT_0_0; certificates_NN_1_4\thave ;;; have_VBP_2_17\tan 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\t0.04160\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\t40F ;;; 40F_CD_10_56\tbe also known as ;;; also_RB_18_85; known_VBN_19_90\tCold Sunday ;;; Cold_JJ_21_99; Sunday_NNP_22_104\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe coldest temperature ;;; The_DT_0_0; coldest_JJ_1_4; temperature_NN_2_12\tbe ever recorded in ;;; ever_RB_3_24; recorded_VBN_4_29\tthe city ;;; the_DT_6_41; city_NN_7_45\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe companies ;;; The_DT_0_0; companies_NN_1_4\tare followed by ;;; are_VBP_2_14; followed_VBN_3_18\tat least three analysts ;;; at_IN_5_30; least_JJ_6_33; three_CD_7_39; analysts_NN_8_45\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|appoint|ask|bear|build|call|cast|choose|clear|confirm|consider|create|destine|determine|elect|empower|encourage|equip|establish|expect|favor|favour|force|hire|honor|inspire|invite|know|line|list|mean|name|need|nominate|obligate|oblige|offer|pay|permit|persuade|pick|please|poise|predict|prepare|prime|project|prove|require|say|schedule|select|send|set|show|sign|slate|suppose|tempt|think|threaten|tip|urge|use|warn} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0068\tthe restructuring ;;; the_DT_3_17; restructuring_NN_4_21\tto have ;;; to_TO_8_51; have_VB_9_54\tany impact , adverse ;;; any_DT_10_59; impact_NN_11_63; ,_,_12_70; adverse_JJ_13_72\t0.00680\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tThe continuing debate ;;; The_DT_0_0; continuing_VBG_1_4; debate_NN_2_15\texemplifies ;;; exemplifies_VBZ_7_48\tone 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\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tThe data ;;; The_DT_0_0; data_NN_1_4\tsupport ;;; support_VBP_2_9\tthe hypothesis ;;; the_DT_3_17; hypothesis_NN_4_21\t0.04160\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tthe soil ;;; the_DT_15_99; soil_NN_16_103\tbe affecting in ;;; affecting_VBG_14_89\ta way ;;; a_DT_18_111; way_NN_19_113\t0.00790\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tThe disease ;;; The_DT_0_0; disease_NN_1_4\tkills ;;; kills_VBZ_2_12\tcorals ;;; corals_NN_3_18\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe episode ;;; The_DT_0_0; episode_NN_1_4\tbe directed by ;;; directed_VBN_11_60\tDavid Grossman ;;; David_NNP_13_72; Grossman_NNP_14_78\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe episode ;;; The_DT_0_0; episode_NN_1_4\twas written by ;;; was_VBD_2_12; written_VBN_3_16\tKevin Murphy and Kevin Etten ;;; Kevin_NNP_5_27; Murphy_NNP_6_33; and_CC_7_40; Kevin_NNP_8_44; Etten_NNP_9_50\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.9555\tThe 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\twas the deadliest aspect of ;;; was_VBD_13_77; the_DT_14_81; deadliest_JJ_15_85; aspect_NN_16_95\tthe quake ;;; the_DT_18_105; quake_NN_19_109\t0.95550\talthough_officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared_21_39\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tthe freeway segment ;;; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38\tbe known as ;;; known_VBN_8_46\tthe Cypress structure ;;; the_DT_10_55; Cypress_NNP_11_59; structure_NN_12_67\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tthe 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\tbe 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\tOakland ;;; Oakland_NNP_3_15\t0.04770\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tthe 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\tbe The failure of ;;; The_DT_0_0; failure_NN_1_4\tthe 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\t0.04770\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tThe 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\twas ;;; was_VBD_13_77\tthe 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\t0.02160\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tofficials ;;; officials_NN_22_126\twere ;;; were_VBD_23_136\thopeful ;;; hopeful_JJ_24_141\t0.02160\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJR} >{prep:regex=prep_(.*)}> {arg2}\t0.0128\tthe death toll ;;; the_DT_27_164; death_NN_28_168; toll_NN_29_174\tmight be significantly lower than ;;; might_MD_31_185; be_VB_32_191; significantly_RB_33_194; lower_JJR_34_208\t250 initially feared ;;; 250_CD_37_223; initially_RB_38_227; feared_VBN_39_237\t0.01280\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tThe first step ;;; The_DT_0_0; first_JJ_1_4; step_NN_2_10\tis from ;;; is_VBZ_7_46\tthe species being studied ;;; the_DT_13_84; species_NN_14_88; being_VBG_15_96; studied_VBN_16_102\t0.24440\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.2444\tThe first step ;;; The_DT_0_0; first_JJ_1_4; step_NN_2_10\tis to ;;; is_VBZ_7_46\talign comparable sequences ;;; align_JJ_9_52; comparable_JJ_10_58; sequences_NN_11_69\t0.24440\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\tits efforts ;;; its_PRP$_6_30; efforts_NN_7_34\tbe begun in ;;; begun_VBN_8_42\t1989 ;;; 1989_CD_10_51\t0.11100\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.0444\tits efforts begun in 1989 ;;; its_PRP$_6_30; efforts_NN_7_34; begun_VBN_8_42; in_IN_9_48; 1989_CD_10_51\thave led to ;;; have_VBP_11_56; led_VBN_12_61\tthe 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\t0.04440\tNone\tThe group 's Mark Cahoon_says_0_4_5_5\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe incidence of malaria ;;; The_DT_0_0; incidence_NN_1_4; of_IN_2_14; malaria_NN_3_17\twas greatly diminished by ;;; was_VBD_4_25; greatly_RB_5_29; diminished_VBN_6_37\tinsecticides 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\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe incidence of malaria ;;; The_DT_0_0; incidence_NN_1_4; of_IN_2_14; malaria_NN_3_17\twas greatly diminished in ;;; was_VBD_4_25; greatly_RB_5_29; diminished_VBN_6_37\tthe 1960s ;;; the_DT_8_51; 1960s_NN_9_55\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tinsecticides 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\tkilled Plasmodium in ;;; killed_VBD_23_152; Plasmodium_NNP_24_159\thumans ;;; humans_NN_26_173\t0.02000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tPlasmodium ;;; Plasmodium_NNP_24_159\tbe killed in ;;; killed_VBD_23_152\thumans ;;; humans_NN_26_173\t0.01550\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe 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\twas calculated at ;;; was_VBD_12_47; calculated_VBN_13_51\t140.91 points ;;; 140.91_CD_15_65; points_NN_16_72\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe 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\twas calculated from ;;; was_VBD_12_47; calculated_VBN_13_51\t140.74 ;;; 140.74_CD_21_97\t1.00000\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0125\tThe index ;;; The_DT_0_0; index_NN_1_4\tuses 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\t100 ;;; 100_CD_10_41\t0.01250\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} by\t{arg1} <dobj< {rel:postag=VBZ} <rcmod< {arg2}\t0.0067\ta base of 1981 ;;; a_DT_5_23; base_NN_6_25; of_IN_7_30; 1981_CD_8_33\tbe uses by ;;; uses_VBZ_4_18\tThe index ;;; The_DT_0_0; index_NN_1_4\t0.00670\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tThe issue 's smooth absorption ;;; The_DT_0_0; issue_NN_1_4; 's_POS_2_10; smooth_JJ_3_13; absorption_NN_4_20\teased ;;; eased_VBD_5_31\tfears ;;; fears_NN_6_37\t0.37970\tNone\ttraders_said_16_16_17_17\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tsupply ;;; supply_NN_8_48\twould overwhelm ;;; would_MD_9_55; overwhelm_VB_10_61\tdemand ;;; demand_NN_11_71\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tsupply ;;; supply_NN_8_48\twould overwhelm demand in ;;; would_MD_9_55; overwhelm_VB_10_61; demand_NN_11_71\tcoming sessions ;;; coming_JJ_13_81; sessions_NN_14_88\t0.13490\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tdemand ;;; demand_NN_11_71\twould be overwhelm in ;;; would_MD_9_55; overwhelm_VB_10_61\tcoming sessions ;;; coming_JJ_13_81; sessions_NN_14_88\t0.01320\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tThe metal products concern ;;; The_DT_0_0; metal_NN_1_4; products_NN_2_10; concern_NN_3_19\tcurrently has ;;; currently_RB_4_27; has_VBZ_5_37\t7.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\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\told ;;; old_JJ_13_87\tbe 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\teukaryotic organisms ;;; eukaryotic_JJ_6_38; organisms_NN_7_49\t0.04770\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tthe nervous system ;;; the_DT_8_52; nervous_JJ_9_56; system_NN_10_64\tbe a network of ;;; a_DT_12_73; network_NN_13_75\tspecialized cells ;;; specialized_JJ_15_86; cells_NN_16_98\t0.40310\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tThe 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\tis ;;; is_VBZ_7_49\tthe nervous system ;;; the_DT_8_52; nervous_JJ_9_56; system_NN_10_64\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0477\tvertical transmission ;;; vertical_JJ_7_38; transmission_NN_8_47\tbe The other route of ;;; The_DT_0_0; other_JJ_1_4; route_NN_2_10\tviral infection ;;; viral_JJ_4_19; infection_NN_5_25\t0.04770\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tThe 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\tis ;;; is_VBZ_6_35\tvertical transmission ;;; vertical_JJ_7_38; transmission_NN_8_47\t0.00840\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBZ} >dobj> {arg2}\t0.1443\tThe song ;;; The_DT_0_0; song_NN_1_4\thas ;;; has_VBZ_2_9\ttwo demo working titles ;;; two_CD_3_13; demo_NN_4_17; working_VBG_5_22; titles_NN_6_30\t0.14430\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tDrunk Girl ;;; Drunk_NNP_13_55; Girl_NNP_14_61\tleaked in ;;; leaked_VBD_18_76\tNovember 2007 ;;; November_NNP_23_102; 2007_CD_24_111\t0.02000\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tDrunk Girl ;;; Drunk_NNP_13_55; Girl_NNP_14_61\tleaked on ;;; leaked_VBD_18_76\tthe internet ;;; the_DT_20_86; internet_NN_21_90\t0.02000\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\tThe song ;;; The_DT_0_0; song_NN_1_4\twas recorded in ;;; was_VBD_2_9; recorded_VBN_3_13\t2003 ;;; 2003_CD_5_25\t1.00000\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tThe term sensory receptor ;;; The_DT_0_0; term_NN_1_4; sensory_JJ_2_9; receptor_NN_3_17\tis used ;;; is_VBZ_4_26; used_VBN_5_29\tthe 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\t0.01910\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2}\t0.0125\tthe subcellular structure ;;; the_DT_17_83; subcellular_JJ_18_87; structure_NN_19_99\tinteracts directly with ;;; interacts_VBZ_21_114; directly_RB_22_124\tstimuli ;;; stimuli_NN_24_138\t0.01250\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tit ;;; it_PRP_4_28\twould drop ;;; would_MD_5_31; drop_VB_6_37\tits opposition ;;; its_PRP$_7_42; opposition_NN_8_46\t0.14730\tif_Ciba-Geigy and Chiron are successful with their lower bid_12_21\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2}\t0.0478\tCiba-Geigy and Chiron ;;; Ciba-Geigy_NNP_13_81; and_CC_14_92; Chiron_NNP_15_96\tare successful with ;;; are_VBP_16_103; successful_JJ_17_107\ttheir lower bid ;;; their_PRP$_19_123; lower_JJR_20_129; bid_NN_21_135\t0.04780\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0314\torganisms ;;; organisms_NN_27_139\tbe interact with ;;; interact_NN_29_154\teach 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\t0.03140\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tThe water ;;; The_DT_0_0; water_NN_1_4\twas heated ;;; was_VBD_2_10; heated_VBN_3_14\thigher 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\t0.01910\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0052\tThe water ;;; The_DT_0_0; water_NN_1_4\tmoved into ;;; moved_VBD_9_48\ta second ;;; a_DT_11_59; second_JJ_12_61\t0.00520\tNone\tNone\n1\t\tcc(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tscientists and the public ;;; scientists_NN_2_12; and_CC_3_23; the_DT_4_27; public_NN_5_31\tTherefore must assess ;;; Therefore_RB_0_0; must_MD_6_38; assess_VB_7_43\tthe 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\t0.14730\tNone\tNone\n0\t\tcc(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tscientists and the public ;;; scientists_NN_2_12; and_CC_3_23; the_DT_4_27; public_NN_5_31\tTherefore 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\ta case-by-case basis ;;; a_DT_9_53; case-by-case_JJ_10_55; basis_NN_11_68\t0.13490\tNone\tNone\n1\t\tcc(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tthe 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\tTherefore must be assess on ;;; Therefore_RB_0_0; must_MD_6_38; assess_VB_7_43\ta case-by-case basis ;;; a_DT_9_53; case-by-case_JJ_10_55; basis_NN_11_68\t0.01320\tNone\tNone\n0\t\tcc(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tsociety ;;; society_NN_22_141\tis ;;; is_VBZ_23_149\twilling ;;; willing_JJ_24_152\t0.00840\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThey ;;; They_PRP_0_0\tconsisted of ;;; consisted_VBD_11_56\tHightower , 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\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThey ;;; They_PRP_0_0\tformed in ;;; formed_VBD_1_5\tthe late 1950s ;;; the_DT_3_15; late_JJ_4_19; 1950s_NN_5_24\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tThey ;;; They_PRP_0_0\theadlined in ;;; headlined_VBD_1_5\tlate 2006 ;;; late_JJ_3_18; 2006_CD_4_23\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBP} >dobj> {arg2}\t0.0416\tThey ;;; They_PRP_0_0\tmerely collect ;;; merely_RB_1_5; collect_VBP_2_12\tcampaign contributions ;;; campaign_NN_3_20; contributions_NN_4_29\t0.04160\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2}\t0.0307\tThey ;;; They_PRP_0_0\tmerely collect campaign contributions from ;;; merely_RB_1_5; collect_VBP_2_12; campaign_NN_3_20; contributions_NN_4_29\tdevelopers 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\t0.03070\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tthem ;;; them_PRP_10_74\tbe keep in ;;; keep_VB_9_69\toffice ;;; office_NN_12_82\t0.01320\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\ta freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70\twill give ;;; will_MD_12_81; give_VB_13_86\trise ;;; rise_NN_14_91\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\ta freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70\twill give rise over ;;; will_MD_12_81; give_VB_13_86; rise_NN_14_91\tmany generations ;;; many_JJ_5_35; generations_NN_6_40\t0.13490\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\ta freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70\twill give rise to ;;; will_MD_12_81; give_VB_13_86; rise_NN_14_91\ta uniform population of individuals ;;; a_DT_16_99; uniform_JJ_17_101; population_NN_18_109; of_IN_19_120; individuals_NN_20_123\t0.13490\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\trise ;;; rise_NN_14_91\twill be give over ;;; will_MD_12_81; give_VB_13_86\tmany generations ;;; many_JJ_5_35; generations_NN_6_40\t0.01320\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\trise ;;; rise_NN_14_91\twill be give to ;;; will_MD_12_81; give_VB_13_86\ta uniform population of individuals ;;; a_DT_16_99; uniform_JJ_17_101; population_NN_18_109; of_IN_19_120; individuals_NN_20_123\t0.01320\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|appoint|ask|bear|build|call|cast|choose|clear|confirm|consider|create|destine|determine|elect|empower|encourage|equip|establish|expect|favor|favour|force|hire|honor|inspire|invite|know|line|list|mean|name|need|nominate|obligate|oblige|offer|pay|permit|persuade|pick|please|poise|predict|prepare|prime|project|prove|require|say|schedule|select|send|set|show|sign|slate|suppose|tempt|think|threaten|tip|urge|use|warn} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0068\tThis method ;;; This_DT_0_0; method_NN_1_5\tto produce ;;; to_TO_4_20; produce_VB_5_23\tcloned 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\t0.00680\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1473\tScorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20\twould 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\tthe 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\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tScorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20\twould take ;;; would_MD_14_71; take_VB_15_77\tFord ;;; Ford_NNP_16_82\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.1473\tit ;;; it_PRP_13_68\twould 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\tthe 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\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tit ;;; it_PRP_13_68\twould take ;;; would_MD_14_71; take_VB_15_77\tFord ;;; Ford_NNP_16_82\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tScorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20\twould take Ford at ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82\tthe current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63\t0.13490\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tit ;;; it_PRP_13_68\twould take Ford at ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82\tthe current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63\t0.13490\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >tmod> {arg2}\t0.0151\tScorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20\tplummeted in ;;; plummeted_VBD_5_26\tThis year ;;; This_DT_0_0; year_NN_1_5\t0.01510\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel} in\t{arg1} <nsubj< {rel:postag=VBD} >tmod> {arg2}\t0.0151\tit ;;; it_PRP_13_68\tplummeted in ;;; plummeted_VBD_5_26\tThis year ;;; This_DT_0_0; year_NN_1_5\t0.01510\tNone\tNone\n0\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tFord ;;; Ford_NNP_16_82\twould be take at ;;; would_MD_14_71; take_VB_15_77\tthe current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63\t0.01320\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VB:regex=act|agree|allow|attempt|be|beat|begin|choose|come|continue|dare|decide|defeat|deserve|do|expect|fail|find|get|go|have|help|hesitate|hope|intend|like|love|manage|move|need|not|open|permit|please|proceed|promise|return|seek|seem|struggle|sweep|take|threaten|try|use|vote|wait|want|win} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0055\tScorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20\tto sell off ;;; to_TO_19_96; sell_VB_20_99; off_RP_21_104\tthe 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\t0.00550\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VB:regex=act|agree|allow|attempt|be|beat|begin|choose|come|continue|dare|decide|defeat|deserve|do|expect|fail|find|get|go|have|help|hesitate|hope|intend|like|love|manage|move|need|not|open|permit|please|proceed|promise|return|seek|seem|struggle|sweep|take|threaten|try|use|vote|wait|want|win} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0055\tit ;;; it_PRP_13_68\tto sell off ;;; to_TO_19_96; sell_VB_20_99; off_RP_21_104\tthe 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\t0.00550\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tthe phloem ;;; the_DT_2_7; phloem_NN_3_11\tThus can serve ;;; Thus_RB_0_0; can_MD_4_18; serve_VB_5_22\ta nerve-like function ;;; a_DT_6_28; nerve-like_JJ_7_30; function_NN_8_41\t0.14730\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VB} >xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tthe phloem ;;; the_DT_2_7; phloem_NN_3_11\tThus 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\tswift electrical communication ;;; swift_JJ_12_65; electrical_JJ_13_71; communication_NN_14_82\t0.13490\tNone\tNone\n1\t\taux(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\tan animal ;;; an_DT_16_84; animal_NN_17_87\tmust obtain ;;; must_MD_18_94; obtain_VB_19_99\ttwo types of organic precursors ;;; two_CD_20_106; types_NN_21_110; of_IN_22_116; organic_JJ_23_119; precursors_NN_24_127\t0.14730\tNone\tNone\n1\t\taux(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.1349\tan animal ;;; an_DT_16_84; animal_NN_17_87\tmust 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\tits food ;;; its_PRP$_26_143; food_NN_27_147\t0.13490\tNone\tNone\n1\t\taux(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\ttwo types of organic precursors ;;; two_CD_20_106; types_NN_21_110; of_IN_22_116; organic_JJ_23_119; precursors_NN_24_127\tmust be obtain from ;;; must_MD_18_94; obtain_VB_19_99\tits food ;;; its_PRP$_26_143; food_NN_27_147\t0.01320\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tTurner ;;; Turner_NNP_0_0\talso starred in ;;; also_RB_1_7; starred_VBD_2_12\tthe film ;;; the_DT_4_23; film_NN_5_27\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VBG} >dobj> {arg2}\t0.3797\tTurner ;;; Turner_NNP_0_0\talso starred portraying ;;; also_RB_1_7; starred_VBD_2_12; portraying_VBG_7_34\ta 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\t0.37970\tNone\tNone\n0\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\ther ;;; her_PRP_14_78\tfind ;;; find_VB_15_82\ta 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\t0.14730\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t0.111\ta new girlfriend ;;; a_DT_16_87; new_JJ_17_89; girlfriend_NN_18_93\tbe portayed by ;;; portayed_VBN_22_112\tVS Brodie ;;; VS_NNP_24_124; Brodie_NNP_25_127\t0.11100\tNone\tNone\n1\t\tcc(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBZ}\t0.0084\tUmbriatico ;;; Umbriatico_NNP_0_0\tis ;;; is_VBZ_1_11\ta 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\t0.00840\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tEquitec ;;; Equitec_NNP_19_129\twould be replace as ;;; would_MD_17_115; replace_VB_18_121\tthe 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\t0.01320\tNone\tNone\n1\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.0132\tEquitec ;;; Equitec_NNP_19_129\twould be replace under ;;; would_MD_17_115; replace_VB_18_121\tthe proposal ;;; the_DT_1_6; proposal_NN_2_10\t0.01320\tNone\tNone\n0\t\tpobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <conj< {arg2} <{prep:regex=prep_(.*)}< {rel:postag=NN}\t0.0066\tYork-based Hallwood Group Inc. ;;; York-based_JJ_13_84; Hallwood_NNP_14_95; Group_NNP_15_104; Inc._NNP_16_110\tbe the proposal by ;;; the_DT_1_6; proposal_NN_2_10\tEquitec ;;; Equitec_NNP_4_22\t0.00660\tNone\tNone\n1\t\tdobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the and his students ;;; he_PRP_5_39; and_CC_6_42; his_PRP$_7_46; students_NN_8_50\tspent ;;; spent_VBD_9_59\tseveral decades observing these bees ;;; several_JJ_10_65; decades_NN_11_73; observing_VBG_12_81; these_DT_13_91; bees_NN_14_97\t0.37970\tNone\tNone\n1\t\tdobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubjpass< {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2}\t1.0\the ;;; he_PRP_5_27\twas hosted by ;;; was_VBD_6_30; hosted_VBN_7_34\tan 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\t1.00000\tNone\tNone\n0\t\tdobj(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)\tTemplate\tbe {rel} in\t{arg1} <nsubjpass< {rel:postag=VBN} <rcmod< {arg2}\t0.0103\twhose children ;;; whose_WP$_13_75; children_NN_14_81\thad been required in ;;; had_VBD_15_90; been_VBN_16_94; required_VBN_17_99\tan anti-Nazi Protestant family ;;; an_DT_9_44; anti-Nazi_JJ_10_47; Protestant_JJ_11_57; family_NN_12_68\t0.01030\tNone\tNone\n0\t\tdobj(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tGermany ;;; Germany_NNP_1_9\tbe Visiting in ;;; Visiting_VBG_0_0\t1937 ;;; 1937_CD_3_20\t0.00790\tNone\tNone\n1\t\tdobj(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)\tTemplate\t{rel}\t{arg1} <nsubjpass< {slot0:postag=VBN:regex=allow|appoint|ask|bear|build|call|cast|choose|clear|confirm|consider|create|destine|determine|elect|empower|encourage|equip|establish|expect|favor|favour|force|hire|honor|inspire|invite|know|line|list|mean|name|need|nominate|obligate|oblige|offer|pay|permit|persuade|pick|please|poise|predict|prepare|prime|project|prove|require|say|schedule|select|send|set|show|sign|slate|suppose|tempt|think|threaten|tip|urge|use|warn} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0068\twhose children ;;; whose_WP$_13_75; children_NN_14_81\tto join ;;; to_TO_18_108; join_VB_19_111\tthe Hitler Youth ;;; the_DT_20_116; Hitler_NNP_21_120; Youth_NNP_22_127\t0.00680\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tWKY ;;; WKY_NNP_0_0\toperated from ;;; operated_VBD_1_4\t1936 ;;; 1936_CD_11_67\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tWKY ;;; WKY_NNP_0_0\toperated from ;;; operated_VBD_1_4\tthe Skirvin Hotel ;;; the_DT_3_18; Skirvin_NNP_4_22; Hotel_NNP_5_30\t0.73450\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tWKY ;;; WKY_NNP_0_0\toperated in ;;; operated_VBD_1_4\tdowntown Oklahoma City ;;; downtown_NN_7_39; Oklahoma_NNP_8_48; City_NNP_9_57\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_11_59\ttapped Connor to serve as ;;; tapped_VBD_12_62; Connor_NNP_13_69; to_TO_14_76; serve_VB_15_79\tthe Deputy Secretary ;;; the_DT_17_88; Deputy_NNP_18_92; Secretary_NNP_19_99\t0.73450\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_11_59\ttapped Connor to serve in ;;; tapped_VBD_12_62; Connor_NNP_13_69; to_TO_14_76; serve_VB_15_79\tthe 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\t0.73450\tNone\tNone\n0\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_11_59\ttapped ;;; tapped_VBD_12_62\tConnor ;;; Connor_NNP_13_69\t0.37970\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\tRick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10\tbecame Governor of Texas in ;;; became_VBD_3_16; Governor_NNP_4_23; of_IN_5_32; Texas_NNP_6_35\tJanuary 2001 ;;; January_NNP_8_44; 2001_CD_9_52\t0.07240\tNone\tNone\n1\t\tnn(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0724\tRick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10\tbecame Governor of ;;; became_VBD_3_16; Governor_NNP_4_23\tTexas ;;; Texas_NNP_6_35\t0.07240\tNone\tNone\n1\t\tnn(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)\tTemplate\t{rel}\t{arg1} <nsubj< {arg2} >cop> {rel:postag=VBD}\t0.0216\tRick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10\tbecame ;;; became_VBD_3_16\tGovernor of Texas ;;; Governor_NNP_4_23; of_IN_5_32; Texas_NNP_6_35\t0.02160\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe company ;;; the_DT_1_5; company_NN_2_9\tannounced ;;; announced_VBD_5_28\tlower-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\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tthe stock ;;; the_DT_12_79; stock_NN_13_83\tdropped ;;; dropped_VBD_14_89\tnearly 19 % ;;; nearly_RB_15_97; 19_CD_16_104; %_NN_17_107\t0.37970\tNone\tNone\n1\t\tdet(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tthe company ;;; the_DT_1_5; company_NN_2_9\tbe lower-than-forecast sales of ;;; lower-than-forecast_JJ_6_38; sales_NN_7_58\tEasy Eggs ;;; Easy_NNP_9_67; Eggs_NNP_10_72\t0.01190\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VB} >dobj> {arg2}\t0.1473\twater molecules ;;; water_NN_14_88; molecules_NN_15_94\tto cross ;;; to_TO_16_104; cross_VB_17_107\tthe epithelium ;;; the_DT_18_113; epithelium_NN_19_117\t0.14730\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBP} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.0416\taquaporin channels ;;; aquaporin_NN_7_40; channels_NN_8_50\tallow to cross ;;; allow_VBP_13_82; to_TO_16_104; cross_VB_17_107\tthe epithelium ;;; the_DT_18_113; epithelium_NN_19_117\t0.04160\tNone\tNone\n0\t\tdet(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBG} >dobj> {arg2}\t0.0292\tthe kidneys ;;; the_DT_1_5; kidneys_NN_2_9\tare conserving ;;; are_VBP_3_17; conserving_VBG_4_21\twater ;;; water_NN_5_32\t0.02920\tNone\tNone\n1\t\tpcomp(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tStrachan ;;; Strachan_NNP_9_48\tentered ;;; entered_VBD_10_57\tthe World Gurning competition ;;; the_DT_11_65; World_NNP_12_69; Gurning_NNP_13_75; competition_NN_14_83\t0.37970\tNone\tNone\n0\t\tpcomp(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\tStrachan ;;; Strachan_NNP_9_48\tbe the World Gurning competition at ;;; the_DT_11_65; World_NNP_12_69; Gurning_NNP_13_75; competition_NN_14_83\tEgremont Crab Fair ;;; Egremont_NNP_16_98; Crab_NNP_17_107; Fair_NNP_18_112\t0.01190\tNone\tNone\n1\t\tpcomp(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tan item ;;; an_DT_2_14; item_NN_3_17\tbe filming for ;;; filming_VBG_1_6\tCountryfile ;;; Countryfile_NNP_5_26\t0.00790\tNone\tNone\n1\t\tpcomp(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2}\t0.0079\tan item ;;; an_DT_2_14; item_NN_3_17\tbe filming in ;;; filming_VBG_1_6\t2002 ;;; 2002_CD_7_41\t0.00790\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_5_18\tcompleted the year-long course at ;;; completed_VBD_6_21; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45\tthe 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\t0.73450\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_5_18\treceived 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\tRoyal Military College of Canada ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173; of_IN_32_181; Canada_NNP_33_184\t0.73450\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\the ;;; he_PRP_5_18\treceived 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\twar studies degree ;;; war_NN_25_134; studies_NN_26_138; degree_NN_27_146\t0.73450\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_5_18\tcompleted ;;; completed_VBD_6_21\tthe year-long course ;;; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45\t0.37970\tNone\tNone\n1\t\tdep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_5_18\treceived ;;; received_VBD_19_105\ta Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126\t0.37970\tNone\tNone\n0\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <appos< {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2}\t0.0282\tstudent ;;; student_NN_35_193\tbe Royal Military College of ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173\tCanada ;;; Canada_NNP_33_184\t0.02820\tNone\tNone\n1\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126\tbe received from ;;; received_VBD_19_105\tRoyal Military College of Canada ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173; of_IN_32_181; Canada_NNP_33_184\t0.01550\tNone\tNone\n1\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\ta Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126\tbe received in ;;; received_VBD_19_105\twar studies degree ;;; war_NN_25_134; studies_NN_26_138; degree_NN_27_146\t0.01550\tNone\tNone\n1\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <dobj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.0155\tthe year-long course ;;; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45\tbe completed at ;;; completed_VBD_6_21\tthe 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\t0.01550\tNone\tNone\n1\t\tdep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=accept|announce|answer|appoint|ask|baptise|be|become|brief|bring|build|call|celebrate|claim|compare|complete|congratulate|conquer|consider|constitute|contain|crown|d|declare|demonstrate|describe|designate|die|distinguish|elect|enter|form|give|guide|have|head|hear|hold|host|inaugurate|inform|inspire|introduce|invade|invite|join|know|landlock|lead|leave|lobby|make|meet|move|name|note|null|occupy|open|pose|preach|present|proclaim|promise|prove|provide|raise|receive|recognize|reference|register|remain|remind|replace|represent|reveal|say|see|seem|set|show|speak|stay|style|superintend|take|teach|tell|thank|understand|urge|use|wasn|welcome|win} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.0119\the ;;; he_PRP_5_18\tbe a Master of ;;; a_DT_20_114; Master_NN_21_116\tArts ;;; Arts_NN_23_126\t0.01190\tNone\tNone\n0\t\tnsubjpass(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)\tTemplate\tbe {rel}\t{arg1} <nsubjpass< {rel:postag=VBN} >dobj> {arg2}\t0.0191\tWheeler ;;; Wheeler_NNP_0_0\twas astonished ;;; was_VBD_1_8; astonished_VBN_2_12\tan organic compound present ;;; an_DT_12_63; organic_JJ_13_66; compound_NN_14_74; present_NN_15_83\t0.01910\tNone\tNone\n0\t\tpobj(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)\tTemplate\t{rel} {prep}\t{arg1} <nsubj< {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.7345\tresearchers ;;; researchers_NN_6_27\thad with ;;; had_VBD_7_39\ta large genome ;;; a_DT_2_10; large_JJ_3_12; genome_NN_4_18\t0.73450\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel1:postag=VBD} >xcomp> {rel2:postag=VB} >dobj> {arg2}\t0.3797\tresearchers ;;; researchers_NN_6_27\thad to carry out ;;; had_VBD_7_39; to_TO_8_43; carry_VB_9_46; out_RP_10_52\tseveral rounds of DNA cutting ;;; several_JJ_11_56; rounds_NN_12_64; of_IN_13_71; DNA_NNP_14_74; cutting_NN_15_78\t0.37970\tNone\tNone\n1\t\tpobj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {slot0:postag=VBD:regex=abandon|agree|allow|announce|apply|ask|attempt|be|beat|begin|bounce|break|call|carry|choose|claim|come|command|complete|conspire|continue|cross|decide|defeat|deserve|desire|didn|didnt|direct|do|emerge|end|exert|expect|fail|favor|fight|force|get|give|go|hang|have|hold|inspire|instruct|intend|issue|jump|lay|lead|leave|lie|list|lose|love|make|manage|march|mobilize|move|need|null|offer|open|opt|order|outlast|overcome|overwhelm|pay|pick|plan|play|pledge|predict|prefer|prepare|proceed|project|promise|pull|put|raise|rally|reach|rebound|receive|refuse|resolve|return|reverse|route|rush|say|score|seek|send|set|sign|spend|start|step|stock|stun|sweep|take|teach|tell|threaten|travel|try|undertake|use|vote|vow|wait|want|win|wish|work|write} >xcomp> {rel:postag=VB} >dobj> {arg2}\t0.0195\tresearchers ;;; researchers_NN_6_27\tto carry out ;;; to_TO_8_43; carry_VB_9_46; out_RP_10_52\tseveral rounds of DNA cutting ;;; several_JJ_11_56; rounds_NN_12_64; of_IN_13_71; DNA_NNP_14_74; cutting_NN_15_78\t0.01950\tNone\tNone\n1\t\tnsubj(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)\tTemplate\tbe {rel} {prep}\t{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.4031\tJacob F. \" Jake \" Horton ;;; Jacob_NNP_11_70; F._NNP_12_76; \"_``_13_79; Jake_NNP_14_81; \"_''_15_86; Horton_NNP_16_88\tbe the senior vice president of ;;; the_DT_18_97; senior_JJ_19_101; vice_NN_20_108; president_NN_21_113\tGulf Power ;;; Gulf_NNP_23_126; Power_NNP_24_131\t0.40310\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBN} >dobj> {arg2}\t0.0577\tthe grand jury ;;; the_DT_3_20; grand_JJ_4_24; jury_NN_5_30\thas asked ;;; has_VBZ_6_35; asked_VBN_7_39\tnumerous questions ;;; numerous_JJ_8_45; questions_NN_9_54\t0.05770\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tthe 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\tdied in ;;; died_VBD_26_141\tApril ;;; April_NNP_32_168\t0.02000\tNone\tNone\n1\t\tnsubj(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)\tTemplate\t{rel} {prep}\t{arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2}\t0.02\tthe 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\tdied in ;;; died_VBD_26_141\tthe plane crash ;;; the_DT_28_149; plane_NN_29_153; crash_NN_30_159\t0.02000\tNone\tNone\n0\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\tYears ;;; Years_NN_0_0\tmet again ;;; met_VBD_8_39; again_RB_10_52\tBeatrice ;;; Beatrice_NNP_9_43\t0.37970\tNone\tNone\n1\t\tprep(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)\tTemplate\t{rel}\t{arg1} <nsubj< {rel:postag=VBD} >dobj> {arg2}\t0.3797\the ;;; he_PRP_7_36\tmet again ;;; met_VBD_8_39; again_RB_10_52\tBeatrice ;;; Beatrice_NNP_9_43\t0.37970\tNone\tNone\n0\t\tprep(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)\tTemplate\tbe {rel} {prep}\t{arg1} <nsubj< {slot0:postag=VBD:regex=adopt|agree|announce|appoint|ask|attend|be|belong|bring|call|come|comment|declare|deliver|die|elect|end|enjoy|enter|experience|find|follow|give|go|grow|have|hold|join|lead|make|meet|note|offer|open|participate|pay|plan|present|provide|purge|receive|reconcile|refuse|represent|return|rise|say|serve|sit|speak|start|suffer|take|talk|tell|translate|try|use|visit|vote|welcome|work|write} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}\t0.006\the ;;; he_PRP_7_36\tbe Years after ;;; Years_NN_0_0\this marriage ;;; his_PRP$_2_12; marriage_NN_3_16\t0.00600\tNone\tNone\n"
  },
  {
    "path": "example/pom.xml",
    "content": "<?xml version=\"1.0\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <groupId>edu.washington.cs.knowitall.ollie</groupId>\n  <artifactId>ollie-example</artifactId>\n  <name>ollie-example</name>\n  <version>1.0.0-SNAPSHOT</version>\n  <parent>\n    <groupId>edu.washington.cs.knowitall</groupId>\n    <artifactId>knowitall-oss</artifactId>\n    <version>1.0.2</version>\n  </parent>\n  <properties>\n    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n    <nlptools.version>2.4.0</nlptools.version>\n  </properties>\n  <dependencies>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.ollie</groupId>\n      <artifactId>ollie-core_2.9.2</artifactId>\n      <version>1.0.2</version>\n    </dependency>\n    <dependency>\n      <groupId>edu.washington.cs.knowitall.nlptools</groupId>\n      <artifactId>nlptools-parse-malt_2.9.2</artifactId>\n      <version>${nlptools.version}</version>\n    </dependency>\n    <!-- Logging -->\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-classic</artifactId>\n      <version>1.0.7</version>\n    </dependency>\n    <dependency>\n      <groupId>ch.qos.logback</groupId>\n      <artifactId>logback-core</artifactId>\n      <version>1.0.7</version>\n    </dependency>\n  </dependencies>\n  <build>\n    <sourceDirectory>src/main/scala</sourceDirectory>\n    <testSourceDirectory>src/test/scala</testSourceDirectory>\n    <resources>\n      <resource>\n        <directory>src/main/resources</directory>\n      </resource>\n    </resources>\n    <plugins>\n      <plugin>\n        <groupId>net.alchim31.maven</groupId>\n        <artifactId>scala-maven-plugin</artifactId>\n        <version>3.1.0</version>\n        <configuration>\n          <args>\n            <arg>-deprecation</arg>\n            <arg>-unchecked</arg>\n          </args>\n        </configuration>\n        <executions>\n          <execution>\n            <goals>\n              <goal>compile</goal>\n              <goal>testCompile</goal>\n            </goals>\n          </execution>\n        </executions>\n      </plugin>\n    </plugins>\n  </build>\n</project>\n"
  },
  {
    "path": "example/src/main/java/example/JavaOllieWrapper.java",
    "content": "package example;\n\nimport java.io.File;\nimport java.net.MalformedURLException;\n\nimport edu.knowitall.ollie.Ollie;\nimport edu.knowitall.ollie.OllieExtraction;\nimport edu.knowitall.ollie.OllieExtractionInstance;\nimport edu.knowitall.tool.parse.MaltParser;\nimport edu.knowitall.tool.parse.graph.DependencyGraph;\n\n/** This is an example class that shows one way of using Ollie from Java. */\npublic class JavaOllieWrapper {\n    // the extractor itself\n    private Ollie ollie;\n\n    // the parser--a step required before the extractor\n    private MaltParser maltParser;\n\n    // the path of the malt parser model file\n    private static final String MALT_PARSER_FILENAME = \"engmalt.linear-1.7.mco\";\n\n    public JavaOllieWrapper() throws MalformedURLException {\n        // initialize MaltParser\n        scala.Option<File> nullOption = scala.Option.apply(null);\n        maltParser = new MaltParser(new File(MALT_PARSER_FILENAME).toURI().toURL(), nullOption);\n\n        // initialize Ollie\n        ollie = new Ollie();\n    }\n\n    /**\n     * Gets Ollie extractions from a single sentence.\n     * @param sentence\n     * @return the set of ollie extractions\n     */\n    public Iterable<OllieExtractionInstance> extract(String sentence) {\n        // parse the sentence\n        DependencyGraph graph = maltParser.dependencyGraph(sentence);\n\n        // run Ollie over the sentence and convert to a Java collection\n        Iterable<OllieExtractionInstance> extrs = scala.collection.JavaConversions.asJavaIterable(ollie.extract(graph));\n        return extrs;\n    }\n\n    public static void main(String args[]) throws MalformedURLException {\n        System.out.println(JavaOllieWrapper.class.getResource(\"/logback.xml\"));\n        // initialize\n        JavaOllieWrapper ollieWrapper = new JavaOllieWrapper();\n\n        // extract from a single sentence.\n        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.\";\n        Iterable<OllieExtractionInstance> extrs = ollieWrapper.extract(sentence);\n\n        // print the extractions.\n        for (OllieExtractionInstance inst : extrs) {\n            OllieExtraction extr = inst.extr();\n            System.out.println(extr.arg1().text()+\"\\t\"+extr.rel().text()+\"\\t\"+extr.arg2().text());\n        }\n    }\n}\n"
  },
  {
    "path": "example/src/main/resouces/logback.xml",
    "content": "<?xml version=\"1.0\"?>\n<configuration>\n  <appender name=\"STDOUT\" class=\"ch.qos.logback.core.ConsoleAppender\">\n    <encoder>\n      <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>\n    </encoder>\n  </appender>\n  <root level=\"info\">\n    <appender-ref ref=\"STDOUT\"/>\n  </root>\n</configuration>\n"
  },
  {
    "path": "example/src/main/scala/ollie/Example.scala",
    "content": "package ollie\n\nimport edu.knowitall.ollie.Ollie\nimport edu.knowitall.tool.parse.MaltParser\nimport scala.io.Source\nimport edu.knowitall.ollie.confidence.OllieConfidenceFunction\n\n/** This is an example project that takes lines as input from stdin,\n  * parses them, runs the Ollie extractor on them, scores the\n  * extractions with a confidence function, and then prints the results.\n  *\n  * You can run this project with the following command:\n  *   mvn clean compile exec:java -Dexec.mainClass=ollie.Example\n  *\n  * You will need to have engmalt.linear-1.7.mco in the base directory\n  * of this example for the program to work.  You can download this\n  * file from the MaltParser website:\n  *\n  *   http://www.maltparser.org/mco/english_parser/engmalt.html\n  */\nobject Example extends App {\n  val parser = new MaltParser\n  val ollie = new Ollie\n  val confidence = OllieConfidenceFunction.loadDefaultClassifier()\n  for (line <- Source.stdin.getLines; if !line.trim.isEmpty) {\n    val parsed = parser.dependencyGraph(line)\n    val extractionInstances = ollie.extract(parsed)\n\n    println(\"Extractions:\")\n    for (inst <- extractionInstances) {\n      val conf = confidence(inst)\n      println((\"%.2f\" format conf) + \"\\t\" + inst.extraction)\n    }\n    println(\"Waiting for next input...\")\n  }\n}\n"
  },
  {
    "path": "pom.xml",
    "content": "<?xml version=\"1.0\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd\">\n  <modelVersion>4.0.0</modelVersion>\n  <artifactId>ollie</artifactId>\n  <name>ollie</name>\n  <version>1.0.0-SNAPSHOT</version>\n  <packaging>pom</packaging>\n  <groupId>edu.washington.cs.knowitall.ollie</groupId>\n  <properties>\n    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n  </properties>\n  <modules>\n    <module>core</module>\n    <module>app</module>\n  </modules>\n</project>\n"
  }
]