Repository: knowitall/ollie
Branch: master
Commit: e8fa07a1d9d2
Files: 85
Total size: 6.1 MB
Directory structure:
gitextract_28sxprec/
├── .dockerignore
├── .gitignore
├── .travis.yml
├── Dockerfile
├── LICENSE
├── README.md
├── app/
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── resources/
│ │ │ └── logback.xml
│ │ └── scala/
│ │ └── edu/
│ │ └── knowitall/
│ │ ├── ollie/
│ │ │ ├── OllieCli.scala
│ │ │ └── SentenceIterator.scala
│ │ └── openparse/
│ │ ├── OpenParseCli.scala
│ │ ├── OpenParseGui.scala
│ │ └── gui/
│ │ ├── Dot.scala
│ │ ├── ExtractionEntry.scala
│ │ ├── Parser.scala
│ │ └── Sentence.scala
│ └── test/
│ └── resources/
│ └── logback-test.xml
├── core/
│ ├── build.sbt
│ ├── here.txt
│ ├── pom.xml
│ ├── project/
│ │ └── plugins.sbt
│ ├── scripts/
│ │ ├── applypatterns.sh
│ │ ├── build_templates.sh
│ │ ├── create_patterns.sh
│ │ ├── create_test_train.sh
│ │ ├── extractor.sh
│ │ └── keep_common_patterns.sh
│ └── src/
│ ├── main/
│ │ ├── resources/
│ │ │ └── edu/
│ │ │ └── knowitall/
│ │ │ ├── ollie/
│ │ │ │ ├── cognitiveWords.txt
│ │ │ │ ├── communicationWords.txt
│ │ │ │ ├── confidence/
│ │ │ │ │ └── default-classifier.txt
│ │ │ │ └── prefixWords.txt
│ │ │ └── openparse/
│ │ │ ├── categories/
│ │ │ │ ├── location.txt
│ │ │ │ └── person.txt
│ │ │ └── openparse.model
│ │ └── scala/
│ │ └── edu/
│ │ └── knowitall/
│ │ ├── common/
│ │ │ └── enrich/
│ │ │ └── Traversable.scala
│ │ ├── ollie/
│ │ │ ├── DependencyGraphExtras.scala
│ │ │ ├── NaryExtraction.scala
│ │ │ ├── Ollie.scala
│ │ │ ├── OllieExtraction.scala
│ │ │ ├── OllieExtractionInstance.scala
│ │ │ ├── ScoredOllieExtractionInstance.scala
│ │ │ ├── confidence/
│ │ │ │ ├── OllieConfidenceFunction.scala
│ │ │ │ ├── OllieFeatureEvaluation.scala
│ │ │ │ ├── OllieFeatureSet.scala
│ │ │ │ └── train/
│ │ │ │ ├── CrossValidateConfidence.scala
│ │ │ │ └── TrainOllieConfidence.scala
│ │ │ └── output/
│ │ │ └── BratOutput.scala
│ │ └── openparse/
│ │ ├── AnalyzePatterns.scala
│ │ ├── BuildPatterns.scala
│ │ ├── ExtractorPattern.scala
│ │ ├── GraphExpansions.scala
│ │ ├── OpenParse.scala
│ │ ├── bootstrap/
│ │ │ ├── FilterTargetExtractions.scala
│ │ │ ├── FindCommon.scala
│ │ │ ├── FindTargetArguments.scala
│ │ │ └── FindTargetExtractions.scala
│ │ ├── eval/
│ │ │ ├── GroupScoredBy.scala
│ │ │ ├── PrecisionYield.scala
│ │ │ ├── RankPatterns.scala
│ │ │ ├── Score.scala
│ │ │ └── StatisticalSignificance.scala
│ │ ├── extract/
│ │ │ ├── Extraction.scala
│ │ │ ├── GeneralExtractor.scala
│ │ │ ├── PatternExtractor.scala
│ │ │ ├── SpecificExtractor.scala
│ │ │ └── TemplateExtractor.scala
│ │ └── template/
│ │ ├── BuildTemplates.scala
│ │ ├── CountsToConfidence.scala
│ │ ├── GeneralizeTemplate.scala
│ │ └── PassiveReflections.scala
│ └── test/
│ ├── resources/
│ │ └── logback-test.xml
│ └── scala/
│ └── edu/
│ └── knowitall/
│ ├── common/
│ │ └── enrich/
│ │ └── TraversableSpecTest.scala
│ ├── ollie/
│ │ ├── DependencyGraphExtrasSpec.scala
│ │ └── confidence/
│ │ └── OllieFeatureSetSpec.scala
│ └── openparse/
│ ├── BuildPatternsSpec.scala
│ ├── ExtractorPatternSpec.scala
│ ├── OllieSpec.scala
│ ├── OpenParseSpec.scala
│ └── PatternExtractorSpec.scala
├── data/
│ └── training.tsv
├── example/
│ ├── pom.xml
│ └── src/
│ └── main/
│ ├── java/
│ │ └── example/
│ │ └── JavaOllieWrapper.java
│ ├── resouces/
│ │ └── logback.xml
│ └── scala/
│ └── ollie/
│ └── Example.scala
└── pom.xml
================================================
FILE CONTENTS
================================================
================================================
FILE: .dockerignore
================================================
Dockerfile
.dockerignore
.gitignore
.git
================================================
FILE: .gitignore
================================================
target
.cache
.classpath
.project
.settings
engmalt.linear.mco
================================================
FILE: .travis.yml
================================================
language: scala
scala:
- "2.9.2"
jdk:
- oraclejdk7
- openjdk7
================================================
FILE: Dockerfile
================================================
FROM maven:3.5.2-jdk-7
WORKDIR /stage
COPY ./ /stage/
RUN curl http://www.maltparser.org/mco/english_parser/engmalt.linear-1.7.mco > /stage/engmalt.linear-1.7.mco
RUN mvn clean package
CMD ["java", "-Xmx512m", "-jar", "ollie-app-1.0.1-SNAPSHOT.jar"]
================================================
FILE: LICENSE
================================================
Ollie Software License Agreement
Ollie Software
(C) 2011-2012, University of Washington. All rights reserved.
US patent number 7,877,343 and 12/970,155 patent pending
The University of Washington (UW), Professor Mausam, Michael Schmitz, Robert
Bart, and Stephen Soderland, (Developers) give permission for you and your
laboratory (University) to use Ollie. Ollie is a system that extracts
relational triples from text. Ollie is protected by a United States copyright
and patents. The National Science Foundation supported work on Ollie. Under
University of Washington's patents 7,877,343 (issued) and 12/970,155 (patent
pending), the UW grants to you the non-exclusive right to use patent claims
practiced by the University of Washington's Ollie software solely for
non-commercial purposes and as long as you comply with the terms of this Ollie
Software License Agreement. UW and the Developers allow you to copy and modify
Ollie for non-commercial purposes, and to distribute modifications through
GitHub or directly to the University of Washington, on the following
conditions:
1. Ollie is not used for any commercial purposes, or as part of a system
which has commercial purposes.
2. Any software derived from Ollie must carry prominent notices stating that
you modified it along with the date modified. The derivative must also carry
prominent notices stating that it is released under this Ollie Software
License Agreement
If you wish to obtain Ollie or to obtain any patent rights for any commercial
purposes, you will need to contact the University of Washington to see if
rights are available and to negotiate a commercial license and pay a fee. This
includes, but is not limited to, using Ollie to provide services to outside
parties for a fee. In that case please contact:
UW Center for Commercialization
University of Washington
4311 11th Ave. NE,
Suite 500 Seattle, WA 98105-4608
Phone: (206) 543-3970
Email: license@u.washington.edu
3. You retain in Ollie and any modifications to Ollie, the copyright,
trademark, patent or other notices pertaining to Ollie as provided by UW.
4. You provide the Developers with feedback on the use of the Ollie software
in your research, and that the Developers and UW are permitted to use any
information you provide in making changes to the Ollie software. All bug
reports and technical questions shall be sent to: afader@cs.washington.edu.
Modifications may be communicated through GitHub pull requests at:
https://github.com/knowitall/
5. You acknowledge that the Developers, UW and its licensees may develop
modifications to Ollie that may be substantially similar to your modifications
of Ollie, and that the Developers, UW and its licensees shall not be
constrained in any way by you in UW's or its licensees' use or management of
such modifications. You acknowledge the right of the Developers and UW to
prepare and publish modifications to Ollie that may be substantially similar
or functionally equivalent to your modifications and improvements, and if you
obtain patent protection for any modification or improvement to Ollie you
agree not to allege or enjoin infringement of your patent by the Developers,
the UW or by any of UW's licensees obtaining modifications or improvements to
Ollie from the University of Washington or the Developers.
6. If utilization of the Ollie software results in outcomes which will be
published, please specify the version of Ollie you used and cite the UW
Developers.
@inproceedings{ollie-emnlp12,
author = {Mausam and Michael Schmitz and Robert Bart and
Stephen Soderland and Oren Etzioni},
title = {Open Language Learning for Information Extraction},
booktitle = {Proceedings of Conference on Empirical Methods in
Natural Language Processing and Computational Natural
Language Learning (EMNLP-CONLL)},
year = {2012}
}
7. Any risk associated with using the Ollie software at your organization is
with you and your organization. Ollie is experimental in nature and is made
available as a research courtesy "AS IS," without obligation by UW to provide
accompanying services or support.
UW AND THE AUTHORS EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES REGARDING THE
SOFTWARE, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES
PERTAINING TO MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
================================================
FILE: README.md
================================================
# Ollie
Ollie is a program that automatically identifies and extracts binary
relationships from English sentences. Ollie is designed for Web-scale
information extraction, where target relations are not specified in advance.
Ollie is our second-generation information extraction system . Whereas ReVerb operates on flat sequences
of tokens, Ollie works with the tree-like (graph with only small cycles)
representation using Stanford's compression of the dependencies. This allows
Ollie to capture expression that ReVerb misses, such as long-range relations.
Ollie also captures context that modifies a binary relation. Presently Ollie
handles attribution (He said/she believes) and enabling conditions (if X
then).
## Quick Start
### Docker
You can now run Ollie with a single Docker command.
```
docker run -it schmmd/ollie:latest
```
To configure Ollie, you can drop into a bash shell with `docker run -it schmmd/ollie:latest /bin/bash`
and run Ollie from the command line.
### Local Machine
If you want to run Ollie on a small amount of text without modifying the source
code, you can use an executable file that can be run from the command line.
Please note that Ollie was built using Scala 2.9 and so it requires Java 7.
Follow these steps to get started:
1. Download the latest Ollie binary from
http://knowitall.cs.washington.edu/ollie/ollie-app-latest.jar.
2. Download the linear English MaltParser model (engmalt.linear-1.7.mco) from
http://www.maltparser.org/mco/english_parser/engmalt.html
and place it in the same directory as Ollie.
3. Run `java -Xmx512m -jar ollie-app-latest.jar yourfile.txt`. The input file
should contain one sentence per line unless `--split` is specified. Omit
the input file for an interactive console.
## Examples
### Enabling Condition
An enabling condition is a condition that needs to be met for the extraction to
be true. Certain words demark an enabling condition, such as "if" and "when".
Ollie captures enabling conditions if they are present.
sentence: If I slept past noon, I'd be late for work.
extraction: (I; 'd be late for; work)[enabler=If I slept past noon]
### Attribution
An attribution clause specifies an entity that asserted an extraction and a
verb that specifies the expression. Ollie captures attributions if they are
present.
sentence: Some people say Barack Obama was not born in the United States.
extraction: (Barack Obama; was not born in; the United States)[attrib=Some people say]
sentence: Early astronomers believe that the earth is the center of the universe.
extraction: (the earth; is the center of; the universe)[attrib=Early astronomers believe]
### Relational noun
Some relations are expressed without verbs. Ollie can capture these as well as
verb-mediated relations.
sentence: Microsoft co-founder Bill Gates spoke at a conference on Monday.
extraction: (Bill Gates; be co-founder of; Microsoft)
### N-ary extractions
Often times similar relations will specify different aspects of the same event.
Since Ollie captures long-range relations it can capture N-ary extractions by
collapsing extractions where the relation phrase only differs by the
preposition.
sentence: I learned that the 2012 Sasquatch music festival is scheduled for May 25th until May 28th.
extraction: (the 2012 Sasquatch music festival; is scheduled for; May 25th)
extraction: (the 2012 Sasquatch music festival; is scheduled until; May 28th)
nary: (the 2012 Sasquatch music festival; is scheduled; [for May 25th; to May 28th])
## Building
Building Ollie from source requires Apache Maven ().
First, clone or download the Ollie source from GitHub. Run this command in the
top-level source folder to download the required dependencies, compile, and
create a single jar file.
mvn clean package
The compiled class files will be put in the base directory. The single
executable jar file will be written to `ollie-app-VERSION.jar` where `VERSION`
is the version number.
## Command Line Interface
Once you have built Ollie, you can run it from the command line.
java -Xmx512m -jar ollie-app-VERSION.jar yourfile.txt
Omit the input file for an interactive console.
Ollie takes sentences, one-per-line as input or splits text into sentences if
`--split` is specified. Run Ollie with `--usage` to see full usage.
The Ollie command line tool has a few output formats. The output format is
specified by `--output-format` and a valid format:
1. The `interactive` format that is meant to be easily human readable.
2. The `tabbed` format is mean to be easily parsable. A header will be output
as the first row to label the columns.
3. `tabbedsingle` is similar to `tabbed` but the extraction is output as (arg1; relation;
arg2) in a single column.
4. The `serialized` is meant to be fully deserialized into an
`OllieExtractionInstance` class.
## Graphical Interface
Ollie works ontop of a subcomponent called OpenParse. The distinction is
largely technical; OpenParse does not handle attribution and enabling condition
and uses a coarser confidence metric. You can use a GUI application to
visualize the OpenParse extractions in a parse tree. To use it, you will need
to have [graphviz](http://www.graphviz.org/) installed. You can run the GUI
with:
java -Xms512M -Xmx1g -cp ollie-app-VERSION.jar edu.knowitall.openparse.OpenParseGui
By default, this application will look for graphviz's `dot` program at
`/usr/bin/dot`. You can specify a location with the `--graphviz` parameter.
You can try out your own models with `Options->Load Model...`. To see an
example model, look at `openparse.model` in `src/main/resources`. Your model
may have one or more patterns in it. If you want to see pattern matches
(without node expansion) instead of triple extractions, you can choose to show
the raw match with `Options->Raw Matches`. This will allow you to use patterns
that do not capture an arg1, rel, and arg2.
## Parsers
Ollie is packaged to use Malt Parser, one of the fastest dependency parsers
available. You will need the model file (`engmalt.linear-1.7.mco`) in the
directory the application is run from or you will need to specify its location
with the `--malt-model` parameter. Malt Parser models are available online.
http://www.maltparser.org/mco/english_parser/engmalt.html
Ollie works with any other parser in the `nlptools` project. For example, it
is easy to swap out Malt for Stanford's parser. Stanford's parser is not a
part of the Ollie distribution by default because of licensing conflicts, but
the Stanford parser was used as the execution parser for the results in the
paper. Malt Parser was used to bootstrap the patterns. We are interested
in Clear parser as an alternative, but it's not a trivial change because Clear
uses a slightly different dependency representation.
## Using Eclipse
To modify the Ollie source code in Eclipse, use the [M2Eclipse
plugin](http://www.sonatype.org/m2eclipse/) along with
[ScalaIDE](http://scala-ide.org/). You can then import the project using
the following.
File > Import > Existing Maven Projects
## Including Ollie as a Dependency
Add the following as a Maven dependency.
edu.washington.cs.knowitall.ollie
ollie-core_2.9.2
[1.0.0, )
The best way to find the latest version is to browse [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22edu.washington.cs.knowitall%22).
`ollie-core` does not include a way to parse sentences. You will need to use a
parser supplied by the [nlptools](https://github.com/knowitall/nlptools)
project. The source for for `ollie-app` is an excellent example of a project
using `ollie-core` as a dependency. `ollie-app` supplies a parser from
[nlptools](https://github.com/knowitall/nlptools).
There is an example project that uses Ollie in the `example` folder of the
source distribution.
## Training the Confidence Function
While Ollie comes with a trained confidence function, it is possible to retrain
the confidence function. First, you need to run Ollie over a set of sentences
and store the output in the *serialized* format.
echo "Michael rolled down the hill." | java -jar ollie-app-1.0.0-SNAPSHOT.jar --serialized --output toannotate.tsv
Next you need to annotate the extractions. Modify the output file and
**change** the first column to a binary annotation--`1` for correct and `0` for
wrong. Your final file will look similar to `ollie/data/training.tsv`. Now
run the logistic regression trainer.
java -cp ollie-app-1.0.0-SNAPSHOT.jar edu.washington.cs.knowitall.ollie.confidence.train.TrainOllieConfidence toannotate.tsv
## Concurrency
When operating at web scale, parallelism is essential. While the base Ollie
extractor is immutable and thread safe, the parser may not be thread safe. I
do not know whether Malt parser is thread safe.
## FAQ
1. How fast is Ollie?
You should really benchmark Ollie yourself, but on my computer (a new computer in 2011), Ollie processed 5000 high-quality web sentences in 56 seconds, or 89 sentences per second, in a single thread. Ollie is easily parallelizable and the Ollie extractor itself is threadsafe (see Concurrency section).
## Contact
To contact the UW about Ollie, email knowit-ollie@cs.washington.edu.
## Citing Ollie
If you use Ollie in your academic work, please cite Ollie with the following
BibTeX citation:
@inproceedings{ollie-emnlp12,
author = {Mausam and Michael Schmitz and Robert Bart and Stephen Soderland and Oren Etzioni},
title = {Open Language Learning for Information Extraction},
booktitle = {Proceedings of Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CONLL)},
year = {2012}
}
================================================
FILE: app/pom.xml
================================================
4.0.0
edu.washington.cs.knowitall.ollie
ollie-app
ollie-app
1.0.1-SNAPSHOT
edu.washington.cs.knowitall
knowitall-oss
1.0.2
UTF-8
2.4.0
org.scala-lang
scala-swing
2.9.2
edu.washington.cs.knowitall.ollie
ollie-core_2.9.2
1.0.2
edu.washington.cs.knowitall.nlptools
nlptools-parse-malt_2.9.2
${nlptools.version}
edu.washington.cs.knowitall.nlptools
nlptools-parse-stanford_2.9.2
${nlptools.version}
edu.washington.cs.knowitall.nlptools
nlptools-sentence-opennlp_2.9.2
${nlptools.version}
junit
junit
4.11
test
batik
batik-swing
1.6-1
org.specs2
specs2_2.9.2
1.12.3
test
ch.qos.logback
logback-classic
1.0.9
ch.qos.logback
logback-core
1.0.9
src/main/scala
src/test/scala
net.alchim31.maven
scala-maven-plugin
3.1.1
-deprecation
-unchecked
compile
testCompile
maven-assembly-plugin
${project.build.directory}/../..
false
edu.knowitall.ollie.OllieCli
distro-assembly
package
single
================================================
FILE: app/src/main/resources/logback.xml
================================================
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
================================================
FILE: app/src/main/scala/edu/knowitall/ollie/OllieCli.scala
================================================
package edu.knowitall.ollie;
import java.io.File
import java.io.PrintWriter
import java.io.OutputStreamWriter
import java.nio.charset.MalformedInputException
import scala.io.Source
import edu.knowitall.common.Resource.using
import edu.knowitall.ollie.confidence.OllieConfidenceFunction
import edu.knowitall.openparse.OpenParse
import edu.knowitall.tool.parse.MaltParser
import scopt.OptionParser
import edu.knowitall.tool.segment.Segmenter
import edu.knowitall.common.Timing
import edu.knowitall.tool.sentence.OpenNlpSentencer
import java.text.DecimalFormat
import java.net.URL
import edu.knowitall.tool.parse.graph.DependencyGraph
import edu.knowitall.ollie.confidence.OllieFeatureSet
/**
* An entry point to use Ollie on the command line.
*/
object OllieCli {
/** A definition of command line arguments. */
abstract class Settings {
def inputFiles: Option[Seq[File]]
def outputFile: Option[File]
def encoding: String
def modelUrl: URL
def confidenceModelUrl: Option[URL]
def confidenceThreshold: Double
def openparseConfidenceThreshold: Double
def maltModelFile: Option[File]
def parseInput: Boolean
def splitInput: Boolean
def outputFormat: OutputFormat
def parallel: Boolean
def invincible: Boolean
}
sealed abstract class OutputFormat {
def header: Option[String]
def format(conf: Double, extr: OllieExtractionInstance): String
}
object OutputFormat {
val confFormatter = new DecimalFormat("#.###")
def parse(format: String): OutputFormat = {
format.toLowerCase match {
case "interactive" => InteractiveFormat
case "tabbed" => TabbedFormat
case "tabbedsingle" => TabbedSingleColumnFormat
case "serialized" => SerializedFormat
}
}
}
case object InteractiveFormat extends OutputFormat {
def header = None
def format(conf: Double, inst: OllieExtractionInstance): String =
OutputFormat.confFormatter.format(conf) + ": " + inst.extr
}
case object TabbedFormat extends OutputFormat {
def headers = Seq("confidence", "arg1", "rel", "arg2", "enabler", "attribution", "text", "pattern", "dependencies")
def header = Some(headers.mkString("\t"))
def format(conf: Double, inst: OllieExtractionInstance): String =
Iterable(OutputFormat.confFormatter.format(conf),
inst.extr.arg1.text,
inst.extr.rel.text,
inst.extr.arg2.text,
inst.extr.enabler.map(_.text),
inst.extr.attribution.map(_.text),
inst.sent.text,
inst.pat,
inst.sent.serialize).mkString("\t")
}
case object TabbedSingleColumnFormat extends OutputFormat {
def headers = Seq("confidence", "extraction", "enabler", "attribution", "text", "pattern", "dependencies")
def header = Some(headers.mkString("\t"))
def format(conf: Double, inst: OllieExtractionInstance): String =
Iterable(OutputFormat.confFormatter.format(conf),
inst.extr.toString,
inst.extr.enabler.map(_.text),
inst.extr.attribution.map(_.text),
inst.sent.text,
inst.pat,
inst.sent.serialize).mkString("\t")
}
case object SerializedFormat extends OutputFormat {
def header = None
def format(conf: Double, inst: OllieExtractionInstance): String =
OutputFormat.confFormatter.format(conf) + "\t" + inst.extr.toString + "\t" + inst.tabSerialize
}
/** Size to group for parallelism. */
private val CHUNK_SIZE = 10000
def main(args: Array[String]): Unit = {
object settings extends Settings {
var inputFiles: Option[Seq[File]] = None
var outputFile: Option[File] = None
var encoding: String = "UTF-8"
var modelUrl: URL = OpenParse.defaultModelUrl
var confidenceModelUrl: Option[URL] = Some(OllieConfidenceFunction.defaultModelUrl)
var confidenceThreshold: Double = 0.0
var openparseConfidenceThreshold: Double = 0.005
var maltModelFile: Option[File] = None
var parseInput: Boolean = true
var splitInput: Boolean = false
var outputFormat: OutputFormat = InteractiveFormat
var parallel: Boolean = false
var invincible: Boolean = false
var showUsage: Boolean = false
}
// define the argument parser
val argumentParser = new OptionParser("ollie") {
arglistOpt("", "input text file (one sentence per line unless --split is specified)", { path: String =>
val file = new File(path)
require(file.exists, "file does not exist: " + file)
settings.inputFiles = Some(settings.inputFiles.getOrElse(Vector.empty) :+ file)
})
opt(Some("o"), "output", "", "output file (otherwise stdout)", { path: String =>
settings.outputFile = Some(new File(path))
})
opt(Some("e"), "encoding", "", "character encoding (UTF8 by default)", { encoding: String =>
settings.encoding = encoding
})
opt(Some("m"), "model", "", "model file", { path: String =>
val file = new File(path)
require(file.exists, "file does not exist: " + path)
settings.modelUrl = file.toURI.toURL
})
opt(Some("c"), "confidence model", "", "model file", { path: String =>
if (path equalsIgnoreCase "None") {
settings.confidenceModelUrl = None
} else {
val file = new File(path)
require(file.exists, "file does not exist: " + path)
settings.confidenceModelUrl = Some(file.toURI.toURL)
}
})
opt(None, "malt-model", "", "malt model file", { path: String =>
settings.maltModelFile = Some(new File(path))
})
opt("h", "help", "usage information", { settings.showUsage = true })
doubleOpt(Some("t"), "threshold", "", "confidence threshold for Ollie extractor", { t: Double =>
settings.confidenceThreshold = t
})
doubleOpt(None, "openparse-threshold", "", "confidence threshold for OpenParse component", { t: Double =>
settings.openparseConfidenceThreshold = t
})
opt("p", "parallel", "execute in parallel", { settings.parallel = true })
opt("s", "split", "split text into sentences", { settings.splitInput = true })
opt("dependencies", "input is serialized dependency graphs (don't parse)", { settings.parseInput = false })
opt("output-format", "specify output format from {interactive, tabbed, tabbedsingle, serialized}", { s: String => settings.outputFormat = OutputFormat.parse(s) })
opt("ignore-errors", "ignore errors", { settings.invincible = true })
opt("usage", "this usage message", { settings.showUsage = true })
}
if (argumentParser.parse(args)) {
require(!(settings.splitInput && !settings.parseInput), "options 'split' and 'dependencies' are not compatible.")
if (settings.showUsage) {
println()
println("Ollie takes sentences as input, one per line.")
println("The response is \"confidence: extraction\", one extraction per line.")
println(argumentParser.usage)
} else {
try {
run(settings)
}
catch {
case e: MalformedInputException =>
System.err.println("\nError: a MalformedInputException was thrown.\nThis usually means there is a mismatch between what Ollie expects and the input file. Try changing the input file's character encoding to UTF-8 or specifying the correct character encoding for the input file with '--encoding'.\n")
e.printStackTrace()
}
}
}
}
def run(settings: Settings) = {
System.err.println("Loading parser models... ")
val parser = Timing.timeThen {
if (settings.parseInput) {
settings.maltModelFile match {
case None => Some(new MaltParser())
case Some(file) => Some(new MaltParser(file))
}
} else None
} { ns =>
System.err.println(Timing.Seconds.format(ns))
}
System.err.print("Loading ollie models... ")
val ollieExtractor = Timing.timeThen {
val configuration =
new OpenParse.Configuration(
confidenceThreshold = settings.openparseConfidenceThreshold)
val openparse = OpenParse.fromModelUrl(settings.modelUrl, configuration)
new Ollie(openparse)
} { ns =>
System.err.println(Timing.Seconds.format(ns))
}
System.err.print("Loading ollie confidence function... ")
val confFunction = Timing.timeThen {
settings.confidenceModelUrl.map(url => OllieConfidenceFunction.fromUrl(OllieFeatureSet, url))
} { ns =>
System.err.println(Timing.Seconds.format(ns))
}
val sentencer = if (settings.splitInput) {
System.err.println("Prose input split by OpenNlpSentencer.");
Some(new OpenNlpSentencer())
} else {
if (settings.inputFiles.isDefined) {
System.err.println()
System.err.println("WARNING: Each line is expected to be a unique sentence.")
System.err.println("If you want prose to be split into sentences, restart Ollie with --prose.")
}
None
}
using(settings.outputFile match {
case Some(output) => new PrintWriter(output, settings.encoding)
case None => new PrintWriter(new OutputStreamWriter(System.out, settings.encoding))
}) { writer =>
// print headers for output
settings.outputFormat.header match {
case Some(header) => writer.println(header)
case None =>
}
// process a source and output extractions
def processSource(source: Source) {
val ns = Timing.time {
// print prompt if standard input
if (!settings.inputFiles.isDefined) {
System.out.print("> ")
System.out.flush()
}
val lines = parseLines(source.getLines, sentencer) filter (!_.isEmpty)
// group the lines so we can parallelize
val grouped = if (settings.parallel) lines.grouped(CHUNK_SIZE) else lines.map(Seq(_))
for (group <- grouped) {
// potentially transform to a parallel collection
val sentences = if (settings.parallel) group.par else group
for (sentence <- sentences) {
try {
if (settings.outputFormat == InteractiveFormat) {
writer.println(sentence)
writer.flush()
}
// parse the sentence
val graph =
parser.map(_.dependencyGraph(sentence)).getOrElse(DependencyGraph.deserialize(sentence))
// extract sentence and compute confidence
val extrs = ollieExtractor.extract(graph).iterator.map(extr => (confFunction.map(_.getConf(extr)).getOrElse(0.0), extr))
extrs match {
case it if it.isEmpty && settings.outputFormat == InteractiveFormat => writer.println("No extractions found.")
case it if it.isEmpty =>
case extrs => (extrs filter (_._1 >= settings.confidenceThreshold)).toList.sortBy(-_._1).foreach {
case (conf, e) =>
writer.println(settings.outputFormat.format(conf, e))
writer.flush()
}
}
if (settings.outputFormat == InteractiveFormat) {
writer.println()
writer.flush()
}
} catch {
case e: Exception if settings.invincible => e.printStackTrace
}
}
// print prompt if standard input
if (!settings.inputFiles.isDefined) {
System.out.print("> ")
System.out.flush()
}
}
}
System.err.println()
System.err.println("Completed in " + Timing.Seconds.format(ns) + " seconds")
}
settings.inputFiles match {
// single file
case Some(Seq(file)) =>
System.err.println("\nRunning extractor on " + file + "...")
using (Source.fromFile(file, settings.encoding)) { source =>
processSource(source)
}
// multiple files
case Some(files) =>
System.err.println("\nRunning extractor on multiple files...")
val ns = Timing.time {
for ((file, i) <- files.iterator.zipWithIndex) {
System.err.println("Processing file " + file + " (" + (i+1) + "/" + files.size + ")...")
System.err.println()
using(Source.fromFile(file, settings.encoding)) { source =>
processSource(source)
}
}
}
System.err.println("All files completed in " + Timing.Seconds.format(ns) + " seconds")
// standard input
case None =>
System.err.println("\nRunning extractor on standard input...")
processSource(Source.fromInputStream(System.in, settings.encoding))
}
}
}
def parseLines(lines: Iterator[String], sentencer: Option[Segmenter]) = {
sentencer match {
case None => lines
case Some(sentencer) => new SentenceIterator(sentencer, lines.buffered)
}
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/ollie/SentenceIterator.scala
================================================
package edu.knowitall.ollie
import edu.knowitall.tool.segment.Segmenter
class SentenceIterator(sentencer: Segmenter, private var lines: BufferedIterator[String]) extends Iterator[String] {
var sentences: Iterator[String] = Iterator.empty
lines.dropWhile(_.trim.isEmpty)
def nextSentences = {
val (paragraph, rest) = lines.span(!_.trim.isEmpty)
lines = rest.dropWhile(_.trim.isEmpty).buffered
sentencer.segmentTexts(paragraph.mkString(" ")).iterator.buffered
}
def hasNext: Boolean = {
if (sentences.hasNext) {
true
}
else if (!lines.hasNext) {
false
}
else {
sentences = nextSentences
sentences.hasNext
}
}
def next: String = {
if (sentences.hasNext) {
sentences.next()
}
else {
sentences = nextSentences
sentences.next()
}
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/OpenParseCli.scala
================================================
package edu.knowitall.openparse
import java.io.{PrintWriter, File}
import java.net.URL
import scala.collection.Set
import scala.io.Source
import org.slf4j.LoggerFactory
import edu.knowitall.collection.immutable.graph.pattern.Match
import edu.knowitall.collection.immutable.graph.Graph
import edu.knowitall.common.Resource.using
import edu.knowitall.common.Timing
import edu.knowitall.tool.parse.MaltParser
import edu.knowitall.openparse.OpenParse.validMatch
import edu.knowitall.openparse.extract.{TemplateExtractor, PatternExtractorType, PatternExtractor, GeneralExtractor, Extraction, DetailedExtraction}
import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph}
import scopt.OptionParser
object OpenParseCli {
val logger = LoggerFactory.getLogger(this.getClass)
abstract class Settings {
def modelUrl: URL
def outputFile: Option[File]
def sentenceFile: File
def confidenceThreshold: Double
def expandArguments: Boolean
def verbose: Boolean
def parallel: Boolean
def invincible: Boolean
}
def main(args: Array[String]) {
object settings extends Settings {
var modelUrl: URL = OpenParse.defaultModelUrl
var outputFile: Option[File] = None
var sentenceFile: File = null
var confidenceThreshold = 0.0;
var expandArguments: Boolean = true
var verbose: Boolean = false
var parallel: Boolean = false
var invincible: Boolean = false
}
val parser = new OptionParser("openparse-cli") {
arg("sentences", "sentence file", { path: String =>
val file = new File(path)
require(file.exists, "file does not exist: " + path)
settings.sentenceFile = file
})
opt(Some("m"), "model", "", "model file", { path: String =>
val file = new File(path)
require(file.exists, "file does not exist: " + path)
settings.modelUrl = file.toURI.toURL
})
doubleOpt(Some("t"), "threshold", "", "confident threshold for shown extractions", { t: Double => settings.confidenceThreshold = t })
opt("o", "output", "output file (otherwise stdout)", { path => settings.outputFile = Some(new File(path)) })
opt("x", "expand-arguments", "expand extraction arguments", { settings.expandArguments = true })
opt("v", "verbose", "", { settings.verbose = true })
opt("p", "parallel", "", { settings.parallel = true })
opt("invincible", "", { settings.invincible = true })
}
if (parser.parse(args)) {
logger.info("args: " + args.mkString(" "))
run(settings)
}
}
def run(settings: Settings) {
val parser = new MaltParser
def parse(line: String): Option[DependencyGraph] = {
Some(parser.dependencyGraph(line))
}
val other = new OpenParse.Settings {
var modelUrl = settings.modelUrl
var outputFile = settings.outputFile
var sentenceFile = settings.sentenceFile
var confidenceThreshold = settings.confidenceThreshold
val duplicates = false
var expandArguments = settings.expandArguments
val showAll = false
var verbose = settings.verbose
val collapseVB = false
var parallel = settings.parallel
var invincible = settings.invincible
}
OpenParse.run(other, parse)
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/OpenParseGui.scala
================================================
package edu.knowitall.openparse
import java.awt.Cursor
import java.awt.Dimension
import java.io.File
import java.net.URL
import scala.collection.SortedSet
import scala.io.Source
import scala.swing.Action
import scala.swing.BorderPanel
import scala.swing.BorderPanel.Position.Center
import scala.swing.BorderPanel.Position.East
import scala.swing.BorderPanel.Position.North
import scala.swing.BoxPanel
import scala.swing.Button
import scala.swing.ButtonGroup
import scala.swing.CheckMenuItem
import scala.swing.Component
import scala.swing.Dialog
import scala.swing.FileChooser
import scala.swing.FileChooser.Result
import scala.swing.Label
import scala.swing.ListView
import scala.swing.MainFrame
import scala.swing.Menu
import scala.swing.MenuBar
import scala.swing.MenuItem
import scala.swing.Orientation
import scala.swing.RadioMenuItem
import scala.swing.ScrollPane
import scala.swing.Separator
import scala.swing.SimpleSwingApplication
import scala.swing.Slider
import scala.swing.Swing
import scala.swing.TextField
import scala.swing.event.ButtonClicked
import scala.swing.event.SelectionChanged
import scala.swing.event.ValueChanged
import scala.util.control.Exception.catching
import org.apache.batik.swing.JSVGCanvas
import org.apache.batik.swing.svg.JSVGComponent
import edu.knowitall.common.Resource.using
import edu.knowitall.common.Timing.Seconds
import edu.knowitall.common.Timing.time
import edu.knowitall.openparse.eval.Score
import edu.knowitall.openparse.extract.Extraction
import edu.knowitall.openparse.extract.PatternExtractorType
import edu.knowitall.openparse.gui.Dot
import edu.knowitall.openparse.gui.ExtractionEntry
import edu.knowitall.openparse.gui.Parser
import edu.knowitall.openparse.gui.Parser.ParserEnum
import edu.knowitall.openparse.gui.Sentence
import edu.knowitall.tool.parse.DependencyParser
import edu.knowitall.tool.parse.graph.DependencyGraph
import edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException
import edu.knowitall.tool.parse.graph.DependencyGraph.deserialize
import edu.knowitall.tool.parse.graph.DependencyNode
import scopt.OptionParser
import edu.knowitall.ollie.DependencyGraphExtras
import scala.swing.event.KeyPressed
import scala.swing.event.Key
import scala.swing.event.KeyReleased
import edu.knowitall.openparse.eval.GoldSet
object OpenParseGui extends SimpleSwingApplication {
/** Which parser we are using. */
var parser: Option[(Parser.ParserEnum, DependencyParser)] = None
/** Which extractor we are using. */
var extractor: Option[OpenParse] = None
/** Which graph is presently being used. */
var current: Option[DependencyGraph] = None
/** A gold set of annotations. */
var gold: Map[String, Boolean] = Map.empty
/** Which sentences are associated with the slider bar. */
var sentences: Seq[Sentence] = Seq.empty
/** The present sentence index. */
var sentenceIndex = 0;
/** What to perform on a node click in the graph. */
var nodeClickEvent: String=>Unit = (nodeText: String) => Unit
object Settings {
var rawMatches = false
var graphvizFile: Option[File] = None // use PATH by default
var modelUrl: URL = OpenParse.defaultModelUrl
var sentenceFile: Option[File] = None
var confidenceThreshold: Double = 0.0
var goldFile: Option[File] = None
def configuration = new OpenParse.Configuration(confidenceThreshold = this.confidenceThreshold, collapseGraph = false)
}
object Elements {
val scrollBar = new Slider() {
orientation = Orientation.Horizontal
value = 0
min = 0
max = 0
majorTickSpacing = 1
enabled = false
def adjust() = {
if (sentences.size > 1) {
min = 0
max = sentences.size - 1
this.enabled = true
} else {
value = 0
min = 0
max = 0
this.enabled = false
}
}
}
}
override def main(args: Array[String]) = {
val parser = new OptionParser("openparse-gui") {
opt(Some("i"), "input", "", "input file", { v: String => Settings.sentenceFile = Some(new File(v)) })
opt(Some("m"), "model", "", "model file", { v: String => Settings.modelUrl = new File(v).toURI.toURL })
doubleOpt(Some("t"), "threshold", "", "confident threshold for shown extractions", {
t: Double => Settings.confidenceThreshold = t
})
opt(Some("g"), "gold", "", "gold set", { v: String => Settings.goldFile = Some(new File(v)) })
opt(None, "graphviz", "", "path to graphviz", { v: String => Settings.graphvizFile = Some(new File(v)) })
}
if (parser.parse(args)) {
extractor = Some(OpenParse.fromModelUrl(Settings.modelUrl, Settings.configuration))
Settings.goldFile.foreach { goldFile =>
gold = GoldSet.load(goldFile)
}
Settings.sentenceFile.foreach { sentenceFile => loadSentences(sentenceFile) }
super.main(args)
}
}
/** Helper to pop up a dialog to find a file. */
def choose(default: Option[File] = None): Option[File] = {
import FileChooser.Result
val chooser = new FileChooser
default.map(chooser.selectedFile = _)
chooser.showOpenDialog(null) match {
case Result.Approve => Option(chooser.selectedFile)
case Result.Cancel | Result.Error => None
}
}
def chooseSave(default: Option[File] = None): Option[File] = {
import FileChooser.Result
val chooser = new FileChooser
default.map(chooser.selectedFile = _)
chooser.showSaveDialog(null) match {
case Result.Approve => Option(chooser.selectedFile)
case Result.Cancel | Result.Error => None
}
}
def loadParser(parserType: ParserEnum): Unit =
parser = Some(Parser.load(parserType))
def loadParserIfNone(): Unit = parser match {
case Some(parser) => // nothing
case None => loadParser(Parser.default)
}
def readSentences(file: File): Array[Sentence] = {
import DependencyGraph._
// read the sentences
using (Source.fromFile(file)) { source =>
val lines = source.getLines.buffered
val parts = lines.head.split("\t")
// check if any part is deserializable
val graphIndex = parts.iterator.indexWhere { column =>
catching(classOf[SerializationException]).opt {
deserialize(column).collapse
}.isDefined
}
lines.map { line =>
val parts = line.split("\t")
if (graphIndex != -1) {
Sentence.Graph(deserialize(parts(graphIndex)).collapse)
}
else {
Sentence.Text(parts(0))
}
}.toArray
}
}
def loadSentences(): Boolean = {
choose(Settings.sentenceFile) map { file =>
Settings.sentenceFile = Some(file)
loadSentences(Settings.sentenceFile.get)
} match {
case Some(_) => true
case None => false
}
}
def loadSentences(file: File) = {
this.sentences = readSentences(file)
sentenceIndex = 0
Elements.scrollBar.value = 0
Elements.scrollBar.adjust()
}
def loadExtractor(extractorType: Option[PatternExtractorType]) = {
extractor = None
}
def top: MainFrame = new MainFrame {
title = "OpenParse Explorer"
minimumSize = new Dimension(400, 200)
// helper methods
def withCursor(c: java.awt.Cursor)(block: => Unit) =
try {
cursor = c
block
} finally {
cursor = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)
}
def withWaitCursor =
withCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)) _
def orReport(block: =>Unit) =
try {
block
}
catch {
case e => e.printStackTrace; Dialog.showMessage(message = e.toString)
}
def andReport(block: =>Unit) =
try {
block
}
catch {
case e => Dialog.showMessage(message = e.toString); throw e
}
// important ui elements
val button = new Button {
text = "Process"
}
val field = new TextField
val extractionList = new ListView[ExtractionEntry]() {
listenTo(keys)
reactions += {
case KeyPressed(_, Key.Equals, _, _) if this.selection.items.size > 0 =>
val selection = this.selection.items(0)
val item = selection.toString.dropWhile(_ != '(')
gold += item -> true
this.listData = this.listData.map {
case item if item == selection => item.annotate(true)
case other => other
}
case KeyReleased(_, Key.Minus, _, _) if this.selection.items.size > 0 =>
val selection = this.selection.items(0)
val item = selection.toString.dropWhile(_ != '(')
gold += item -> false
this.listData = this.listData.map {
case item if item == selection => item.annotate(false)
case other => other
}
case KeyReleased(_, Key.Space, _, _) if this.selection.items.size > 0 =>
val selection = this.selection.items(0)
val item = selection.toString.dropWhile(_ != '(')
gold += item -> false
this.listData = this.listData.map {
case item if item == selection => item.unannotate
case other => other
}
}
}
val label = new Label()
this.defaultButton = button
def updateDocument(dgraph: DependencyGraph, dot: String) {
val svg = Dot.dot2svg(Settings.graphvizFile, dot)
val doc = Dot.svg2xml(svg, nodeClickEvent)
canvas.setDocument(doc)
OpenParseGui.current = Some(dgraph)
}
def updateDocument(dgraph: DependencyGraph, extr: ExtractionEntry) {
val entry = extractionList.selection.items(0)
val dot = Dot.dotgraph(dgraph, entry)
updateDocument(dgraph, dot)
}
def updateDocument(dgraph: DependencyGraph, nodes: Set[DependencyNode]) {
val dot = Dot.dotgraph(dgraph, nodes)
updateDocument(dgraph, dot)
}
def updateDocument(dgraph: DependencyGraph) {
updateDocument(Sentence.Graph(dgraph))
}
def updateDocument(sentence: Sentence) {
field.text = sentence.toString
val (parseTime, dgraph) = time(parse(sentence))
val (extractTime, extractions) = time(extract(dgraph))
extractionList.listData = extractions
val dot = dgraph.dot("\\n"+dgraph.text)
updateDocument(dgraph, dot)
label.text = sentence match {
case Sentence.Graph(_) => "Input contains dependency graph. Sentence will not be reparsed."
case Sentence.Text(_) =>
parser.map("Parsed using '"+_._2.getClass.getSimpleName+"' in "+Seconds.format(parseTime)+". ").getOrElse {
"No parsers selected."
} +
"Extracted in "+Seconds.format(extractTime)+"."
}
}
val canvas = new JSVGCanvas
canvas.setDocumentState(JSVGComponent.ALWAYS_DYNAMIC)
// menu definition
def menu = {
def parserMenuItem(parserType: ParserEnum) = {
new RadioMenuItem(parserType.toString) {
this.selected = Parser.default == parserType
action = Action(this.text) {
withWaitCursor {
andReport {
loadParser(parserType)
this.selected = true
}
}
}
}
}
def expandMenuItem(display: String, expand: (DependencyGraph,DependencyNode)=>SortedSet[DependencyNode]) = {
new RadioMenuItem(display) {
action = Action(display) {
nodeClickEvent = (nodeText: String) => {
current.map { dgraph =>
withWaitCursor {
dgraph.nodes.find(_.toFullString.startsWith(nodeText)) match {
case Some(node) => updateDocument(dgraph, expand(dgraph, node).toSet)
case None => System.err.println("error: node not found: " + nodeText)
}
}
}
}
}
}
}
new MenuBar {
val parserOptions = Parser.values.map(parserMenuItem(_)).toList
val expandOptions =
List(expandMenuItem("Expand Argument", (dgraph: DependencyGraph, node: DependencyNode)=>
Extraction.expandArgument(dgraph, node, Set())),
expandMenuItem("Expand Relation", (dgraph: DependencyGraph, node: DependencyNode)=>
Extraction.expandRelation(dgraph, node, Set()).head.nodes))
val parserMutex = new ButtonGroup(parserOptions: _*)
val expandMutex = new ButtonGroup(expandOptions: _*)
contents += new Menu("File") {
contents += new MenuItem(Action("Load gold set...") {
withWaitCursor {
choose(Settings.goldFile) match {
case Some(file) =>
gold = GoldSet.load(file)
extractionList.listData = extractionList.listData.map(entry => entry.copy(correct = gold.get(entry.string)))
case None =>
}
}
})
contents += new MenuItem(Action("Save gold set...") {
withWaitCursor {
chooseSave(Settings.goldFile) match {
case Some(file) => GoldSet.save(gold, file)
case None =>
}
}
})
contents += new Separator()
contents += new MenuItem(Action("Search Sentences...") {
withWaitCursor {
val query = Dialog.showInput(null, message="Enter the sentence text to search for.", title="Search Sentences", Dialog.Message.Plain, Swing.EmptyIcon, Seq(), "")
query match {
case Some(query) =>
val index = sentences.indexWhere {
case Sentence.Text(s) => s.contains(query)
case Sentence.Graph(g) => g.text.contains(query)
}
if (index >= 0) {
sentenceIndex = index
Elements.scrollBar.value = index
updateDocument(sentences(index))
}
case None => label.text = "No results found."
}
}
})
contents += new MenuItem(Action("Next Extraction...") {
withWaitCursor {
sentences.zipWithIndex.drop(sentenceIndex).foreach {
case (sentence, index) =>
val dgraph = parse(sentence)
val extractions = extract(dgraph)
if (extractions.size > 0) {
sentenceIndex = index
Elements.scrollBar.value = index
Elements.scrollBar.adjust()
updateDocument(dgraph)
}
}
}
})
contents += new Separator()
contents += new MenuItem(Action("Load Sentences...") {
withWaitCursor {
if (loadSentences()) {
Elements.scrollBar.adjust()
sentences.headOption.map(updateDocument)
}
}
})
contents += new MenuItem(Action("Clear Sentences...") {
sentences = Seq.empty
Elements.scrollBar.adjust
})
contents += new Separator()
contents += new MenuItem(Action("Exit") { exit() })
}
contents += new Menu("Options") {
contents += new CheckMenuItem("Raw Matches") {
selected = Settings.rawMatches
action = Action("Raw Matches") {
if (this.selected) {
Settings.rawMatches = true
} else {
Settings.rawMatches = false
}
}
}
contents += new MenuItem(Action("Switch Voice") {
current.flatMap(dgraph => new DependencyGraphExtras(dgraph).switchVoice.headOption).foreach { dgraph =>
updateDocument(dgraph)
}
})
contents += new Menu("Parser") {
contents ++= parserOptions
}
contents += new Menu("Click") {
contents ++= expandOptions
}
contents += new Separator()
contents += new MenuItem(Action("Load default model") {
extractor = Some(OpenParse.fromModelUrl(OpenParse.defaultModelUrl))
})
contents += new MenuItem(Action("Load model...") {
choose(None) map { file =>
extractor = Some(OpenParse.fromModelFile(file))
}
})
}
}
}
// user interface
val ui = new BorderPanel() {
import BorderPanel.Position._
val panel = new BoxPanel(Orientation.Vertical) {
val input = new BorderPanel {
layout(field) = Center
layout(button) = East
}
contents += input
contents += Swing.VStrut(10)
contents += label
contents += Swing.VStrut(10)
contents += Elements.scrollBar
contents += Swing.VStrut(5)
}
layout(panel) = North
val display = new BoxPanel(Orientation.Horizontal) {
contents += new ScrollPane {
minimumSize = new Dimension(0, Int.MaxValue)
maximumSize = new Dimension(200, Int.MaxValue)
contents = extractionList
}
contents += new Component {
override lazy val peer = canvas
}
}
layout(display) = Center
listenTo(button)
listenTo(extractionList.selection)
listenTo(Elements.scrollBar)
reactions += {
case ButtonClicked(b) =>
withWaitCursor {
if (field.text.trim.length > 0) {
val sentence = Sentence(field.text)
// update state
if (sentences.isEmpty || sentence != sentences(sentenceIndex)) {
sentences = sentences.take(sentenceIndex + 1) :+ sentence
}
Elements.scrollBar.adjust
sentenceIndex = Elements.scrollBar.max
Elements.scrollBar.value = Elements.scrollBar.max
updateDocument(sentence)
}
}
case SelectionChanged(`extractionList`) => {
if (extractionList.listData.size > 0) {
if (extractionList.selection.items.size > 0) {
withWaitCursor {
current.map { dgraph =>
updateDocument(dgraph, extractionList.selection.items(0))
}
}
}
}
}
case ValueChanged(Elements.scrollBar) => if (sentenceIndex != Elements.scrollBar.value) {
withWaitCursor {
if (sentences.indices.contains(Elements.scrollBar.value)) {
sentenceIndex = Elements.scrollBar.value
try {
updateDocument(sentences(sentenceIndex))
}
catch {
case e => e.printStackTrace
}
}
}
}
}
}
contents = ui
menuBar = menu
}
def parse(sentence: Sentence) = {
sentence match {
case Sentence.Text(text) =>
loadParserIfNone()
val dgraph = parser.get._2.dependencyGraph(text).collapse
extractor.map(_.simplifyGraph _) match {
case Some(f) => f(dgraph)
case None => dgraph
}
case Sentence.Graph(dgraph) =>
dgraph
}
}
def extract(dgraph: DependencyGraph) = {
extractor.map { extractor =>
if (!Settings.rawMatches) {
val extractions = for {
(conf, extr) <- extractor.extract(dgraph)
} yield {
new ExtractionEntry(conf, extr, parser.map(_._1).getOrElse(Parser.Deserialize), gold.get(extr.toString))
}
extractions.sortBy(_.confidence).reverse
} else {
val extractions = for {
ex <- extractor.extractors
m <- ex.pattern(dgraph.graph)
} yield {
ExtractionEntry(None, m, m.nodes.toSet, ex, parser.map(_._1).getOrElse(Parser.Deserialize), m.nodes.iterator.map(_.string).mkString(" "), None)
}
extractions.sortBy(_.confidence).reverse
}
}.getOrElse(Seq.empty)
}
def exit() {
System.exit(0)
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/gui/Dot.scala
================================================
package edu.knowitall.openparse.gui
import edu.knowitall.openparse.extract.TemplateExtractor
import edu.knowitall.common.Resource.using
import edu.knowitall.tool.parse.graph.DependencyGraph
import edu.knowitall.tool.parse.graph.DependencyNode
import java.io.IOException
import scala.swing.Dialog
import scala.io.Source
import java.io.InputStream
import java.io.OutputStream
import java.io.PrintWriter
import java.io.File
/** Code pertaining to rendering and converting DOT graphs. */
object Dot {
def dot2svg(graphvizFile: Option[File], dotgraph: String) = {
import sys.process.ProcessIO
trait InputHandler[A] {
def handle(a: A)(input: OutputStream)
}
trait OutputHandler[A] {
def handle(output: InputStream)
def value: A
}
val errHandler = new OutputHandler[String] {
var value: String = null
def handle(out: InputStream) {
value = Source.fromInputStream(out).mkString
out.close()
}
}
val inputHandler = new InputHandler[String] {
def handle(a: String)(os: OutputStream) {
val pw = new PrintWriter(os)
pw write a
pw.close()
}
}
val outputHandler = new OutputHandler[String] {
var value: String = null
def handle(out: InputStream) {
value = Source.fromInputStream(out).mkString
out.close()
}
}
val io = new ProcessIO(inputHandler.handle(dotgraph), outputHandler.handle, errHandler.handle, false)
val process = graphvizFile match {
case Some(file) => sys.process.Process(file.getAbsolutePath, Seq("-T", "svg"))
case None => sys.process.Process("dot", Seq("-T", "svg"))
}
val proc = try (process run io)
catch {
case e: IOException =>
Dialog.showMessage(message = e.getMessage() + ". You may need to install graphviz and add it to the PATH variable, or specify the path to the dot program using the '--graphviz' argument.", messageType = Dialog.Message.Error)
throw e
}
proc.exitValue() match {
case 0 => outputHandler.value
case x => sys.error("Dot exited with error code: " + x + " with output:\n" + errHandler.value)
}
}
def svg2xml(svgString: String, nodeClickEvent: String=>Unit) = {
import org.apache.batik.dom.svg.SVGDOMImplementation;
import org.apache.batik.util.XMLResourceDescriptor
import org.apache.batik.dom.svg.SAXSVGDocumentFactory
val uri = SVGDOMImplementation.SVG_NAMESPACE_URI;
val doc = using(new java.io.StringReader(svgString)) { reader =>
val parser = XMLResourceDescriptor.getXMLParserClassName();
val f = new SAXSVGDocumentFactory(parser);
f.createSVGDocument(uri, reader);
}
val gs = doc.getElementsByTagNameNS(uri, "g")
for (i <- 0 until gs.getLength) {
val g = gs.item(i)
val attributes = g.getAttributes
val clazz = attributes.getNamedItem("class").getNodeValue
if (clazz == "node") {
val children = g.getChildNodes
for (j <- 0 until children.getLength) {
val child = children.item(j)
if (child.getNodeName == "title") {
val text = child.getFirstChild.getNodeValue
import org.w3c.dom.events._
g.asInstanceOf[EventTarget].addEventListener("click",
new EventListener() {
def handleEvent(e: Event) { nodeClickEvent(text) }
},
true);
}
}
}
}
doc
}
def dotgraph(dgraph: DependencyGraph, nodes: Set[DependencyNode]) = {
val nodeStyle = nodes.map((_, "style=filled,color=lightblue"))
dgraph.dot(dgraph.text, nodeStyle.toMap, Map.empty)
}
def dotgraph(dgraph: DependencyGraph, extraction: ExtractionEntry) = {
def originalNodes(nodes: Iterable[DependencyNode]) = nodes.map { node =>
dgraph.nodes.find(_.indices == node.indices).get
}
val title = "\\n" + dgraph.text + "\\n" + extraction.toString + "\\n" + extraction.`match`.pattern.toStringF((s: String) => if (s.length < 60) s else s.take(20) + "...") +
(extraction.extractor match { case ex: TemplateExtractor => "\\n" + ex.template case _ => "" })
// nodes
val darkNodes = extraction.`match`.nodeGroups
val lightNodes = originalNodes(extraction.nodes).toSet -- originalNodes(darkNodes.map(_._2.node))
val filledNodes = (lightNodes zip Stream.continually("style=filled,fillcolor=lightgray")) ++
(darkNodes.map { nodeGroup =>
val style = "style=filled,fillcolor=" + (nodeGroup._1 match {
case "rel" => "salmon1"
case "arg1" | "arg2" => "lightblue"
case "slot0" | "slot1" | "slot2" | "slot3" => "seashell"
case _ => "yellow"
})
(nodeGroup._2.node, style)
})
// edges
val solidEdges = extraction.edges.toSet
val nodeStyle = filledNodes
val edgeStyle = (solidEdges zip Stream.continually("style=filled")) ++
((dgraph.graph.edges.toSet -- solidEdges.toSet) zip Stream.continually("style=dotted,color=gray"))
dgraph.dot(title, nodeStyle.toMap, edgeStyle.toMap)
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/gui/ExtractionEntry.scala
================================================
package edu.knowitall.openparse.gui
import edu.knowitall.collection.immutable.graph.pattern.Match
import edu.knowitall.tool.parse.graph.DependencyNode
import edu.knowitall.openparse.extract.PatternExtractor
import edu.knowitall.openparse.extract.DetailedExtraction
/**
* A more generic representation of an extraction.
*
* This is needed to allow for raw matches, which do
* not have an arg1, rel, etc.
*/
case class ExtractionEntry(
confidence: Option[Double],
`match`: Match[DependencyNode],
nodes: Set[DependencyNode],
extractor: PatternExtractor,
parser: Parser.ParserEnum,
string: String = "",
correct: Option[Boolean]) {
/**
* Convenient constructor for instantiating from
* an OpenParse extraction.
*/
def this(confidence: Double, extraction: DetailedExtraction, parser: Parser.ParserEnum, correct: Option[Boolean] = None) = this(Some(confidence), extraction.`match`, extraction.nodes.toSet, extraction.extractor, parser, extraction.toString, correct)
def edges = `match`.edges
def annotate(correct: Boolean) = this.copy(correct = Some(correct))
def unannotate = this.copy(correct = None)
private def goldString = {
correct match {
case Some(true) => "+ "
case Some(false) => "- "
case None => ""
}
}
override def toString = confidence.map("%1.4f:" format _).getOrElse("") + goldString + string
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/gui/Parser.scala
================================================
package edu.knowitall.openparse.gui
import edu.knowitall.tool.parse.DependencyParser
import edu.knowitall.tool.parse.MaltParser
import edu.knowitall.tool.parse.graph.Dependencies
import edu.knowitall.tool.parse.graph.DependencyGraph
/** An enumerator for parser options */
object Parser extends Enumeration {
type ParserEnum = Value
val Deserialize = Value("Deserialize")
val Stanford = Value("Stanford")
val MaltL = Value("Malt (Linear)")
val MaltPoly = Value("Malt (Poly)")
def default = MaltL
def load(parserType: ParserEnum): (ParserEnum, DependencyParser) = parserType match {
case Parser.Stanford => (parserType, new edu.knowitall.tool.parse.StanfordParser)
case Parser.MaltL => (parserType, new MaltParser())
case Parser.MaltPoly => (parserType, new MaltParser(modelUrl = new java.io.File("engmalt.poly-1.7.mco").toURI.toURL))
case Parser.Deserialize => (parserType, new DependencyParser() {
override def dependencies(input: String) = Dependencies.deserialize(input)
override def dependencyGraph(input: String) = DependencyGraph.deserialize(input)
})
}
}
================================================
FILE: app/src/main/scala/edu/knowitall/openparse/gui/Sentence.scala
================================================
package edu.knowitall.openparse.gui
import scala.util.control.Exception.catching
import edu.knowitall.tool.parse.graph.DependencyGraph
import edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException
import edu.knowitall.tool.parse.graph.DependencyGraph.deserialize
/** A representation of the input sentence. */
sealed abstract class Sentence
object Sentence {
case class Text(text: String) extends Sentence {
override def toString = text
}
case class Graph(dgraph: DependencyGraph) extends Sentence {
override def toString = dgraph.serialize
}
def apply(string: String): Sentence = {
import DependencyGraph._
catching(classOf[SerializationException]).opt {
deserialize(string)
} match {
case Some(dgraph) => Graph(dgraph)
case None => Text(string)
}
}
}
================================================
FILE: app/src/test/resources/logback-test.xml
================================================
%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
================================================
FILE: core/build.sbt
================================================
organization := "edu.washington.cs.knowitall.ollie"
name := "ollie-core"
description := "Wrapper and implementation for extractors of chunked sentences."
version := "1.0.4-SNAPSHOT"
crossScalaVersions := Seq("2.9.2", "2.10.1")
scalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head }
libraryDependencies ++= Seq(
"edu.washington.cs.knowitall.nlptools" %% "nlptools-core" % "2.4.1",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-conf-breeze" % "2.4.1",
"edu.washington.cs.knowitall.nlptools" %% "nlptools-stem-morpha" % "2.4.1",
"org.slf4j" % "slf4j-api" % "1.7.2",
"org.scalaz" %% "scalaz-core" % "7.0.0",
"ch.qos.logback" % "logback-classic" % "1.0.9" % "test",
"ch.qos.logback" % "logback-core" % "1.0.9" % "test",
"junit" % "junit" % "4.11" % "test",
"org.specs2" %% "specs2" % "1.12.3" % "test")
scalacOptions ++= Seq("-unchecked", "-deprecation")
licenses := Seq("Ollie Software License Agreement" -> url("https://raw.github.com/knowitall/ollie/master/LICENSE"))
homepage := Some(url("http://ollie.cs.washington.edu"))
publishMavenStyle := true
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
publishTo <<= version { (v: String) =>
val nexus = "https://oss.sonatype.org/"
if (v.trim.endsWith("SNAPSHOT"))
Some("snapshots" at nexus + "content/repositories/snapshots")
else
Some("releases" at nexus + "service/local/staging/deploy/maven2")
}
pomExtra := (
https://github.com/knowitall/ollie
scm:git://github.com/knowitall/ollie.git
scm:git:git@github.com:knowitall/ollie.git
HEAD
Michael Schmitz
Robert Bart
)
================================================
FILE: core/here.txt
================================================
score conf op-conf yield precision extr enabler attrib sentence dependencies Arg1 Cleanup feature Arg1 comes after arg2 Arg2 comes before Rel Args both start and end with nouns Extr has attribution? Extr has enabledBy? Hyp words near rel If before arg1 and no enabledBy? Noun-Verb-Noun in arg2 OpenParse Confidence Prep in arg2? Prep right after arg2? Prep right before arg1? Rel contains VBD Rel contains VBG Rel contains VBP Rel ends with of Rel head is a communication verb? Rel starts with "be"? Sentence starts with extr? That before rel Vacuous rel+arg2 Verb after arg2?
-1.9474 -0.1342 -0.4772 0.1987 0.3096 0.6941 -0.4802 -2.1688 -0.4579 1.304 0.5695 -0.5616 -0.2119 0.6841 -0.4981 0.5545 -0.2275 -0.8676 -0.5553 0.3185 -0.2083 -1.8374 0.2496
1 0.9446846123114957 1.0 0 1.0 (M and N phenotypes; Rather are exhibited by; heterozygotes)[enabler=since both molecules are present] true false Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . preconj(M_NNP_3_14, both_DT_2_9); cc(M_NNP_3_14, and_CC_4_16); conj(M_NNP_3_14, phenotypes_NNS_6_22); nn(phenotypes_NNS_6_22, N_NNP_5_20); advmod(exhibited_VBN_8_37, Rather_RB_0_0); punct(exhibited_VBN_8_37, ,_,_1_7); nsubjpass(exhibited_VBN_8_37, M_NNP_3_14); auxpass(exhibited_VBN_8_37, are_VBP_7_33); prep(exhibited_VBN_8_37, by_IN_9_47); punct(exhibited_VBN_8_37, ,_,_11_64); advcl(exhibited_VBN_8_37, present_JJ_16_91); punct(exhibited_VBN_8_37, ._._17_99); pobj(by_IN_9_47, heterozygotes_NNS_10_50); det(molecules_NNS_14_77, both_DT_13_72); mark(present_JJ_16_91, since_IN_12_66); nsubj(present_JJ_16_91, molecules_NNS_14_77); cop(present_JJ_16_91, are_VBP_15_87) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9378010670485936 1.0 2 1.0 (The companies; are followed by; at least three analysts) false false The companies are followed by at least three analysts , and had a minimum five-cent change in actual earnings per share . det(companies_NNS_1_4, The_DT_0_0); nsubjpass(followed_VBN_3_18, companies_NNS_1_4); auxpass(followed_VBN_3_18, are_VBP_2_14); prep(followed_VBN_3_18, by_IN_4_27); punct(followed_VBN_3_18, ,_,_9_54); cc(followed_VBN_3_18, and_CC_10_56); conj(followed_VBN_3_18, had_VBD_11_60); punct(followed_VBN_3_18, ._._21_120); pobj(by_IN_4_27, analysts_NNS_8_45); dep(at_IN_5_30, least_JJS_6_33); quantmod(three_CD_7_39, at_IN_5_30); num(analysts_NNS_8_45, three_CD_7_39); dobj(had_VBD_11_60, change_NN_15_84); det(change_NN_15_84, a_DT_12_64); amod(change_NN_15_84, minimum_JJ_13_66); amod(change_NN_15_84, five-cent_JJ_14_74); prep(change_NN_15_84, in_IN_16_91); pobj(in_IN_16_91, earnings_NNS_18_101); amod(earnings_NNS_18_101, actual_JJ_17_94); prep(earnings_NNS_18_101, per_IN_19_110); pobj(per_IN_19_110, share_NN_20_114) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9339431602264946 1.0 3 1.0 (he; was called back from; the loan)[enabler=CSKA qualified for the round of 16 of the UEFA Cup 2008] true false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.9323012325715606 0.7345 4 1.0 (they; played locally throughout; the winter of 2004 and the spring of 2005)[enabler=As the band struggled to find support slots on upcoming tours without the help of a booking agent] true false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.9304226589378597 1.0 5 1.0 (A collection of her art; was displayed by; supporters campaigning to release her) false false A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9304226589378597 1.0 6 1.0 (Terry L. Haines; was elected to; the new position of vice president) false false Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9258278797037348 1.0 7 1.0 (he; was involved in; the building of the 145 m long) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.92215545568493 1.0 8 1.0 (The Dynix corporation; was founded in; 1983) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.92215545568493 1.0 9 1.0 (The song; was recorded in; 2003) false false The song was recorded in 2003 , and was supposed to be included on her third album " Still " , eventually released under the title " More " . det(song_NN_1_4, The_DT_0_0); nsubjpass(recorded_VBN_3_13, song_NN_1_4); auxpass(recorded_VBN_3_13, was_VBD_2_9); prep(recorded_VBN_3_13, in_IN_4_22); punct(recorded_VBN_3_13, ,_,_6_30); cc(recorded_VBN_3_13, and_CC_7_32); conj(recorded_VBN_3_13, supposed_VBN_9_40); punct(recorded_VBN_3_13, ._._29_140); pobj(in_IN_4_22, 2003_CD_5_25); auxpass(supposed_VBN_9_40, was_VBD_8_36); xcomp(supposed_VBN_9_40, included_VBN_12_55); punct(supposed_VBN_9_40, ,_,_20_93); dep(supposed_VBN_9_40, released_VBN_22_106); aux(included_VBN_12_55, to_TO_10_49); auxpass(included_VBN_12_55, be_VB_11_52); prep(included_VBN_12_55, on_IN_13_64); pobj(on_IN_13_64, album_NN_16_77); poss(album_NN_16_77, her_PRP$_14_67); amod(album_NN_16_77, third_JJ_15_71); punct(album_NN_16_77, "_''_17_83); advmod(album_NN_16_77, Still_RB_18_85); punct(album_NN_16_77, "_''_19_91); advmod(released_VBN_22_106, eventually_RB_21_95); prep(released_VBN_22_106, under_IN_23_115); pobj(under_IN_23_115, title_NN_25_125); det(title_NN_25_125, the_DT_24_121); dep(title_NN_25_125, More_JJR_27_133); punct(More_JJR_27_133, "_``_26_131); punct(More_JJR_27_133, "_''_28_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.920853471440541 1.0 10 1.0 (Such fibers; are specialized in; ways that enable them to make use of a steady energy supply) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.9175510420737124 0.3797 10 0.9090909090909091 (you; learned earlier stimulate; the release of saliva)[enabler=when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.9168556659675215 0.9555 11 0.9166666666666666 (The failure in Oakland of the freeway segment; was the deadliest aspect of; the quake)[enabler=although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared] true false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.9555 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9123282402462873 1.0 12 0.9230769230769231 (Capillaries in the brain , heart , kidneys , and liver; are usually filled to; capacity) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9116540315027888 1.0 13 0.9285714285714286 (The incidence of malaria; was greatly diminished by; insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9066414837593882 1.0 14 0.9333333333333333 (Byrom; was born at; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9066414837593882 1.0 15 0.9375 (Guillermo Billinghurst; was overthrown on; February 4 , 1914) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9066414837593882 1.0 16 0.9411764705882353 (Junge; was originally drafted in; the 1999 amateur draft) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9066414837593882 1.0 17 0.9444444444444444 (The Breitling watchmaking company; was founded in; Saint-Imier) false false The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . det(company_NN_3_26, The_DT_0_0); nn(company_NN_3_26, Breitling_NNP_1_4); nn(company_NN_3_26, watchmaking_NN_2_14); nsubjpass(founded_VBN_5_38, company_NN_3_26); auxpass(founded_VBN_5_38, was_VBD_4_34); prep(founded_VBN_5_38, in_IN_6_46); punct(founded_VBN_5_38, ,_,_8_61); cc(founded_VBN_5_38, but_CC_9_63); conj(founded_VBN_5_38, moved_VBD_10_67); punct(founded_VBN_5_38, ._._17_107); pobj(in_IN_6_46, Saint-Imier_NNP_7_49); prep(moved_VBD_10_67, to_TO_11_73); pobj(to_TO_11_73, Grenchen_NNP_12_76); punct(Grenchen_NNP_12_76, ,_,_13_85); appos(Grenchen_NNP_12_76, Canton_NNP_14_87); prep(Canton_NNP_14_87, of_IN_15_94); pobj(of_IN_15_94, Solothurn_NNP_16_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9043904093256648 0.7345 18 0.9473684210526315 (Cordis; sold its pacemaker operations two years ago to; Telectronics Holding Ltd. of Australia) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9043904093256648 0.7345 19 0.95 (He; replaced Jonathan Groff in; the Broadway production of the musical Spring Awakening) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9043904093256648 0.7345 20 0.9523809523809523 (He; replaced Jonathan Groff in; the lead role of Melchior Gabor) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.9034960676137963 0.7345 21 0.9545454545454546 (Sony Columbia Acquisition Corp.; formed for; the Columbia deal)[attrib=a spokesman said] false true Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . nn(Corp._NNP_3_26, Sony_NNP_0_0); nn(Corp._NNP_3_26, Columbia_NNP_1_5); nn(Corp._NNP_3_26, Acquisition_NNP_2_14); punct(Corp._NNP_3_26, ,_,_4_32); nsubj(formed_VBD_5_34, Corp._NNP_3_26); prep(formed_VBD_5_34, for_IN_6_41); punct(formed_VBD_5_34, ,_,_10_63); conj(formed_VBD_5_34, take_VB_13_79); pobj(for_IN_6_41, deal_NN_9_58); det(deal_NN_9_58, the_DT_7_45); nn(deal_NN_9_58, Columbia_NNP_8_49); aux(take_VB_13_79, will_MD_11_65); advmod(take_VB_13_79, formally_RB_12_70); dobj(take_VB_13_79, ownership_NN_14_84); tmod(take_VB_13_79, month_NN_21_125); prep(ownership_NN_14_84, of_IN_15_94); pobj(of_IN_15_94, studio_NN_18_107); det(studio_NN_18_107, the_DT_16_97); nn(studio_NN_18_107, movie_NN_17_101); advmod(month_NN_21_125, later_RB_19_114); det(month_NN_21_125, this_DT_20_120); det(spokesman_NN_24_135, a_DT_23_133); ccomp(said_VBD_25_145, formed_VBD_5_34); punct(said_VBD_25_145, ,_,_22_131); nsubj(said_VBD_25_145, spokesman_NN_24_135); punct(said_VBD_25_145, ._._26_150) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.9029376545659042 1.0 22 0.9565217391304348 (The Dynix corporation; was formed by; the merger of the Sirsi and Dynix corporations) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.8982644762089621 0.7345 22 0.9166666666666666 (hybrid sterility; pseudoobscura results from gene interactions among; at least four loci) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8982644762089621 0.7345 23 0.92 (shareholder Max Grill of New York; charged Imperial , its top executives and directors with; breach of fiduciary duty) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8970518314603465 0.7345 24 0.9230769230769231 (the band; struggled without; the help of a booking agent) false false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8953292670090802 0.9555 25 0.9259259259259259 (Cephalopods; are the only molluscs with; a closed circulatory system which the blood remains separate from fluid in the body cavity) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.894287106087327 1.0 26 0.9285714285714286 (Guillermo Billinghurst; was overthrown in; a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.894287106087327 1.0 27 0.9310344827586207 (Lowery; was elected in; a special election to fill the unexpired term of James Eagan) false false Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . nsubjpass(elected_VBN_2_11, Lowery_NNP_0_0); auxpass(elected_VBN_2_11, was_VBD_1_7); dep(elected_VBN_2_11, 6th_JJ_6_36); prep(elected_VBN_2_11, in_IN_8_45); punct(elected_VBN_2_11, ._._20_109); prep(Mayor_NNP_3_19, on_IN_4_25); pobj(on_IN_4_25, Feburay_NNP_5_28); dep(6th_JJ_6_36, Mayor_NNP_3_19); tmod(6th_JJ_6_36, 2001_CD_7_40); pobj(in_IN_8_45, election_NN_11_58); det(election_NN_11_58, a_DT_9_48); amod(election_NN_11_58, special_JJ_10_50); infmod(election_NN_11_58, fill_VB_13_70); aux(fill_VB_13_70, to_TO_12_67); dobj(fill_VB_13_70, term_NN_16_89); det(term_NN_16_89, the_DT_14_75); amod(term_NN_16_89, unexpired_JJ_15_79); prep(term_NN_16_89, of_IN_17_94); pobj(of_IN_17_94, Eagan_NNP_19_103); nn(Eagan_NNP_19_103, James_NNP_18_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8840751567640979 1.0 28 0.9333333333333333 (Denis C. Smith; was named to; the new post of vice president of world-wide advanced materials operations) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8833999973995464 0.3797 29 0.9354838709677419 (it; completed; the previously announced purchase of Imperial Cup Corp.)[attrib=Federal Paper Board Co. said] false true Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.8832630553504159 1.0 29 0.90625 (Denis C. Smith; was named for; this chemicals concern) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.8832630553504159 1.0 29 0.8787878787878788 (He; was descended an old aristocratic family from Mecklenburg from; the B low family) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8832630553504159 1.0 30 0.8823529411764706 (She; was born in; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.8832630553504159 1.0 30 0.8571428571428571 (The Dynix corporation; was formed in; June 2005) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8790036637975921 0.3797 31 0.8611111111111112 (Researchers; placed; identical samples of organic material) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.875969090413861 1.0 32 0.8648648648648649 (Drop Trio; was asked by; SugarHill Recording Studios) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.875969090413861 1.0 33 0.868421052631579 (the Australian Black Swan; was introduced as; an ornamental waterfowl) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8738004889069181 0.7345 34 0.8717948717948718 (Italy 's unemployment rate; rose to; 12 % of the labor force) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8730819698845458 0.7345 35 0.875 (Vader; got on; the ring apron to distract him) false false As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8730819698845458 0.7345 36 0.8780487804878049 (Lenin; dispatched Stalin to; the city of Tsaritsyn) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8730819698845458 0.7345 37 0.8809523809523809 (he; tapped Connor to serve in; the office of the Texas Secretary of State) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8730819698845458 0.7345 38 0.8837209302325582 (he; received a Master of Arts from; Royal Military College of Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8729267550576569 0.7345 39 0.8863636363636364 (He; came in; 1980) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8729267550576569 0.7345 40 0.8888888888888888 (He; died in; Washington) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8729267550576569 0.7345 41 0.8913043478260869 (He; died on; April 10 , 1907) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8729267550576569 0.7345 42 0.8936170212765957 (Italy 's unemployment rate; rose in; April) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8729267550576569 0.7345 43 0.8958333333333334 (The Skeleton King; later merged with; the demon) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8729267550576569 0.7345 44 0.8979591836734694 (Turner; also starred in; the film) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8714822869067644 0.3797 45 0.9 (researchers; had to carry out; several rounds of DNA cutting) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8710640791017942 1.0 46 0.9019607843137255 (A collection of her art; was displayed at; an exhibition) false false A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8710640791017942 1.0 47 0.9038461538461539 (The incidence of malaria; was greatly diminished in; the 1960s) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8671726583772422 0.7345 48 0.9056603773584906 (The board; expanded to; 17 seats) false false The board expanded to 17 seats . det(board_NN_1_4, The_DT_0_0); nsubj(expanded_VBD_2_10, board_NN_1_4); prep(expanded_VBD_2_10, to_TO_3_19); punct(expanded_VBD_2_10, ._._6_31); pobj(to_TO_3_19, seats_NNS_5_25); num(seats_NNS_5_25, 17_CD_4_22) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8642529189447961 0.9555 49 0.9074074074074074 (Lakitelek; is a large village in; the Southern Great Plain region of southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8642529189447961 0.9555 50 0.9090909090909091 (North Luffenham; is a village in; the East Midlands of England) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8606381067049523 1.0 51 0.9107142857142857 (his birth; was born at; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.8606381067049523 1.0 51 0.8947368421052632 (SirsiDynix; was founded in; 1983) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.860181709202922 1.0 52 0.896551724137931 (he; was hosted by; an anti-Nazi Protestant family whose children had been required to join the Hitler Youth) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8600422350020404 0.0577 53 0.8983050847457628 (paleontologists; Furthermore have found; fossils of dinosaurs)[enabler=although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy] true false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0577 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.856815426256054 0.7345 54 0.9 (Coca-Cola Enterprises; blamed the lower volume on; its soft-drink prices which were about 3 % higher in the third quarter) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.8566696173564037 1.0 54 0.8852459016393442 (The body of an arthropod; is completely covered an exoskeleton constructed from layers of protein by; the cuticle) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8566696173564037 1.0 54 0.8709677419354839 (The body of an arthropod; is completely covered the polysaccharide chitin by; the cuticle) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8566696173564037 1.0 54 0.8571428571428571 (The coldest temperature; be ever recorded in; the city) false false The coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday . det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8550447583474959 0.3797 55 0.859375 (A temperate phage; called; lambda written with the Greek letter) false false A temperate phage called lambda , written with the Greek letter , is widely used in biological research . det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8510550448671066 1.0 55 0.8461538461538461 (unreleased; was asked by; SugarHill Recording Studios) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8475390994633406 0.3797 56 0.8484848484848485 (he; led; the invasion of the Philippines) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8472379362949907 1.0 57 0.8507462686567164 (SirsiDynix; was formed by; the merger of the Sirsi and Dynix corporations) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.847056652054492 1.0 58 0.8529411764705882 (Junge; was originally drafted by; the Los Angeles Dodgers) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8462126651811251 1.0 59 0.855072463768116 (he; was registered as; a CSKA player) false false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8462126651811251 1.0 60 0.8571428571428571 (she; was kidnapped on; January 7 , 2006) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8462126651811251 1.0 61 0.8591549295774648 (he; was hit by; Texas Rangers pitcher C.J. Wilson) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8462126651811251 1.0 62 0.8611111111111112 (he; was traded for; Rickey Henderson , Bert Bradley , and cash) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8462126651811251 1.0 63 0.863013698630137 (SirsiDynix; was formed in; June 2005) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8425716143188683 0.7345 64 0.8648648648648649 (Dominion Textile Inc. holders; adopted a shareholder-rights plan at; the annual meeting) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8405259213434341 0.0416 65 0.8666666666666667 (The certificates; have; an estimated average life of 1.8 years) false false The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8403453643089236 1.0 66 0.868421052631579 (The index which uses a base of 1981 as 100; was calculated at; 140.91 points) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8403453643089236 1.0 67 0.8701298701298701 (The index which uses a base of 1981 as 100; was calculated from; 140.74) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8393867143453748 0.9555 68 0.8717948717948718 (He; was a producer on; several Australian television series) false false He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8349439109076757 0.1473 69 0.8734177215189873 (that nervous reflexes; earlier stimulate; the release of saliva)[enabler=when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.8343102124213516 0.7345 69 0.8625 (he; was during; his innings of 23) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8332152564951584 0.7345 70 0.8641975308641975 (his family; moved to; northwestern Pennsylvania) false false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8332152564951584 0.7345 71 0.8658536585365854 (he; was at; R.Premadasa Stadium) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.8332152564951584 0.7345 71 0.8554216867469879 (prices; closed in; Zurich , Stockholm and Amsterdam) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8332152564951584 0.7345 72 0.8571428571428571 (government; operated Hutt Park Railway in; Petone) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8332152564951584 0.7345 73 0.8588235294117647 (he; completed the year-long course at; the Canadian Forces Command and Staff College) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8305035189003607 1.0 74 0.8604651162790697 (Five million shares; will be offered in; the U.S.) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8303410676804649 0.0416 75 0.8620689655172413 (Root apical meristems; also produce; auxin)[enabler=although the root depends on the shoot for much of its auxin] true false Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.827468041502386 0.7345 76 0.8636363636363636 (Beecher; began collecting fossils from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
1 0.8269534825979009 0.7345 77 0.8651685393258427 (prices; Elsewhere surged for; a second day) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8260213456731965 0.7345 78 0.8666666666666667 (the number of jobless; rose 0.1 % on; a seasonally adjusted basis) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8249346444705182 0.0087 79 0.8681318681318682 (Bruno DeGol; was named; a director of this bank-holding company) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0087 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8221777270905738 0.9555 79 0.8586956521739131 (She; be her husband in; McMillan and McMillan) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8221777270905738 0.9555 79 0.8494623655913979 (She; be her husband in; McMillan and McMillan) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8219185100921349 1.0 80 0.851063829787234 (the 15-year debentures; can be redeemed at; the company 's option)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8219185100921349 1.0 81 0.8526315789473684 (the 15-year debentures; can be redeemed under; certain conditions)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8163015082002283 0.7345 82 0.8541666666666666 (they; played locally in; Southern California)[enabler=As the band struggled to find support slots on upcoming tours without the help of a booking agent] true false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.8142098011724438 1.0 83 0.8556701030927835 (he; was registered on; 12 March 2009) false false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.8131467426837622 0.7345 84 0.8571428571428571 (Greyston Bakery; moved to; a larger facility designed by Maya Lin to accommodate growth) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.812966171857697 1.0 85 0.8585858585858586 (the potentially fatal disease botulism; is caused vegetables by; botulinum toxin) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.8124225561269487 0.3797 85 0.85 (Conn; acquired; most of its stake) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.8122091137989417 0.3797 85 0.8415841584158416 (Disappointment; led to reduce; its 1989 and 1990 earnings estimates) false false Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8122091137989417 0.3797 86 0.8431372549019608 (He; captured; the Parthian capital) false false He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.8122091137989417 0.3797 86 0.8349514563106796 (She; spent; some time) false false She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.8118536542018464 1.0 87 0.8365384615384616 (He; was also featured in; cover articles) false false He was also featured in cover articles for TV Guide and Instinct . nsubjpass(featured_VBN_3_12, He_PRP_0_0); auxpass(featured_VBN_3_12, was_VBD_1_3); advmod(featured_VBN_3_12, also_RB_2_7); prep(featured_VBN_3_12, in_IN_4_21); punct(featured_VBN_3_12, ._._12_65); pobj(in_IN_4_21, articles_NNS_6_30); nn(articles_NNS_6_30, cover_NN_5_24); prep(articles_NNS_6_30, for_IN_7_39); pobj(for_IN_7_39, Guide_NNP_9_46); nn(Guide_NNP_9_46, TV_NN_8_43); cc(Guide_NNP_9_46, and_CC_10_52); conj(Guide_NNP_9_46, Instinct_NNP_11_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8118536542018464 1.0 88 0.8380952380952381 (Junge; was then traded in to; the Philadelphia Phillies) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8099965871661658 0.7345 89 0.839622641509434 (They; consisted of; Hightower , Davis , and three Brickley sisters) false false They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.8030868347515683 1.0 90 0.8411214953271028 (His suspicions; were confirmed in; 1935) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.8030868347515683 1.0 91 0.8425925925925926 (The episode; was written by; Kevin Murphy and Kevin Etten) false false The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.8022295858317585 0.7345 92 0.8440366972477065 (the Roman general Manius Acilius Glabrio; advanced to; Amfissa) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.8014529232437072 1.0 93 0.8454545454545455 (genes; are cloned in; plasmids)[attrib=we can see] false true Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.80110261356372 1.0 94 0.8468468468468469 (the Australian Black Swan; was introduced to; New Zealand) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.798782133398484 1.0 95 0.8482142857142857 (the sunflower hybrid zone; discussed earlier is influenced by; at least 26 chromosome segments) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7976688782716311 0.7345 96 0.8495575221238938 (He; began to practice law in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
1 0.7968768978207308 0.7345 97 0.8508771929824561 (he; returned once again to perform as; a part of a two-hander) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.796650193882776 0.7345 98 0.8521739130434782 (Amuro; returned to solo activities on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 99 0.853448275862069 (Christie; made a splash with; her extraordinary performance) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 100 0.8547008547008547 (He; came to; Tehran) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 101 0.8559322033898306 (Italy 's unemployment rate; rose from; 11.9 %) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 102 0.8571428571428571 (Italy 's unemployment rate; rose in; July) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 103 0.8583333333333333 (The car; has had two revisions since; its inception) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 104 0.859504132231405 (They; formed in; the late 1950s) false false They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 105 0.860655737704918 (WKY; operated from; 1936) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 106 0.8617886178861789 (WKY; operated from; the Skirvin Hotel) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.796650193882776 0.7345 107 0.8629032258064516 (WKY; operated in; downtown Oklahoma City) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7955951719703225 0.7345 108 0.864 (he; helped to lead the Buckeyes to; a national championship) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7955951719703225 0.7345 109 0.8650793650793651 (a Best of compilation album; released on; Columbia Records) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7955951719703225 0.7345 110 0.8661417322834646 (the airline; launched codeshare flights with Lufthansa from; Shanghai) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7955951719703225 0.7345 111 0.8671875 (he; married natural resources attorney Susan Daggett in; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.7955951719703225 0.7345 111 0.8604651162790697 (borrowed spare grilles; left around from; the fourth generation) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7955951719703225 0.7345 112 0.8615384615384616 (borrowed spare grilles; left around in; 1997) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7930485141769201 1.0 113 0.8625954198473282 (he; was hit on; September 1) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7930485141769201 1.0 114 0.8636363636363636 (the Australian Black Swan; was introduced in; 1864) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7930485141769201 1.0 114 0.8571428571428571 (it; was incorrectly indicated in; Thursday 's edition) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7930485141769201 1.0 115 0.8582089552238806 (he; was traded as; a minor-leaguer) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7930485141769201 1.0 116 0.8592592592592593 (he; was traded on; December 5 , 1984) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7924241538907004 1.0 117 0.8602941176470589 (The episode; be directed by; David Grossman) false false The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7916948573799331 0.9555 118 0.8613138686131386 (Wolfowitz 's tenure; was a notable success largely owing to; the fact) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7909563994214776 1.0 119 0.8623188405797102 (the 15-year debentures; can be redeemed after; Nov. 30 , 1992)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7895677009465524 0.0254 120 0.8633093525179856 (The Mount Royal Arena; was an indoor arena at; the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0254 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7882798815544154 0.7345 121 0.8642857142857143 (Researchers; placed identical samples of organic material -- litter -- on; the ground) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.7864523259813375 0.9555 121 0.8581560283687943 (It; is the presence of; internal and external " enemies) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.785157781187319 0.0052 122 0.8591549295774648 (Nero; grew up in; Bedonia and in Milan) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0052 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.7841133351787181 1.0 122 0.8531468531468531 (Each note; is being offered at; maturity) false false Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . det(note_NN_1_5, Each_DT_0_0); nsubjpass(offered_VBN_4_19, note_NN_1_5); aux(offered_VBN_4_19, is_VBZ_2_10); auxpass(offered_VBN_4_19, being_VBG_3_13); prep(offered_VBN_4_19, at_IN_5_27); prep(offered_VBN_4_19, at_IN_13_68); punct(offered_VBN_4_19, ,_,_15_80); xcomp(offered_VBN_4_19, representing_VBG_16_82); punct(offered_VBN_4_19, ._._23_120); pobj(at_IN_5_27, $_$_6_30); num($_$_6_30, 308.32_CD_7_32); prep($_$_6_30, per_IN_8_39); pobj(per_IN_8_39, amount_NN_12_61); dep($_$_9_43, 1,000_CD_10_45); amod(amount_NN_12_61, $_$_9_43); nn(amount_NN_12_61, principal_NN_11_51); pobj(at_IN_13_68, maturity_NN_14_71); dobj(representing_VBG_16_82, yield_NN_20_102); dep(%_NN_19_100, 8_CD_18_98); det(yield_NN_20_102, an_DT_17_95); amod(yield_NN_20_102, %_NN_19_100); prep(yield_NN_20_102, to_TO_21_108); pobj(to_TO_21_108, maturity_NN_22_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7833788418654803 0.0216 123 0.8541666666666666 (The failure in Oakland of the freeway segment; was; the deadliest aspect of the quake) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7827172467868465 0.9555 124 0.8551724137931035 (Ji-an; is a township near; Hualien City) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7827172467868465 0.9555 125 0.8561643835616438 (Lakitelek; is a large village in; Bics-Kiskun county) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7827172467868465 0.9555 126 0.8571428571428571 (North Luffenham; is a village in; Rutland) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7827172467868465 0.9555 127 0.8581081081081081 (Plouzani; is a commune in; northwestern France) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7808625528198313 1.0 128 0.8590604026845637 (Blue Water High; is aired twice on; the local satellite system) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7794905475666135 1.0 128 0.8533333333333334 (the South; were forced into; an inferior status) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7786004111478168 0.3797 128 0.847682119205298 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7756531227056351 0.0155 128 0.8421052631578947 (results; be pseudoobscura among; at least four loci) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7756531227056351 0.0155 129 0.8431372549019608 (Imperial; be charged with; breach of fiduciary duty) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7729679519394232 0.0416 130 0.8441558441558441 (Certain species; have; an especially large impact)[enabler=because they are highly abundant or play a pivotal role in community dynamics] true false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7711522341873792 0.3797 131 0.8451612903225807 (Cordis; sold two years ago; its pacemaker operations) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.7711522341873792 0.3797 131 0.8397435897435898 (Years; met again; Beatrice) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7710605947071337 0.1349 132 0.8407643312101911 (Differentiated cells; generally do not divide in; culture) false false Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . amod(cells_NNS_1_15, Differentiated_JJ_0_0); prep(cells_NNS_1_15, from_IN_2_21); pobj(from_IN_2_21, animals_NNS_3_26); nsubj(divide_VB_7_51, cells_NNS_1_15); advmod(divide_VB_7_51, generally_RB_4_34); aux(divide_VB_7_51, do_VBP_5_44); neg(divide_VB_7_51, not_RB_6_47); prep(divide_VB_7_51, in_IN_8_58); punct(divide_VB_7_51, ,_,_10_69); ccomp(divide_VB_7_51, develop_VB_13_81); punct(divide_VB_7_51, ._._23_136); pobj(in_IN_8_58, culture_NN_9_61); advmod(much_RB_11_71, less_RBR_12_76); advmod(develop_VB_13_81, much_RB_11_71); prep(develop_VB_13_81, into_IN_14_89); pobj(into_IN_14_89, types_NNS_18_112); det(types_NNS_18_112, the_DT_15_94); amod(types_NNS_18_112, multiple_JJ_16_98); nn(types_NNS_18_112, cell_NN_17_107); prep(types_NNS_18_112, of_IN_19_118); pobj(of_IN_19_118, organism_NN_22_127); det(organism_NN_22_127, a_DT_20_121); amod(organism_NN_22_127, new_JJ_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7677924739938856 0.7345 133 0.8417721518987342 (the mining company; posted a 40 % drop in profit for; the nine months) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7677924739938856 0.7345 134 0.8427672955974843 (the airline; launched codeshare flights with Lufthansa in; 2005) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7677924739938856 0.7345 134 0.8375 (researchers; transformed the differentiated cells in; these cases) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7677924739938856 0.7345 134 0.8322981366459627 (researchers; had with; a large genome) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7664526353525477 0.7345 135 0.8333333333333334 (Rome; asked Antiochus III the Great of Syria for; help) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.7623618186281583 0.9555 136 0.8343558282208589 (The Cancer Genome Atlas; is another example of; systems biology which a large group of interacting genes and gene products are analyzed together) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7589786263829497 0.7345 137 0.8353658536585366 (he; dismissed against; the touring nation) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.7589786263829497 0.7345 137 0.8303030303030303 (Jane Bennet; acclaimed miniseries Lost in; Austen) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7587665101893266 0.3797 138 0.8313253012048193 (Gruner + Jahr; exited; the U.S. magazine business) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7587665101893266 0.3797 138 0.8263473053892215 (shareholder Max Grill of New York; charged; Imperial) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7587665101893266 0.3797 139 0.8273809523809523 (he; had; three tackles) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7583399900511701 1.0 140 0.8284023668639053 (she; was kidnapped in; Baghdad) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7583399900511701 1.0 141 0.8294117647058824 (he; was hit on; the hand) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7583399900511701 1.0 142 0.8304093567251462 (he; was traded by; the New York Yankees) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7583399900511701 1.0 143 0.8313953488372093 (he; was traded to; the Oakland Athletics) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7570364553738984 1.0 144 0.8323699421965318 (3.4 million additional shares; will be offered in; the U.S.) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7555412875307439 0.7345 144 0.8275862068965517 (he; appointed as; governors) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7533814384237645 0.3797 145 0.8285714285714286 (Achmat; publicly refused to take; AIDS medications)[enabler=until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy] true false Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7532251863150602 0.7345 146 0.8295454545454546 (He; also met with; Lao and Vietnamese leaders) false false He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7532251863150602 0.7345 147 0.8305084745762712 (He; played eleven seasons as; an outfielder) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7532251863150602 0.7345 148 0.8314606741573034 (He; played eleven seasons in; the majors) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7532251863150602 0.7345 149 0.8324022346368715 (They; headlined in; late 2006) false false They headlined in late 2006 with Saosin and Bleeding Through as supporters . nsubj(headlined_VBD_1_5, They_PRP_0_0); prep(headlined_VBD_1_5, in_IN_2_15); prep(headlined_VBD_1_5, Through_IN_9_53); punct(headlined_VBD_1_5, ._._12_75); pobj(in_IN_2_15, 2006_CD_4_23); amod(2006_CD_4_23, late_JJ_3_18); prep(2006_CD_4_23, with_IN_5_28); pobj(with_IN_5_28, Saosin_NNP_6_33); cc(Saosin_NNP_6_33, and_CC_7_40); conj(Saosin_NNP_6_33, Bleeding_NNP_8_44); dep(Through_IN_9_53, as_IN_10_61); pobj(as_IN_10_61, supporters_NNS_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7519030881345958 0.7345 150 0.8333333333333334 (shareholder Max Grill of New York; charged Imperial , its top executives and directors in; a separate complaint also filed in federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.750546447057629 0.3797 151 0.8342541436464088 (The car; has had; two revisions) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.7497565669216433 0.0086 151 0.8296703296703297 (a Whore; was a co-founder member with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.749327494115084 0.3797 151 0.825136612021858 (2005 Coup; d; 'etat plot) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.748879728343442 0.0416 152 0.8260869565217391 (the hydrogen bonds; Collectively hold together a phenomenon called cohesion; the substance) false false Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.746204714628645 0.9555 152 0.8216216216216217 (the squadron; be an airfield on; Bougainville) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7412433242588633 0.0577 153 0.8225806451612904 (He; was elected; a member of the Alabama House of Representatives) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7401960931883838 0.7345 154 0.8235294117647058 (Riley; re-emerged as; a star) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7401960931883838 0.7345 155 0.824468085106383 (Riley; re-emerged in; the early 2000s) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7401960931883838 0.7345 156 0.8253968253968254 (he; was on; 4) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7401960931883838 0.7345 156 0.8210526315789474 (it; appeared to; Flemming) false false During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . pobj(During_IN_0_0, period_NN_2_11); punct(During_IN_0_0, ._._22_123); det(period_NN_2_11, the_DT_1_7); prep(period_NN_2_11, between_IN_3_18); pobj(between_IN_3_18, division_NN_6_35); num(division_NN_6_35, one_CD_4_26); nn(division_NN_6_35, cell_NN_5_30); cc(division_NN_6_35, and_CC_7_44); conj(division_NN_6_35, next_JJ_9_52); det(next_JJ_9_52, the_DT_8_48); punct(next_JJ_9_52, ,_,_10_57); ccomp(next_JJ_9_52, appeared_VBD_12_62); nsubj(appeared_VBD_12_62, it_PRP_11_59); prep(appeared_VBD_12_62, to_TO_13_71); ccomp(appeared_VBD_12_62, growing_VBG_20_108); pobj(to_TO_13_71, Flemming_NNP_14_74); det(cell_NN_17_92, the_DT_16_88); complm(growing_VBG_20_108, that_IN_15_83); nsubj(growing_VBG_20_108, cell_NN_17_92); aux(growing_VBG_20_108, was_VBD_18_97); advmod(growing_VBG_20_108, simply_RB_19_101); acomp(growing_VBG_20_108, larger_JJR_21_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7401960931883838 0.7345 157 0.8219895287958116 (researchers; transformed the differentiated cells into; ES cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7401960931883838 0.7345 158 0.8229166666666666 (Manager Bill McKechnie; called on; Nuxhall) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7363722315391956 0.0444 159 0.8238341968911918 (He; was elected a member of the Alabama House of Representatives in; 1826) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7363722315391956 0.0444 160 0.8247422680412371 (His regiments; had been decimated in; earlier fighting) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7362263765677146 0.0416 161 0.8256410256410256 (Land snails; play; a key role)[enabler=while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes] true false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7360683474444599 0.0432 162 0.826530612244898 (Byrom; was born in; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0432 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7351868107430106 1.0 163 0.8274111675126904 (him; be decapitated by; the Hyperforce) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7326146164862852 0.3797 164 0.8282828282828283 (Rage; left; Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7326146164862852 0.3797 165 0.8291457286432161 (the American scientist Wendell Stanley; crystallized; the infectious particle now known as tobacco mosaic virus) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7320577633232332 0.7345 166 0.83 (Rage; left Death Row Records after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7311170863177398 0.0444 167 0.8308457711442786 (its efforts begun in 1989; have led to; the introduction of bills to establish evenhanded procedures)[attrib=The group 's Mark Cahoon says] false true The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7305601511181097 0.0216 167 0.8267326732673267 (Cell walls; were; first) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 168 0.8275862068965517 (Greyston Bakery; moved in; 2004) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 169 0.8284313725490197 (Gruner + Jahr; exited the U.S. magazine business in; 2005) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 170 0.8292682926829268 (he; returned once again in; 2008) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 171 0.8300970873786407 (Lenin; dispatched Stalin in; May 1918) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7305053467832321 0.7345 171 0.8260869565217391 (Loral; closed down 37.5 cents in; New York Stock Exchange composite trading) false false In New York Stock Exchange composite trading , Loral closed at $ 33.25 , down 37.5 cents . pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_9_53, In_IN_0_0); punct(closed_VBD_9_53, ,_,_7_45); nsubj(closed_VBD_9_53, Loral_NNP_8_47); prep(closed_VBD_9_53, at_IN_10_60); punct(closed_VBD_9_53, ,_,_13_71); advmod(closed_VBD_9_53, down_RB_14_73); punct(closed_VBD_9_53, ._._17_89); pobj(at_IN_10_60, $_$_11_63); num($_$_11_63, 33.25_CD_12_65); dep(down_RB_14_73, cents_NNS_16_83); num(cents_NNS_16_83, 37.5_CD_15_78) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7305053467832321 0.7345 171 0.8221153846153846 (Knight-Ridder; closed down 37.5 cents in; New York Stock Exchange composite trading) false false In New York Stock Exchange composite trading yesterday , Knight-Ridder closed at $ 51.75 , down 37.5 cents . pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_10_71, In_IN_0_0); tmod(closed_VBD_10_71, yesterday_NN_7_45); punct(closed_VBD_10_71, ,_,_8_55); nsubj(closed_VBD_10_71, Knight-Ridder_NNP_9_57); prep(closed_VBD_10_71, at_IN_11_78); punct(closed_VBD_10_71, ,_,_14_89); advmod(closed_VBD_10_71, down_RB_15_91); punct(closed_VBD_10_71, ._._18_107); pobj(at_IN_11_78, $_$_12_81); num($_$_12_81, 51.75_CD_13_83); dep(down_RB_15_91, cents_NNS_17_101); num(cents_NNS_17_101, 37.5_CD_16_96) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 172 0.8229665071770335 (the number of jobless; rose 0.1 % in; September) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7305053467832321 0.7345 173 0.8238095238095238 (he; married natural resources attorney Susan Daggett on; October 26 , 1997) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7302887378689945 0.7345 173 0.8199052132701422 (the mining company; posted a 40 % drop in profit on; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7302887378689945 0.7345 174 0.8207547169811321 (the number of jobless; rose 0.1 % from; the previous month) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7302887378689945 0.7345 175 0.8215962441314554 (the number of jobless; rose 0.1 % to; 2.5 million) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7302600584980709 0.4031 176 0.822429906542056 (annuals; as are staple food crops including; legumes and cereal grains) false false Many wildflowers are annuals , as are most staple food crops , including legumes and cereal grains such as wheat and rice . amod(wildflowers_NNS_1_5, Many_JJ_0_0); nsubj(annuals_NNS_3_21, wildflowers_NNS_1_5); cop(annuals_NNS_3_21, are_VBP_2_17); punct(annuals_NNS_3_21, ,_,_4_29); appos(annuals_NNS_3_21, crops_NNS_10_55); punct(annuals_NNS_3_21, ._._22_122); advmod(staple_JJ_8_43, most_RBS_7_38); advmod(crops_NNS_10_55, as_RB_5_31); cop(crops_NNS_10_55, are_VBP_6_34); amod(crops_NNS_10_55, staple_JJ_8_43); nn(crops_NNS_10_55, food_NN_9_50); punct(crops_NNS_10_55, ,_,_11_61); prep(crops_NNS_10_55, including_VBG_12_63); pobj(including_VBG_12_63, legumes_NNS_13_73); cc(legumes_NNS_13_73, and_CC_14_81); conj(legumes_NNS_13_73, grains_NNS_16_92); prep(legumes_NNS_13_73, as_IN_18_104); nn(grains_NNS_16_92, cereal_NN_15_85); dep(as_IN_18_104, such_JJ_17_99); pobj(as_IN_18_104, wheat_NN_19_107); cc(wheat_NN_19_107, and_CC_20_113); conj(wheat_NN_19_107, rice_NN_21_117) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7292680217851115 0.0155 177 0.8232558139534883 (its pacemaker operations; be sold two years ago to; Telectronics Holding Ltd. of Australia) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7292680217851115 0.0155 178 0.8240740740740741 (Jonathan Groff; be replaced in; the Broadway production of the musical Spring Awakening) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7292680217851115 0.0155 179 0.8248847926267281 (Jonathan Groff; be replaced in; the lead role of Melchior Gabor) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7292680217851115 0.0155 180 0.8256880733944955 (Stalin; be dispatched to; the city of Tsaritsyn) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7292680217851115 0.0155 181 0.8264840182648402 (a Master of Arts; be received from; Royal Military College of Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.7288884613298925 0.0151 181 0.8227272727272728 (The Skeleton King; later merged in; Dark One) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.728699979239643 0.0067 182 0.8235294117647058 (Lenneth; to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina] true false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.7270291579207211 0.0079 182 0.8198198198198198 (He; died; Washington) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.7264529336979277 1.0 182 0.8161434977578476 (Five million shares; will be offered in; concurrent international offerings) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.7264076234110055 0.0055 182 0.8125 (Byrom; was born on; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0055 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7252808388285222 0.1349 183 0.8133333333333334 (the two companies; could n't agree on; terms of a definitive agreement)[attrib=Clarcor said] false true Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.7244174911479532 0.0052 183 0.8097345132743363 (The water; moved into; a second) false false The water was heated so that some vaporized and moved into a second , higher flask containing the " "atmosphere " " -- a mixture of gases . det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0052 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 1.0
0 0.7243871453208417 0.3797 183 0.8061674008810573 (She; spent some time managing; her son 's jazz group) false false She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7186204373216412 0.3797 184 0.8070175438596491 (he; conquered; the Crissaean plain) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.7186204373216412 0.3797 185 0.8078602620087336 (the Roman general Manius Acilius Glabrio; seized; Lamia) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.7172636808792543 0.3797 186 0.808695652173913 (The issue 's smooth absorption; eased; fears)[attrib=traders said] false true The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7159436441483162 0.3797 187 0.8095238095238095 (small dinosaurs; may have had; difficulty) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.7118177465023502 0.3797 188 0.8103448275862069 (he; received; a Master of Arts) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7115304748211617 0.3797 189 0.8111587982832618 (Amuro; returned to solo; activities) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7115304748211617 0.3797 190 0.811965811965812 (Christie; made; a splash) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.7115304748211617 0.3797 190 0.8085106382978723 (Coca-Cola Enterprises; blamed; the lower volume) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7115304748211617 0.3797 191 0.809322033898305 (He; also scored; the second and decisive try) false false He also scored the second and decisive try against Munster when Tigers retained the cup the following year . nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7115304748211617 0.3797 192 0.810126582278481 (He; reached; the third round) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7115304748211617 0.3797 193 0.8109243697478992 (Singer Bette Midler; won; a $ 400,000 federal court jury verdict) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7113287905531539 0.0416 194 0.8117154811715481 (Macromolecules translocated through the phloem; include; proteins and various types of RNA) false false Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.7101944860312797 0.3797 195 0.8125 (Tigers; retained; the cup) false false He also scored the second and decisive try against Munster when Tigers retained the cup the following year . nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7101944860312797 0.3797 196 0.8132780082987552 (Prince Kitashirakawa; married; Princess Kane-no-Miya Fusako) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7101944860312797 0.3797 197 0.8140495867768595 (Manager Bill McKechnie; called to enter; the game) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7101944860312797 0.3797 198 0.8148148148148148 (the stock; dropped; nearly 19 %) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7101944860312797 0.3797 199 0.8155737704918032 (he; met again; Beatrice) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7098444699714459 0.3797 200 0.8163265306122449 (the Appropriations Committee leadership; turned back; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7082146507227227 0.3797 200 0.8130081300813008 (a large amount of an oxygen-storing protein; called; myoglobin) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.7072668103739835 0.0416 201 0.8137651821862348 (the filtering activities of freshwater bivalves; purify; the waters of streams) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.7045767096027521 0.7345 202 0.8145161290322581 (a brief electrical pulse; applied to; a solution containing cells) false false In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7030152095713891 0.0444 203 0.8152610441767069 (Functional brain imaging; has been applied to; the study of human cognition) false false Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7025491579576496 0.0216 204 0.816 (The Mount Royal Arena; was; an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.7022426277306183 1.0 204 0.8127490039840638 (the potentially fatal disease botulism; is caused vegetables in; another example) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.7018674537112141 0.0191 204 0.8095238095238095 (The water; was heated; higher flask containing the " "atmosphere " " -- a mixture of gases) false false The water was heated so that some vaporized and moved into a second , higher flask containing the " "atmosphere " " -- a mixture of gases . det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.701170771384888 0.1473 205 0.8102766798418972 (the U.S.; can bomb; Tripoli)[enabler=As it now stands] true false As it now stands , the U.S. can bomb Tripoli , but ca n't " assassinate " Colonel Gadhafi . mark(stands_VBZ_3_10, As_IN_0_0); nsubj(stands_VBZ_3_10, it_PRP_1_3); advmod(stands_VBZ_3_10, now_RB_2_6); det(U.S._NNP_6_23, the_DT_5_19); advcl(bomb_VB_8_32, stands_VBZ_3_10); punct(bomb_VB_8_32, ,_,_4_17); nsubj(bomb_VB_8_32, U.S._NNP_6_23); aux(bomb_VB_8_32, can_MD_7_28); dobj(bomb_VB_8_32, Tripoli_NNP_9_37); punct(bomb_VB_8_32, ,_,_10_45); cc(bomb_VB_8_32, but_CC_11_47); conj(bomb_VB_8_32, assassinate_VB_15_60); punct(bomb_VB_8_32, ._._19_90); aux(assassinate_VB_15_60, ca_MD_12_51); neg(assassinate_VB_15_60, n't_RB_13_54); punct(assassinate_VB_15_60, "_``_14_58); punct(assassinate_VB_15_60, "_''_16_72); dobj(assassinate_VB_15_60, Gadhafi_NNP_18_82); nn(Gadhafi_NNP_18_82, Colonel_NNP_17_74) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.7009715957021118 0.3797 206 0.8110236220472441 (Revenue; dropped; 5.4 %) false false Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . nsubj(dropped_VBD_1_8, Revenue_NN_0_0); dobj(dropped_VBD_1_8, %_NN_3_20); prep(dropped_VBD_1_8, to_TO_4_22); prep(dropped_VBD_1_8, from_IN_8_40); punct(dropped_VBD_1_8, ._._12_60); num(%_NN_3_20, 5.4_CD_2_16); pobj(to_TO_4_22, $_$_5_25); number($_$_5_25, 3.48_CD_6_27); number($_$_5_25, billion_CD_7_32); pobj(from_IN_8_40, $_$_9_45); number($_$_9_45, 3.68_CD_10_47); number($_$_9_45, billion_CD_11_52) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.7005550594198744 0.4031 207 0.8117647058823529 (Petone; be a suburb of the city of Lower Hutt in; the Wellington region of New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.700111485477657 0.3797 208 0.8125 (the company; announced; lower-than-forecast sales of Easy Eggs) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.6991064348732651 0.0416 209 0.8132295719844358 (Amoebozoans; include; slime molds) false false Amoebozoans include slime molds , gymnamoebas , and entamoebas . nsubj(include_VBP_1_12, Amoebozoans_NNS_0_0); dobj(include_VBP_1_12, molds_NNS_3_26); punct(include_VBP_1_12, ._._9_63); amod(molds_NNS_3_26, slime_JJ_2_20); punct(molds_NNS_3_26, ,_,_4_32); appos(molds_NNS_3_26, gymnamoebas_NNP_5_34); punct(molds_NNS_3_26, ,_,_6_46); cc(molds_NNS_3_26, and_CC_7_48); advmod(molds_NNS_3_26, entamoebas_RB_8_52) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6988226296797597 0.2444 210 0.813953488372093 (adaptive immunity; offers significant protection against; a wide range of pathogens) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.698781039260481 1.0 211 0.8146718146718147 ($ 100 million issue of collateralized mortgage obligations; is being offered by; a Morgan Stanley group) false false $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.698331924273114 0.1443 212 0.8153846153846154 (food; enters; the oral cavity and orchestrate swallowing)[enabler=when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6949728519048148 0.9555 213 0.8160919540229885 (Dell Curry; is the father of; Stephen Curry) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6921947353265185 1.0 214 0.816793893129771 (he; is prohibited by; takeover regulations)[attrib=Mr. Fournier said] false true Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6920856372671877 0.7345 215 0.8174904942965779 (Chesler; taught one of the first Women 's Studies classes during; the 1969-1970 school year) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0
1 0.6894154719303 0.7345 216 0.8181818181818182 (Hatch; worked as; an Attorney) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6894154719303 0.7345 216 0.8150943396226416 (Hatch; worked at; law) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6894154719303 0.7345 217 0.8157894736842105 (a Best of compilation album; released in; January 2002) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6894154719303 0.7345 218 0.8164794007490637 (the airline; launched codeshare flights with Lufthansa to; Germany) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6894154719303 0.7345 218 0.8134328358208955 (Conn; acquired most of its stake in; an $ 11-a-share tender offer) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6894154719303 0.7345 219 0.8141263940520446 (he; tapped Connor to serve as; the Deputy Secretary) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6894154719303 0.7345 220 0.8148148148148148 (he; received a Master of Arts in; war studies degree) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6879529347056156 0.0216 220 0.8118081180811808 (he; was; a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6875925127628725 0.7345 221 0.8125 (he; went native in; essence) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6871608418210067 0.1473 222 0.8131868131868132 (Social Security benefits; will rise; 4.7 %)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6867309114343867 0.02 223 0.8138686131386861 (Kotte; lay on; the opposite side of the Diyawanna Oya) false false Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6863325222781806 0.3797 223 0.8109090909090909 (hybrid sterility; pseudoobscura; results) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6863325222781806 0.3797 224 0.8115942028985508 (researchers; transformed; the differentiated cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6860679254290757 1.0 225 0.8122743682310469 (he; was involved during; his time) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6852489081587368 1.0 226 0.8129496402877698 (Byrom; is commemorated by; a plaque) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6852489081587368 1.0 227 0.8136200716845878 (The Notre Dame Academy and Convent; is located at; 3501 State Street) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6852489081587368 1.0 228 0.8142857142857143 (The Notre Dame Academy and Convent; is located in; the Florence neighborhood) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6851621109140491 0.0444 229 0.8149466192170819 (He; was elected a member of the Alabama House of Representatives until; 1828) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6851122354728214 0.0216 230 0.8156028368794326 (the climate; was; milder when dinosaurs existed than it is today , it was cool) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6844171600236496 0.0416 231 0.8162544169611308 (primates; have; a large brain and short jaws) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6842661201285292 0.0393 232 0.8169014084507042 (1944 the squadron; was operating from; an airfield at Cape Torokina on Bougainville and from here the squadron began) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6836743744725042 0.1349 233 0.8175438596491228 (Social Security benefits; will rise 4.7 % to keep pace with; inflation)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6814839861060161 1.0 234 0.8181818181818182 (he; is prohibited as; Navigation Mixte chairman)[attrib=Mr. Fournier said] false true Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6814249419026649 0.0195 235 0.818815331010453 (researchers; to carry out; several rounds of DNA cutting) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0195 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6800252840740403 0.7345 235 0.8159722222222222 (the squadron; began taking part in; the air) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0
1 0.6797932006082301 0.0254 236 0.8166089965397924 (The Mount Royal Arena; was an indoor arena in; Montreal) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0254 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6773746556171704 0.0307 237 0.8172413793103448 (They; merely collect campaign contributions from; developers that help keep them in office) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0307 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6756543805538955 0.9555 238 0.8178694158075601 (the share issue; is part of; a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6750917121018809 0.0089 238 0.815068493150685 (She; was born at; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0089 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6747828012049464 0.2444 239 0.8156996587030717 (it; extends finger-like projections into; the surrounding maternal tissue)[enabler=As the trophoblast thickens through cell division] true false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6739752301274893 0.005 239 0.8129251700680272 (She; was born on; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.6738672882427084 0.3797 239 0.8101694915254237 (Rome; asked; Antiochus III) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6738672882427084 0.3797 240 0.8108108108108109 (Rome; was to rule; the Greek cities) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.6734019076491942 0.003 240 0.8080808080808081 (He; was descended from; Mecklenburg) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.672959250624098 1.0 241 0.8087248322147651 (The Edward C. Peters House; be also known as; Ivy Hall) false false The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.672600851247067 0.9555 242 0.8093645484949833 (Lorenzo R. Stone House; is a historic house at; 218 South Street) false false Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.672600851247067 0.9555 243 0.81 (Plouzani; is a commune in; the Finistre department) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6716567794981523 0.7345 244 0.8106312292358804 (a brief electrical pulse; applied in; electroporation) false false In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6702022622188899 1.0 245 0.8112582781456954 (Blue Water High; is aired twice on; Go) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6655282801338094 0.3797 245 0.8085808580858086 (They; called; myoglobin) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.6646039439836912 0.1473 246 0.8092105263157895 (scientists and the public; Therefore must assess; the possible benefits of transgenic products) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6641048085215293 0.0577 247 0.8098360655737705 (The Commodore 64 and 128; had surprised; market researchers) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6635079695655993 0.0216 248 0.8104575163398693 (Wolfowitz 's tenure; was; a notable success) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6635079695655993 0.0216 249 0.8110749185667753 (it; was enough; cool) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6631535112146543 0.1473 250 0.8116883116883117 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6628407065119962 0.1473 251 0.8122977346278317 (the phloem; Thus can serve; a nerve-like function) false false Thus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs . det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6625170270016472 0.0478 251 0.8096774193548387 (He; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6617297258836088 0.0155 252 0.8102893890675241 (Senator Panfilo Lacson; be linked to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6617297258836088 0.0155 253 0.8108974358974359 (Hutt Park Railway; be operated in; Petone) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6617297258836088 0.0155 254 0.8115015974440895 (the year-long course; be completed at; the Canadian Forces Command and Staff College) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.660268730880021 0.0105 254 0.8089171974522293 (the Aetolians; realised; Rome) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6596249234989158 0.0083 255 0.8095238095238095 (Federico Arturo Cordero Salguero; was born in; Rio Piedras) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6596249234989158 0.0083 256 0.810126582278481 (Francesco Sparanero; was born in; San Prospero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6592176164356323 0.1349 257 0.8107255520504731 (Both radial glia and astrocytes; can also act as; stem cells) false false Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6591031256357218 1.0 258 0.8113207547169812 (Blue Water High; is aired twice in; South Africa) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6588559275827122 1.0 259 0.8119122257053292 (3.4 million additional shares; will be offered in; concurrent international offerings) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6577376960677589 0.3797 260 0.8125 (Dhoni; completed; his 4,000 runs) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6577376960677589 0.3797 261 0.8130841121495327 (Dominion Textile Inc. holders; adopted; a shareholder-rights plan) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6577376960677589 0.3797 262 0.8136645962732919 (He; completed; his move) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6577376960677589 0.3797 263 0.8142414860681114 (He; played; eleven seasons) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6577376960677589 0.3797 264 0.8148148148148148 (He; replaced; Jonathan Groff) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6572154096707211 0.1349 265 0.8153846153846154 (the investors; would pay only a symbolic one lira for; the station)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6554307574846172 0.2444 265 0.8128834355828221 (it; that contains at; the time of death) false false However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6534611163450441 0.7345 266 0.8134556574923547 (orders; were up a nominal 5 % before; adjustment) false false Before adjustment for inflation , the association said , orders were up a nominal 5 % . pobj(Before_IN_0_0, adjustment_NN_1_7); prep(adjustment_NN_1_7, for_IN_2_18); pobj(for_IN_2_18, inflation_NN_3_22); det(association_NN_6_38, the_DT_5_34); punct(said_VBD_7_50, ,_,_4_32); nsubj(said_VBD_7_50, association_NN_6_38); punct(said_VBD_7_50, ,_,_8_55); prep(were_VBD_10_64, Before_IN_0_0); parataxis(were_VBD_10_64, said_VBD_7_50); nsubj(were_VBD_10_64, orders_NNS_9_57); advmod(were_VBD_10_64, up_RB_11_69); punct(were_VBD_10_64, ._._16_86); dep(up_RB_11_69, %_NN_15_84); det(%_NN_15_84, a_DT_12_72); amod(%_NN_15_84, nominal_JJ_13_74); num(%_NN_15_84, 5_CD_14_82) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6521819297665553 0.111 267 0.8140243902439024 (Macromolecules; be translocated through; the phloem) false false Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6521819297665553 0.111 268 0.8145896656534954 (The Commodore 64 and 128; be mainly used for; children 's educational software and games) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6502440207966621 0.0155 269 0.8151515151515152 (a shareholder-rights plan; be adopted at; the annual meeting) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6493204702709027 0.0084 270 0.8157099697885196 (It; is; a distinction that satisfies neither side in the debate) false false It is a distinction that satisfies neither side in the debate . nsubj(distinction_NN_3_8, It_PRP_0_0); cop(distinction_NN_3_8, is_VBZ_1_3); det(distinction_NN_3_8, a_DT_2_6); rcmod(distinction_NN_3_8, satisfies_NNS_5_25); punct(distinction_NN_3_8, ._._11_62); nsubj(satisfies_NNS_5_25, that_IN_4_20); dobj(satisfies_NNS_5_25, side_NN_7_43); det(side_NN_7_43, neither_DT_6_35); prep(side_NN_7_43, in_IN_8_48); pobj(in_IN_8_48, debate_NN_10_55); det(debate_NN_10_55, the_DT_9_51) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6493204702709027 0.0084 271 0.8162650602409639 (Umbriatico; is; a comune and town in the province of Crotone , in Calabria , southern Italy) false false Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . cc(comune_JJ_3_16, and_CC_4_23); conj(comune_JJ_3_16, town_NN_5_27); prep(comune_JJ_3_16, in_IN_6_32); pobj(in_IN_6_32, province_NN_8_39); det(province_NN_8_39, the_DT_7_35); prep(province_NN_8_39, of_IN_9_48); pobj(of_IN_9_48, Crotone_NNP_10_51); punct(Crotone_NNP_10_51, ,_,_11_59); prep(Crotone_NNP_10_51, in_IN_12_61); pobj(in_IN_12_61, Calabria_NNP_13_64); nsubj(Italy_NNP_16_84, Umbriatico_NNP_0_0); cop(Italy_NNP_16_84, is_VBZ_1_11); det(Italy_NNP_16_84, a_DT_2_14); ccomp(Italy_NNP_16_84, comune_JJ_3_16); punct(Italy_NNP_16_84, ,_,_14_73); amod(Italy_NNP_16_84, southern_JJ_15_75); punct(Italy_NNP_16_84, ._._17_90) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6485183512827597 0.0057 272 0.8168168168168168 (The Notre Dame Academy and Convent; is located on; the north end of Omaha) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.6483507498113193 0.2444 272 0.8143712574850299 (It; takes encouragement from; one of the schoolboys) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6467374344684111 0.3797 273 0.8149253731343283 (Interspec Inc.; reported; a net loss of $ 2.4 million) false false Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
0 0.6466548160114372 0.0068 273 0.8125 (This method; to produce; cloned animals whose nuclear genes are identical to those of the animal) false false This method is used to produce cloned animals whose nuclear genes are identical to those of the animal supplying the nucleus . det(method_NN_1_5, This_DT_0_0); nsubjpass(used_VBN_3_15, method_NN_1_5); auxpass(used_VBN_3_15, is_VBZ_2_12); xcomp(used_VBN_3_15, produce_VB_5_23); punct(used_VBN_3_15, ._._21_125); aux(produce_VB_5_23, to_TO_4_20); dobj(produce_VB_5_23, animals_NNS_7_38); amod(animals_NNS_7_38, cloned_JJ_6_31); rcmod(animals_NNS_7_38, identical_JJ_12_70); poss(genes_NNS_10_60, whose_WP$_8_46); amod(genes_NNS_10_60, nuclear_JJ_9_52); nsubj(identical_JJ_12_70, genes_NNS_10_60); cop(identical_JJ_12_70, are_VBP_11_66); prep(identical_JJ_12_70, to_TO_13_80); pobj(to_TO_13_80, those_DT_14_83); prep(those_DT_14_83, of_IN_15_89); pobj(of_IN_15_89, animal_NN_17_96); det(animal_NN_17_96, the_DT_16_92); partmod(animal_NN_17_96, supplying_VBG_18_103); dobj(supplying_VBG_18_103, nucleus_JJ_20_117); det(nucleus_JJ_20_117, the_DT_19_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0068 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6458621850395169 1.0 273 0.8100890207715133 (he; is not captured home to; the plantation) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.6423292150313767 0.7345 273 0.8076923076923077 (he; dismissed for; Western Australia) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6423292150313767 0.7345 273 0.8053097345132744 (he; dismissed in; a tour match) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6423292150313767 0.7345 274 0.8058823529411765 (he; looked at; dead cells) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6423292150313767 0.7345 275 0.8064516129032258 (he; looked through; a microscope) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6420628537310177 0.3797 276 0.8070175438596491 (he; lost to Thai; Paradorn Srichaphan) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6420628537310177 0.3797 277 0.8075801749271136 (government; operated; Hutt Park Railway) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6420628537310177 0.3797 277 0.8052325581395349 (he; tapped; Connor) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6420628537310177 0.3797 278 0.8057971014492754 (he; completed; the year-long course) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6418361293595238 0.4031 279 0.8063583815028902 (Bruno DeGol; be chairman of; DeGol Brothers Lumber) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6418361293595238 0.4031 280 0.8069164265129684 (Terry L. Haines; be formerly general manager of; Canadian operations) false false Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6407452027724365 1.0 280 0.8045977011494253 (she; is nominated by; President Bush) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6401619679454134 0.1443 281 0.8051575931232091 (he; expects to name; a new group president to head that operation)[attrib=Mr. Bailey said] false true Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.1443 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6394396276660913 0.0432 282 0.8057142857142857 (his birth; was born in; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0432 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6390235990385105 0.3797 283 0.8062678062678063 (the band; struggled to find; support slots) false false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6348307770777901 0.2444 284 0.8068181818181818 (the carbon-14 that it contains at the time of death; However slowly decays into; another element) false false However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6326329240515012 0.3797 285 0.8073654390934845 (Beecher; began collecting; fossils)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
1 0.630431221182116 0.1443 286 0.807909604519774 (The continuing debate; exemplifies; one of this textbook 's recurring ideas) false false The continuing debate about GMOs in agriculture exemplifies one of this textbook 's recurring ideas : the relationship of science and technology to society . det(debate_NN_2_15, The_DT_0_0); amod(debate_NN_2_15, continuing_VBG_1_4); prep(debate_NN_2_15, about_IN_3_22); pobj(about_IN_3_22, GMOs_NNS_4_28); prep(GMOs_NNS_4_28, in_IN_5_33); pobj(in_IN_5_33, agriculture_NN_6_36); nsubj(exemplifies_VBZ_7_48, debate_NN_2_15); dobj(exemplifies_VBZ_7_48, one_CD_8_60); punct(exemplifies_VBZ_7_48, ._._24_156); prep(one_CD_8_60, of_IN_9_64); punct(one_CD_8_60, :_:_15_100); dep(one_CD_8_60, relationship_NN_17_106); pobj(of_IN_9_64, ideas_NNS_14_94); det(textbook_NN_11_72, this_DT_10_67); possessive(textbook_NN_11_72, 's_POS_12_81); poss(ideas_NNS_14_94, textbook_NN_11_72); amod(ideas_NNS_14_94, recurring_VBG_13_84); det(relationship_NN_17_106, the_DT_16_102); prep(relationship_NN_17_106, of_IN_18_119); prep(relationship_NN_17_106, to_TO_22_145); pobj(of_IN_18_119, science_NN_19_122); cc(science_NN_19_122, and_CC_20_130); conj(science_NN_19_122, technology_NN_21_134); pobj(to_TO_22_145, society_NN_23_148) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1443 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.630282469455543 0.3797 287 0.8084507042253521 (operating profit; declined; 35 %) false false Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . prep(Exclusive_JJ_0_0, of_IN_1_10); pobj(of_IN_1_10, gain_NN_3_17); det(gain_NN_3_17, the_DT_2_13); nn(profit_NN_6_34, operating_NN_5_24); ccomp(declined_VBD_7_41, Exclusive_JJ_0_0); punct(declined_VBD_7_41, ,_,_4_22); nsubj(declined_VBD_7_41, profit_NN_6_34); dobj(declined_VBD_7_41, %_NN_9_53); prep(declined_VBD_7_41, to_TO_10_55); prep(declined_VBD_7_41, from_IN_21_97); punct(declined_VBD_7_41, ._._31_139); num(%_NN_9_53, 35_CD_8_50); pobj(to_TO_10_55, $_$_11_58); number($_$_11_58, 16.4_CD_12_60); number($_$_11_58, million_CD_13_65); punct($_$_11_58, ,_,_14_73); cc($_$_11_58, or_CC_15_75); conj($_$_11_58, cents_NNS_17_81); punct($_$_11_58, ,_,_20_95); num(cents_NNS_17_81, 21_CD_16_78); dep(cents_NNS_17_81, share_NN_19_89); det(share_NN_19_89, a_DT_18_87); pobj(from_IN_21_97, $_$_22_102); number($_$_22_102, 25.2_CD_23_104); number($_$_22_102, million_CD_24_109); punct($_$_22_102, ,_,_25_117); cc($_$_22_102, or_CC_26_119); conj($_$_22_102, cents_NNS_28_125); num(cents_NNS_28_125, 31_CD_27_122); dep(cents_NNS_28_125, share_NN_30_133); det(share_NN_30_133, a_DT_29_131) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.630282469455543 0.3797 288 0.8089887640449438 (the mining company; posted; a 40 % drop) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.630282469455543 0.3797 289 0.8095238095238095 (the airline; launched; codeshare flights) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.630282469455543 0.3797 290 0.8100558659217877 (the number of jobless; rose; 0.1 %) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6301853387464892 0.0155 291 0.8105849582172702 (the lower volume; be blamed on; its soft-drink prices which were about 3 % higher in the third quarter) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.629727135069219 0.0416 291 0.8083333333333333 (Populations of all species; have; the potential) false false Populations of all species have the potential to expand greatly when resources are abundant . prep(Populations_NNS_0_0, of_IN_1_12); pobj(of_IN_1_12, species_NNS_3_19); det(species_NNS_3_19, all_DT_2_15); nsubj(have_VBP_4_27, Populations_NNS_0_0); dobj(have_VBP_4_27, potential_JJ_6_36); punct(have_VBP_4_27, ._._14_92); det(potential_JJ_6_36, the_DT_5_32); xcomp(potential_JJ_6_36, expand_VB_8_49); aux(expand_VB_8_49, to_TO_7_46); advmod(expand_VB_8_49, greatly_RB_9_56); advcl(expand_VB_8_49, abundant_JJ_13_83); advmod(abundant_JJ_13_83, when_WRB_10_64); nsubj(abundant_JJ_13_83, resources_NNS_11_69); cop(abundant_JJ_13_83, are_VBP_12_79) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.629727135069219 0.0416 292 0.8088642659279779 (The data; support; the hypothesis) false false The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6282102506752052 0.0416 292 0.8066298342541437 (aquaporin channels; allow to cross; the epithelium) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6280293622098216 0.0055 292 0.8044077134986226 (his birth; was born on; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0055 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6264160448732808 0.9555 292 0.8021978021978022 (the squadron; be an airfield at; Cape Torokina) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.626406871283665 0.0307 293 0.8027397260273973 (Most coastal scyphozoans; go as; small polyps) false false Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.626406871283665 0.0307 294 0.8032786885245902 (Most coastal scyphozoans; go through; a stage) false false Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6260007085325703 0.0444 295 0.8038147138964578 (you; Now 've learned about; restriction enzymes and DNA ligase)[attrib=we can see] false true Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0444 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6244380763448595 0.3797 296 0.8043478260869565 (Turner; also starred portraying; a young woman whose friends help her find a new girlfriend , Ely ,) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6225063307930305 0.0125 297 0.8048780487804879 (The index; uses a base of 1981 as; 100) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6212491480811011 0.0084 298 0.8054054054054054 (The other major communication and control system; is; the nervous system) false false The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6212056639174542 0.0022 299 0.8059299191374663 (Certain species; be an especially large impact on; the structure of entire communities) false false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0022 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6206275727578635 0.0132 300 0.8064516129032258 (a symbolic one lira; would be pay for; the station)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6198680020445336 0.7345 301 0.806970509383378 (it; added $ 121 million for; losses)[attrib=The Phoenix-based holding company said] false true The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.6198680020445336 0.7345 302 0.8074866310160428 (it; added $ 121 million to; its allowance)[attrib=The Phoenix-based holding company said] false true The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.6187149953668409 0.2444 302 0.8053333333333333 (the blood supply; varies as; blood) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6174359386153582 0.1473 302 0.8031914893617021 (Scorpio sales; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.6174359386153582 0.1473 302 0.8010610079575596 (it; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6171051919707703 0.1473 303 0.8015873015873016 (we; Later this chapter will also examine; factors) false false Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . dep(Later_RB_0_0, in_IN_1_6); pobj(in_IN_1_6, chapter_NN_3_14); det(chapter_NN_3_14, this_DT_2_9); advmod(examine_VB_8_37, Later_RB_0_0); punct(examine_VB_8_37, ,_,_4_22); nsubj(examine_VB_8_37, we_PRP_5_24); aux(examine_VB_8_37, will_MD_6_27); advmod(examine_VB_8_37, also_RB_7_32); advmod(examine_VB_8_37, how_WRB_9_45); punct(examine_VB_8_37, ,_,_17_79); dobj(examine_VB_8_37, factors_NNS_18_81); punct(examine_VB_8_37, ._._42_229); dep(how_WRB_9_45, all_DT_10_49); prep(all_DT_10_49, of_IN_11_53); punct(all_DT_10_49, ,_,_14_67); cc(all_DT_10_49, or_CC_15_69); conj(all_DT_10_49, living_VBG_16_72); pobj(of_IN_11_53, biotic_JJ_13_60); det(biotic_JJ_13_60, the_DT_12_56); dep(factors_NNS_18_81, organisms_NNS_22_102); punct(organisms_NNS_22_102, --_:_19_89); det(organisms_NNS_22_102, the_DT_20_92); amod(organisms_NNS_22_102, other_JJ_21_96); rcmod(organisms_NNS_22_102, part_NN_25_121); punct(organisms_NNS_22_102, --_:_31_158); dep(organisms_NNS_22_102, influence_NN_33_171); nsubj(part_NN_25_121, that_WDT_23_112); cop(part_NN_25_121, are_VBP_24_117); prep(part_NN_25_121, of_IN_26_126); pobj(of_IN_26_126, environment_NN_30_146); det(individual_NN_28_132, an_DT_27_129); possessive(individual_NN_28_132, 's_POS_29_143); poss(environment_NN_30_146, individual_NN_28_132); advmod(influence_NN_33_171, similarly_RB_32_161); dep(influence_NN_33_171, distribution_NN_35_185); det(distribution_NN_35_185, the_DT_34_181); cc(distribution_NN_35_185, and_CC_36_198); conj(distribution_NN_35_185, abundance_NN_37_202); prep(distribution_NN_35_185, on_IN_40_220); prep(abundance_NN_37_202, of_IN_38_212); pobj(of_IN_38_212, life_NN_39_215); pobj(on_IN_40_220, Earth_NNP_41_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6161804172013395 0.1443 304 0.8021108179419525 (He; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6161804172013395 0.1443 305 0.8026315789473685 (his father; However betrays; his whereabouts) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6140102483147367 0.0477 305 0.800524934383202 (pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility between; two subspecies of the fruit fly Drosophila) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6138541947112091 0.4031 306 0.8010471204188482 (the nervous system; be a network of; specialized cells) false false The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6136573404015875 0.0155 307 0.8015665796344648 (Antiochus III; be asked for; help) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6132773710699799 0.1349 308 0.8020833333333334 (Action potentials; can therefore spread along; axons) false false Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6132773710699799 0.1349 309 0.8025974025974026 (He; will succeed Arthur E. Himebaugh as; general manager) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6128955555409064 1.0 310 0.8031088082901554 (his birth; is commemorated by; a plaque) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6113307943068114 0.1349 311 0.8036175710594315 (a freely mating population; will give rise to; a uniform population of individuals) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.6111644575327525 0.1349 312 0.8041237113402062 (management; would recommend to; its board)[attrib=CMS ENERGY Corp. said] false true CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6087751192587815 0.0216 313 0.8046272493573264 (Carroll; became; an international cause clbre) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
1 0.6078845816228985 0.3797 314 0.8051282051282052 (the band; reached; a wider audience supporting U.S. goth-metal act Type O Negative) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6078845816228985 0.3797 315 0.8056265984654731 (he and his students; spent; several decades observing these bees) false false Using glass-walled observation hives , he and his students spent several decades observing these bees . dobj(Using_VBG_0_0, hives_NNS_3_31); amod(hives_NNS_3_31, glass-walled_JJ_1_6); nn(hives_NNS_3_31, observation_NN_2_19); cc(he_PRP_5_39, and_CC_6_42); conj(he_PRP_5_39, students_NNS_8_50); poss(students_NNS_8_50, his_PRP$_7_46); dep(spent_VBD_9_59, Using_VBG_0_0); punct(spent_VBD_9_59, ,_,_4_37); nsubj(spent_VBD_9_59, he_PRP_5_39); dobj(spent_VBD_9_59, decades_NNS_11_73); punct(spent_VBD_9_59, ._._15_102); amod(decades_NNS_11_73, several_JJ_10_65); partmod(decades_NNS_11_73, observing_VBG_12_81); dobj(observing_VBG_12_81, bees_NNS_14_97); det(bees_NNS_14_97, these_DT_13_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6072736370517114 0.0216 316 0.8061224489795918 (He; was; a producer) false false He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6072072387942423 0.7345 317 0.806615776081425 (Riley; re-emerged after; a hiatus) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6072072387942423 0.7345 318 0.8071065989847716 (the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad; were amongst; his victims) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.6072072387942423 0.7345 318 0.8050632911392405 (he; had during; his freshman year) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6072072387942423 0.7345 319 0.8055555555555556 (Hatch; worked for; fourteen years) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6064958806339743 0.0191 320 0.8060453400503779 (Cordero; was born; Federico Arturo Cordero Salguero) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.6064958806339743 0.0191 321 0.8065326633165829 (Nero; was born; Francesco Sparanero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.6062667449433333 0.0416 321 0.8045112781954887 (a large amount of an oxygen-storing protein; have; many mitochondria) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.6061945575127506 0.111 322 0.805 (an indoor arena; be located at; the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6060486407224099 0.0057 323 0.8054862842892768 (he; was involved of; the 145 m long) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6059686076427026 0.2444 324 0.8059701492537313 (Lenneth; tells him to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina] true false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.6040734781624321 0.1443 325 0.8064516129032258 (A myelinated axon; has; a conduction speed) false false A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . det(axon_NN_2_13, A_DT_0_0); amod(axon_NN_2_13, myelinated_JJ_1_2); dep(axon_NN_2_13, m_NN_4_21); num(m_NN_4_21, 20_CD_3_18); prep(m_NN_4_21, in_IN_5_23); pobj(in_IN_5_23, diameter_NN_6_26); nsubj(has_VBZ_7_35, axon_NN_2_13); dobj(has_VBZ_7_35, speed_NN_10_52); advmod(has_VBZ_7_35, faster_RBR_11_58); punct(has_VBZ_7_35, ._._25_130); det(speed_NN_10_52, a_DT_8_39); nn(speed_NN_10_52, conduction_NN_9_41); dep(faster_RBR_11_58, than_IN_12_65); pobj(than_IN_12_65, that_DT_13_70); prep(that_DT_13_70, of_IN_14_75); pobj(of_IN_14_75, axon_NN_18_92); det(axon_NN_18_92, a_DT_15_78); amod(axon_NN_18_92, squid_JJ_16_80); amod(axon_NN_18_92, giant_JJ_17_86); prep(axon_NN_18_92, with_IN_19_97); pobj(with_IN_19_97, diameter_NN_21_104); det(diameter_NN_21_104, a_DT_20_102); dep(diameter_NN_21_104, greater_JJR_24_122); number(times_NNS_23_116, 40_CD_22_113); num(greater_JJR_24_122, times_NNS_23_116) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6040734781624321 0.1443 326 0.806930693069307 (Animal reproduction; however takes; many forms) false false Animal reproduction , however , takes many forms . amod(reproduction_NN_1_7, Animal_JJ_0_0); nsubj(takes_VBZ_5_32, reproduction_NN_1_7); punct(takes_VBZ_5_32, ,_,_2_20); advmod(takes_VBZ_5_32, however_RB_3_22); punct(takes_VBZ_5_32, ,_,_4_30); dobj(takes_VBZ_5_32, forms_NNS_7_43); punct(takes_VBZ_5_32, ._._8_49); amod(forms_NNS_7_43, many_JJ_6_38) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.6040734781624321 0.1443 327 0.8074074074074075 (The metal products concern; currently has; 7.2 million common shares outstanding) false false The metal products concern currently has 7.2 million common shares outstanding . det(concern_NN_3_19, The_DT_0_0); nn(concern_NN_3_19, metal_NN_1_4); nn(concern_NN_3_19, products_NNS_2_10); nsubj(has_VBZ_5_37, concern_NN_3_19); advmod(has_VBZ_5_37, currently_RB_4_27); dobj(has_VBZ_5_37, shares_NNS_9_60); punct(has_VBZ_5_37, ._._11_79); number(million_CD_7_45, 7.2_CD_6_41); num(shares_NNS_9_60, million_CD_7_45); amod(shares_NNS_9_60, common_JJ_8_53); amod(shares_NNS_9_60, outstanding_JJ_10_67) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.6038210796438683 0.0155 327 0.8054187192118226 (miniseries Lost; be acclaimed in; Austen) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6038210796438683 0.0155 328 0.8058968058968059 (his move; be completed for; an undisclosed fee) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6038210796438683 0.0155 329 0.8063725490196079 (his move; be completed on; a two-year deal) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6038210796438683 0.0155 330 0.8068459657701712 (codeshare flights; be launched from; Shanghai) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6038210796438683 0.0155 331 0.8073170731707318 (natural resources attorney Susan Daggett; be married in; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6029785225890165 0.0128 332 0.8077858880778589 (prices; were broadly lower in; Milan , Paris and Brussels) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0128 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6017224575651481 0.0393 333 0.808252427184466 (the Reds; trailing 13-0 in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.6014478796460334 0.0079 334 0.8087167070217918 (he; married natural resources attorney Susan Daggett; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.6007912803652483 0.0058 335 0.8091787439613527 (a Best of compilation album; be released in; Columbia Records) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0058 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5980787835722664 0.0216 336 0.8096385542168675 (most of the people; were; young men) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5976379426356158 0.0307 337 0.8100961538461539 (I; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 1.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.5976379426356158 0.0307 337 0.8081534772182254 (Tivoli Motel; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 1.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.5951137499313156 0.0416 338 0.8086124401913876 (the hydrogen bonds; Collectively hold the substance together; a phenomenon called cohesion) false false Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5937789397514918 0.0724 339 0.8090692124105012 (Greatest Hits; is a Best of compilation album by; Will Smith) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5918700809054647 0.0079 340 0.8095238095238095 (fossils; be collecting from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5918436056751626 0.0105 340 0.8076009501187649 (borrowed spare grilles; left around; The car) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5916538187221042 0.0191 340 0.8056872037914692 (The body of an arthropod; is completely covered; an exoskeleton constructed from layers of protein and the polysaccharide chitin) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5916538187221042 0.0191 340 0.8037825059101655 (The term sensory receptor; is used; the subcellular structure that interacts directly with stimuli) false false The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5907692685308328 0.0416 341 0.8042452830188679 (They; have; many mitochondria) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.5907127919780193 0.0132 342 0.8047058823529412 (a song; Also to be record in; 2003) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5907127919780193 0.0132 343 0.8051643192488263 (the possible benefits of transgenic products; Therefore must be assess on; a case-by-case basis) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5897937457611827 0.0132 344 0.8056206088992974 (a song; Also to be record for; an upcoming compilation CD to be released by the studio) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0132 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5886303995215769 0.0066 344 0.8037383177570093 (heart; be Capillaries in; the brain) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5886303995215769 0.0066 344 0.8018648018648019 (kidneys; be Capillaries in; the brain) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5882785665298204 0.0084 345 0.8023255813953488 (A seed; is; an embryo packaged with a supply of nutrients inside a protective coat) false false A seed is an embryo packaged with a supply of nutrients inside a protective coat . det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5880793611284831 0.0478 346 0.802784222737819 (we; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5878607445626668 0.3797 347 0.8032407407407407 (Chesler; taught; one of the first Women 's Studies classes) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0
1 0.5876593463232525 0.2444 348 0.8036951501154734 (G. Vogel and C. Holden; leaps forward with; new stem cell advances) false false G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224-1225 . nn(Vogel_NNP_1_3, G._NNP_0_0); cc(Vogel_NNP_1_3, and_CC_2_9); conj(Vogel_NNP_1_3, Holden_NNP_4_16); punct(Vogel_NNP_1_3, ,_,_5_23); appos(Vogel_NNP_1_3, Field_NNP_6_25); nn(Holden_NNP_4_16, C._NNP_3_13); nsubj(leaps_VBZ_7_31, Vogel_NNP_1_3); advmod(leaps_VBZ_7_31, forward_RB_8_37); prep(leaps_VBZ_7_31, with_IN_9_45); punct(leaps_VBZ_7_31, ._._17_97); pobj(with_IN_9_45, advances_NNS_13_64); amod(advances_NNS_13_64, new_JJ_10_50); nn(advances_NNS_13_64, stem_NN_11_54); nn(advances_NNS_13_64, cell_NN_12_59); punct(advances_NNS_13_64, ,_,_14_73); appos(advances_NNS_13_64, Science_NNP_15_75); num(Science_NNP_15_75, 318:1224-1225_CD_16_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5876593463232525 0.2444 349 0.804147465437788 (He; increases the board to; seven) false false He increases the board to seven . nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5876593463232525 0.2444 349 0.8022988505747126 (The first step; is from; the species being studied) false false The first step after sequencing the molecules is to align comparable sequences from the species being studied . det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5860187736032265 0.0478 350 0.8027522935779816 (Battaramulla; has always been an adjunct to; Kotte) false false Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5860181913612569 0.3797 351 0.8032036613272311 (He; began to practice; law) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 352 0.8036529680365296 (She; has practiced law with; Berry) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 353 0.8041002277904328 (She; has practiced law with; Conners) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 354 0.8045454545454546 (She; has practiced law with; Cummings) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 355 0.8049886621315193 (She; has practiced law with; Berry) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 356 0.8054298642533937 (She; has practiced law with; Conners) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5849427702308576 0.0444 357 0.8058690744920993 (She; has practiced law with; Cummings) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5829095199098192 0.3797 358 0.8063063063063063 (he; helped to lead; the Buckeyes) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5829095199098192 0.3797 359 0.8067415730337079 (Lenin; dispatched; Stalin) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5829095199098192 0.3797 360 0.8071748878923767 (he; married; natural resources attorney Susan Daggett) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5829095199098192 0.3797 361 0.8076062639821029 (Strachan; entered; the World Gurning competition) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5827155897889873 0.0478 362 0.8080357142857143 (populations; are now common on; larger coastal or inland lakes) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5823301823411546 0.0416 363 0.8084632516703786 (They; merely collect; campaign contributions) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5807484001086229 0.0416 363 0.8066666666666666 (their kidneys; have; small glomeruli or lack glomeruli) false false In addition , their kidneys have small glomeruli or lack glomeruli entirely . pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5788234976971409 0.0314 364 0.8070953436807096 (organisms; be interact with; each other and with the physical environment) false false The upper layers of the soil , from which plants absorb nearly all of the water and minerals they require , contain a wide range of living organisms that interact with each other and with the physical environment . det(layers_NNS_2_10, The_DT_0_0); amod(layers_NNS_2_10, upper_JJ_1_4); prep(layers_NNS_2_10, of_IN_3_17); punct(layers_NNS_2_10, ._._38_213); pobj(of_IN_3_17, soil_NN_5_24); det(soil_NN_5_24, the_DT_4_20); punct(soil_NN_5_24, ,_,_6_29); prep(soil_NN_5_24, from_IN_7_31); pobj(from_IN_7_31, which_WDT_8_36); dep(from_IN_7_31, plants_NNS_9_42); dep(plants_NNS_9_42, all_DT_12_63); punct(plants_NNS_9_42, ,_,_20_106); conj(plants_NNS_9_42, contain_VBP_21_108); cop(all_DT_12_63, absorb_VBP_10_49); advmod(all_DT_12_63, nearly_RB_11_56); prep(all_DT_12_63, of_IN_13_67); pobj(of_IN_13_67, water_NN_15_74); det(water_NN_15_74, the_DT_14_70); cc(water_NN_15_74, and_CC_16_80); conj(water_NN_15_74, minerals_NNS_17_84); rcmod(minerals_NNS_17_84, require_VBP_19_98); nsubj(require_VBP_19_98, they_PRP_18_93); dobj(contain_VBP_21_108, range_NN_24_123); det(range_NN_24_123, a_DT_22_116); amod(range_NN_24_123, wide_JJ_23_118); prep(range_NN_24_123, of_IN_25_129); pcomp(of_IN_25_129, living_VBG_26_132); dobj(living_VBG_26_132, organisms_NNS_27_139); rcmod(organisms_NNS_27_139, interact_NN_29_154); nsubj(interact_NN_29_154, that_WDT_28_149); prep(interact_NN_29_154, with_IN_30_163); pobj(with_IN_30_163, other_JJ_32_173); cc(with_IN_30_163, and_CC_33_179); conj(with_IN_30_163, with_IN_34_183); det(other_JJ_32_173, each_DT_31_168); pobj(with_IN_34_183, environment_NN_37_201); det(environment_NN_37_201, the_DT_35_188); amod(environment_NN_37_201, physical_JJ_36_192) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0314 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.5784091996809637 0.0416 365 0.8075221238938053 (such features; reflect; evolutionary relationships) false false It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.5783653057020448 0.0216 366 0.8079470198675497 (the final proration factor; was; 0.628394) false false CENTRUST SAVINGS BANK -LRB- Miami -RRB- -- McCormick Capital Inc. said the final proration factor was 0.628394 on its oversubscribed , $ 3-a-share tender offer to buy back as many as 1.1 million of its common shares . nn(BANK_NNP_2_17, CENTRUST_NNP_0_0); nn(BANK_NNP_2_17, SAVINGS_NNP_1_9); nsubj(-RRB-_-RRB-_5_34, BANK_NNP_2_17); advmod(-RRB-_-RRB-_5_34, -LRB-_-LRB-_3_22); nsubj(-RRB-_-RRB-_5_34, Miami_NNP_4_28); punct(-RRB-_-RRB-_5_34, --_:_6_40); parataxis(-RRB-_-RRB-_5_34, said_VBD_10_66); punct(-RRB-_-RRB-_5_34, ._._37_216); nn(Inc._NNP_9_61, McCormick_NNP_7_43); nn(Inc._NNP_9_61, Capital_NNP_8_53); nsubj(said_VBD_10_66, Inc._NNP_9_61); ccomp(said_VBD_10_66, 0.628394_CD_16_102); det(factor_NN_14_91, the_DT_11_71); amod(factor_NN_14_91, final_JJ_12_75); nn(factor_NN_14_91, proration_NN_13_81); nsubj(0.628394_CD_16_102, factor_NN_14_91); cop(0.628394_CD_16_102, was_VBD_15_98); prep(0.628394_CD_16_102, on_IN_17_111); pobj(on_IN_17_111, offer_NN_24_154); dep($_$_21_135, 3-a-share_JJ_22_137); poss(offer_NN_24_154, its_PRP$_18_114); amod(offer_NN_24_154, oversubscribed_JJ_19_118); punct(offer_NN_24_154, ,_,_20_133); amod(offer_NN_24_154, $_$_21_135); nn(offer_NN_24_154, tender_NN_23_147); infmod(offer_NN_24_154, buy_VB_26_163); aux(buy_VB_26_163, to_TO_25_160); prt(buy_VB_26_163, back_RP_27_167); dobj(buy_VB_26_163, million_CD_32_187); quantmod(million_CD_32_187, as_RB_28_172); quantmod(million_CD_32_187, many_JJ_29_175); quantmod(million_CD_32_187, as_IN_30_180); number(million_CD_32_187, 1.1_CD_31_183); prep(million_CD_32_187, of_IN_33_195); pobj(of_IN_33_195, shares_NNS_36_209); poss(shares_NNS_36_209, its_PRP$_34_198); amod(shares_NNS_36_209, common_JJ_35_202) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5765929136731114 0.0181 367 0.8083700440528634 (He; to practice law in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5761016414779094 0.0901 367 0.8065934065934066 (Berkeley; was born in; California) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5754331527329651 0.0084 368 0.8070175438596491 (Greatest Hits; is; a Best of compilation album) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5754331527329651 0.0084 369 0.8074398249452954 (The Cancer Genome Atlas; is; another example of systems biology) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5747772927304482 0.0124 369 0.8056768558951966 (Cordero; be Federico Arturo Cordero Salguero in; Rio Piedras) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5747772927304482 0.0124 369 0.803921568627451 (Nero; be Francesco Sparanero in; San Prospero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5746179307179987 0.0119 369 0.8021739130434783 (Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Young) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5744820207995127 0.0104 370 0.8026030368763557 (he; collaborate in; the design of post-war modern Puerto Rico) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5738443653632077 0.0084 371 0.803030303030303 (the average daily rate of energy consumption; is; 2 to 4 times BMR) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5738062155902964 0.0444 372 0.8034557235421166 (Dell Curry; was chosen 7th overall in; the 2009 NBA Draft) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5730271818746745 0.0132 372 0.8017241379310345 (rise; will be give to; a uniform population of individuals) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.5716672635784339 0.0117 373 0.8021505376344086 (acquisitions; to be made during; the next 12 to 18 months) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0117 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5713514580740163 0.1443 374 0.8025751072961373 (it; extends; finger-like projections)[enabler=As the trophoblast thickens through cell division] true false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5695217074364729 1.0 375 0.8029978586723768 ($ 100 million issue of collateralized mortgage obligations; is being offered in; four classes) false false $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5684589343575805 0.0216 376 0.8034188034188035 (Joseph Lombardo; was; one of numerous defendants) false false Joseph Lombardo , who the government alleged was the " captain " of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5677917544433635 0.0393 377 0.8038379530916845 (He; continued studying traditional arrangements under; Mohammad Reza Lotfi and his brother Pashang) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5676323328094277 0.2444 378 0.8042553191489362 (the trophoblast; thickens through; cell division) false false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5658262861937702 0.4031 379 0.8046709129511678 (Cordis; be a maker of; medical devices) false false Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5646060062730449 0.0292 379 0.8029661016949152 (the kidneys; are conserving; water) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5642212988344875 0.0155 380 0.8033826638477801 (a 40 % drop; be posted for; the nine months) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5642212988344875 0.0155 381 0.8037974683544303 (the U.S. magazine business; be exited in; 2005) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5642212988344875 0.0155 382 0.8042105263157895 (codeshare flights; be launched in; 2005) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5642212988344875 0.0155 382 0.8025210084033614 (the differentiated cells; be transformed in; these cases) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.562007744171487 0.0086 382 0.80083857442348 (a Whore; was a co-founder member in; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5617550745798667 0.7345 383 0.801255230125523 (Chesler; taught one of the first Women 's Studies classes at; Richmond College) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0
1 0.5610079074004282 0.0084 384 0.8016701461377871 (The other route of viral infection; is; vertical transmission) false false The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5599594774405574 0.2444 384 0.8 (The first step; is to; align comparable sequences) false false The first step after sequencing the molecules is to align comparable sequences from the species being studied . det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5582169594629622 0.3797 385 0.8004158004158004 (Another historian; wrote; a report) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.5573084488372717 0.0314 386 0.8008298755186722 (the Berlin Wall; was the escape route of 57 people to; the West) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5560828134606646 0.1473 387 0.8012422360248447 (Social Security benefits; will rise 4.7 % to keep; pace)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5557095375453526 0.1443 388 0.8016528925619835 (ShareData; Currently has; about 4.1 million common shares outstanding) false false Currently , ShareData has about 4.1 million common shares outstanding . advmod(has_VBZ_3_22, Currently_RB_0_0); punct(has_VBZ_3_22, ,_,_1_10); nsubj(has_VBZ_3_22, ShareData_NNP_2_12); dobj(has_VBZ_3_22, shares_NNS_8_51); punct(has_VBZ_3_22, ._._10_70); quantmod(million_CD_6_36, about_RB_4_26); number(million_CD_6_36, 4.1_CD_5_32); num(shares_NNS_8_51, million_CD_6_36); amod(shares_NNS_8_51, common_JJ_7_44); amod(shares_NNS_8_51, outstanding_JJ_9_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5552314946137654 0.0478 388 0.8 (he; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5546505942383269 0.1473 389 0.8004115226337448 (workers; would receive; a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5545045552537647 0.7345 389 0.7987679671457906 (Pike; said at; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.5537904298934632 0.0444 390 0.7991803278688525 (He; was interred in; Lakeside Cemetery) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5533380815807473 0.1443 391 0.7995910020449898 (The song; has; two demo working titles) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5530772689180383 0.0155 392 0.8 (Plasmodium; be killed in; humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.5512642271568213 0.02 392 0.7983706720977597 (insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs; killed Plasmodium in; humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.5508108013180459 0.0393 393 0.7987804878048781 (the Reds; were playing the first place St . Louis Cardinals at; Crosley Field) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5498510263942883 0.0022 393 0.7971602434077079 (the Berlin Wall; was; the escape route of 57 people) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0022 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5495286421353275 0.0216 393 0.7955465587044535 (Wheeler Group; was; profitable) false false She said Wheeler Group was profitable but would n't give figures . nsubj(said_VBD_1_4, She_PRP_0_0); ccomp(said_VBD_1_4, profitable_JJ_5_27); punct(said_VBD_1_4, ._._11_65); nn(Group_NNP_3_17, Wheeler_NNP_2_9); nsubj(profitable_JJ_5_27, Group_NNP_3_17); cop(profitable_JJ_5_27, was_VBD_4_23); cc(profitable_JJ_5_27, but_CC_6_38); conj(profitable_JJ_5_27, give_VB_9_52); aux(give_VB_9_52, would_MD_7_42); neg(give_VB_9_52, n't_RB_8_48); dobj(give_VB_9_52, figures_NNS_10_57) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5473352207912758 0.0724 394 0.795959595959596 (Rick Perry; became Governor of Texas in; January 2001) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0
1 0.5462589326873896 0.0216 395 0.7963709677419355 (officials; were; hopeful) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5459700113960823 0.0477 395 0.7947686116700201 (old; The oldest widely accepted fossils of; eukaryotic organisms) false false The oldest widely accepted fossils of eukaryotic organisms are about 2.1 billion years old . det(oldest_JJS_1_4, The_DT_0_0); advmod(accepted_VBN_3_18, widely_RB_2_11); amod(fossils_NNS_4_27, oldest_JJS_1_4); amod(fossils_NNS_4_27, accepted_VBN_3_18); prep(fossils_NNS_4_27, of_IN_5_35); pobj(of_IN_5_35, organisms_NNS_7_49); amod(organisms_NNS_7_49, eukaryotic_JJ_6_38); quantmod(billion_CD_11_73, about_IN_9_63); number(billion_CD_11_73, 2.1_CD_10_69); num(years_NNS_12_81, billion_CD_11_73); nsubj(old_JJ_13_87, fossils_NNS_4_27); cop(old_JJ_13_87, are_VBP_8_59); measure(old_JJ_13_87, years_NNS_12_81); punct(old_JJ_13_87, ._._14_91) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5459700113960823 0.0477 396 0.7951807228915663 (vertical transmission; be The other route of; viral infection) false false The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5459335222184484 0.0084 397 0.7955911823647295 (the share issue; is; part of a strategy) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5456243359986689 0.0191 397 0.794 (He; was descended; an old aristocratic family) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5456243359986689 0.0191 397 0.7924151696606786 (Wheeler; was astonished; an organic compound present) false false Wheeler was astonished to find that instead he had made urea , an organic compound present in the urine of animals . nsubjpass(astonished_VBN_2_12, Wheeler_NNP_0_0); auxpass(astonished_VBN_2_12, was_VBD_1_8); xcomp(astonished_VBN_2_12, find_VB_4_26); punct(astonished_VBN_2_12, ,_,_11_61); dobj(astonished_VBN_2_12, present_NN_15_83); punct(astonished_VBN_2_12, ._._21_115); aux(find_VB_4_26, to_TO_3_23); dobj(find_VB_4_26, urea_NN_10_56); advmod(made_VBN_9_51, instead_RB_6_36); nsubj(made_VBN_9_51, he_PRP_7_44); aux(made_VBN_9_51, had_VBD_8_47); det(urea_NN_10_56, that_DT_5_31); amod(urea_NN_10_56, made_VBN_9_51); det(present_NN_15_83, an_DT_12_63); amod(present_NN_15_83, organic_JJ_13_66); nn(present_NN_15_83, compound_NN_14_74); prep(present_NN_15_83, in_IN_16_91); pobj(in_IN_16_91, urine_NN_18_98); det(urine_NN_18_98, the_DT_17_94); prep(urine_NN_18_98, of_IN_19_104); pobj(of_IN_19_104, animals_NNS_20_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5455267535574706 0.0132 398 0.7928286852589641 (pace; to be keep with; inflation) false false Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5439744896422962 0.0084 399 0.7932405566600398 (The obligation; is totally; unwarranted) false false " The obligation is totally unwarranted , " the statement said . det(obligation_NN_2_6, The_DT_1_2); nsubj(unwarranted_JJ_5_28, obligation_NN_2_6); cop(unwarranted_JJ_5_28, is_VBZ_3_17); advmod(unwarranted_JJ_5_28, totally_RB_4_20); det(statement_NN_9_48, the_DT_8_44); punct(said_VBD_10_58, "_``_0_0); ccomp(said_VBD_10_58, unwarranted_JJ_5_28); punct(said_VBD_10_58, ,_,_6_40); punct(said_VBD_10_58, "_''_7_42); nsubj(said_VBD_10_58, statement_NN_9_48); punct(said_VBD_10_58, ._._11_63) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5426987466067459 0.0155 400 0.7936507936507936 (the invasion of the Philippines; be led as; Commanding General of the newly formed Eighth Army) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5426987466067459 0.0155 401 0.7940594059405941 (Imperial; be charged in; a separate complaint also filed in federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5426042393393016 0.0478 401 0.7924901185770751 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly ectothermic in; contrast) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5406604125320775 0.0079 402 0.7928994082840237 (the first place St . Louis Cardinals; were playing at; Crosley Field) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5396116147916034 0.1473 403 0.7933070866141733 (Prudential-Bache Securities; to reduce; its 1989 and 1990 earnings estimates) false false Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5396116147916034 0.1473 403 0.7917485265225933 (Scorpio sales; would take; Ford) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5396116147916034 0.1473 403 0.7901960784313725 (it; would take; Ford) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5394561925616146 0.0084 404 0.7906066536203522 (7939 Asphaug; is; an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5382998270075379 1.0 404 0.7890625 (40F; be also known as; Cold Sunday) false false The coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday . det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.5363306587629391 0.1473 405 0.7894736842105263 (these percentages; may seem; small , such immigration) false false Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . det(percentages_NNS_2_15, these_DT_1_9); mark(seem_VB_4_31, Although_IN_0_0); nsubj(seem_VB_4_31, percentages_NNS_2_15); aux(seem_VB_4_31, may_MD_3_27); dobj(seem_VB_4_31, immigration_NN_8_49); amod(immigration_NN_8_49, small_JJ_5_36); punct(immigration_NN_8_49, ,_,_6_42); amod(immigration_NN_8_49, such_JJ_7_44); csubj(exchange_NN_13_88, seem_VB_4_31); cop(exchange_NN_13_88, is_VBZ_9_61); det(exchange_NN_13_88, a_DT_10_64); amod(exchange_NN_13_88, meaningful_JJ_11_66); amod(exchange_NN_13_88, biological_JJ_12_77); prep(exchange_NN_13_88, between_IN_14_97); punct(exchange_NN_13_88, ._._18_127); pobj(between_IN_14_97, populations_NNS_15_105); prep(populations_NNS_15_105, over_IN_16_117); pobj(over_IN_16_117, time_NN_17_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5328442366240017 0.0216 406 0.7898832684824902 (Rick Perry; became; Governor of Texas) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0
1 0.532351738969508 0.7345 407 0.7902912621359224 (Mr. Miller; said after; the annual meeting) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.530668651748959 0.3797 407 0.7887596899224806 (Jane Bennet; acclaimed; miniseries Lost) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5289125099564427 0.1473 408 0.7891682785299806 (an animal; must obtain; two types of organic precursors) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5284558179822167 0.0416 409 0.7895752895752896 (other low-profit personal computers; even now operate; several times as fast and have) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5275887502391947 0.1443 410 0.789980732177264 (The disease; kills; corals) false false The disease kills corals by causing their tissue to slough off in a band from the base to the tip of the branches . det(disease_NN_1_4, The_DT_0_0); nsubj(kills_VBZ_2_12, disease_NN_1_4); dobj(kills_VBZ_2_12, corals_NNS_3_18); prep(kills_VBZ_2_12, by_IN_4_25); punct(kills_VBZ_2_12, ._._23_114); pcomp(by_IN_4_25, causing_VBG_5_28); dobj(causing_VBG_5_28, tissue_NN_7_42); poss(tissue_NN_7_42, their_PRP$_6_36); infmod(tissue_NN_7_42, slough_VB_9_52); aux(slough_VB_9_52, to_TO_8_49); prt(slough_VB_9_52, off_RP_10_59); prep(slough_VB_9_52, in_IN_11_63); prep(slough_VB_9_52, from_IN_14_73); pobj(in_IN_11_63, band_NN_13_68); det(band_NN_13_68, a_DT_12_66); pobj(from_IN_14_73, base_NN_16_82); det(base_NN_16_82, the_DT_15_78); prep(base_NN_16_82, to_TO_17_87); pobj(to_TO_17_87, tip_NN_19_94); det(tip_NN_19_94, the_DT_18_90); prep(tip_NN_19_94, of_IN_20_98); pobj(of_IN_20_98, branches_NNS_22_105); det(branches_NNS_22_105, the_DT_21_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.5275161713003372 0.0065 410 0.7884615384615384 (Another historian; wrote at; Auschwitz) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.5273257457611243 0.0155 411 0.7888675623800384 (a splash; be made with; her extraordinary performance) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5273257457611243 0.0155 412 0.789272030651341 (the differentiated cells; be transformed into; ES cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5273257457611243 0.0155 412 0.7877629063097514 (two revisions; has had since; its inception) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5269436743691202 0.1473 412 0.7862595419847328 (water molecules; to cross; the epithelium) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5269061834018879 0.3797 412 0.7847619047619048 (A.P. Green; told; the partnership)[attrib=East Rock Partners said] false true East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.5263453782754063 0.1473 413 0.785171102661597 (the investors; would pay; a symbolic one lira)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5257627645962731 0.4031 414 0.7855787476280834 (Clarcor; be a maker of; packaging and filtration products) false false Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5246302483847023 0.0477 415 0.7859848484848485 (the rare Japanese; were his friends like; Matsukata Masayoshi) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0477 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.524541264056057 0.111 416 0.7863894139886578 (a separate complaint; be also filed in; federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5233332397654471 0.0477 417 0.7867924528301887 (milder when dinosaurs existed than it is today , it was cool; be the climate in; these areas) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5216560429482295 0.0371 417 0.7853107344632768 (the mining company; posted a 40 % drop in profit in; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0371 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5211930945409404 0.0208 418 0.7857142857142857 (Bruno DeGol; be a director of; this bank-holding company) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0208 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.5188524584381967 0.0314 419 0.7861163227016885 (the other organisms; are part of; an individual 's environment) false false Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . dep(Later_RB_0_0, in_IN_1_6); pobj(in_IN_1_6, chapter_NN_3_14); det(chapter_NN_3_14, this_DT_2_9); advmod(examine_VB_8_37, Later_RB_0_0); punct(examine_VB_8_37, ,_,_4_22); nsubj(examine_VB_8_37, we_PRP_5_24); aux(examine_VB_8_37, will_MD_6_27); advmod(examine_VB_8_37, also_RB_7_32); advmod(examine_VB_8_37, how_WRB_9_45); punct(examine_VB_8_37, ,_,_17_79); dobj(examine_VB_8_37, factors_NNS_18_81); punct(examine_VB_8_37, ._._42_229); dep(how_WRB_9_45, all_DT_10_49); prep(all_DT_10_49, of_IN_11_53); punct(all_DT_10_49, ,_,_14_67); cc(all_DT_10_49, or_CC_15_69); conj(all_DT_10_49, living_VBG_16_72); pobj(of_IN_11_53, biotic_JJ_13_60); det(biotic_JJ_13_60, the_DT_12_56); dep(factors_NNS_18_81, organisms_NNS_22_102); punct(organisms_NNS_22_102, --_:_19_89); det(organisms_NNS_22_102, the_DT_20_92); amod(organisms_NNS_22_102, other_JJ_21_96); rcmod(organisms_NNS_22_102, part_NN_25_121); punct(organisms_NNS_22_102, --_:_31_158); dep(organisms_NNS_22_102, influence_NN_33_171); nsubj(part_NN_25_121, that_WDT_23_112); cop(part_NN_25_121, are_VBP_24_117); prep(part_NN_25_121, of_IN_26_126); pobj(of_IN_26_126, environment_NN_30_146); det(individual_NN_28_132, an_DT_27_129); possessive(individual_NN_28_132, 's_POS_29_143); poss(environment_NN_30_146, individual_NN_28_132); advmod(influence_NN_33_171, similarly_RB_32_161); dep(influence_NN_33_171, distribution_NN_35_185); det(distribution_NN_35_185, the_DT_34_181); cc(distribution_NN_35_185, and_CC_36_198); conj(distribution_NN_35_185, abundance_NN_37_202); prep(distribution_NN_35_185, on_IN_40_220); prep(abundance_NN_37_202, of_IN_38_212); pobj(of_IN_38_212, life_NN_39_215); pobj(on_IN_40_220, Earth_NNP_41_223) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.5183661330806747 0.2444 419 0.7846441947565543 (it; means over; the long run) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.517126497292583 0.0307 420 0.7850467289719626 (Pharyngeal slits; function as; suspension-feeding devices) false false Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . nn(slits_NNS_1_11, Pharyngeal_NNP_0_0); nsubj(function_VBP_2_17, slits_NNS_1_11); prep(function_VBP_2_17, as_IN_3_26); punct(function_VBP_2_17, ._._10_87); pobj(as_IN_3_26, devices_NNS_5_48); amod(devices_NNS_5_48, suspension-feeding_JJ_4_29); prep(devices_NNS_5_48, in_IN_6_56); pobj(in_IN_6_56, chordates_NNS_9_77); amod(chordates_NNS_9_77, many_JJ_7_59); amod(chordates_NNS_9_77, invertebrate_JJ_8_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5171043233054161 0.111 421 0.7854477611940298 (an embryo; be packaged with; a supply of nutrients) false false A seed is an embryo packaged with a supply of nutrients inside a protective coat . det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.516871592276184 0.0155 421 0.7839851024208566 (Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel; be left after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5156169186502351 0.7345 422 0.7843866171003717 (The band; began recording demos for; their next album) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0
1 0.5152059095227164 0.4031 423 0.7847866419294991 (Petone; be a suburb of; the city of Lower Hutt) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 1.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5148985883044063 0.0155 424 0.7851851851851852 (a wider audience supporting U.S. goth-metal act Type O Negative; be reached in; 1997) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5148985883044063 0.0155 425 0.7855822550831792 (Stalin; be dispatched in; May 1918) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5148985883044063 0.0155 426 0.7859778597785978 (Princess Kane-no-Miya Fusako; be married on; April 29 , 1909) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5148985883044063 0.0155 427 0.7863720073664825 (natural resources attorney Susan Daggett; be married on; October 26 , 1997) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5147683030733742 0.0151 427 0.7849264705882353 (Cordis; agreed in; this year) false false Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5146238279939432 0.0155 427 0.7834862385321101 (a 40 % drop; be posted on; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5146238279939432 0.0155 428 0.7838827838827839 (eleven seasons; be played as; an outfielder) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5146238279939432 0.0155 429 0.7842778793418648 (eleven seasons; be played in; the majors) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5146238279939432 0.0155 430 0.7846715328467153 (most of its stake; be acquired in; an $ 11-a-share tender offer) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5146238279939432 0.0155 431 0.785063752276867 (identical samples of organic material; be placed on; the ground) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5146238279939432 0.0155 432 0.7854545454545454 (a Master of Arts; be received in; war studies degree) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5136100371321917 0.0084 432 0.7840290381125227 (Dawes Township; is; one of eleven townships) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5136100371321917 0.0084 433 0.7844202898550725 (Spring Creek Township; is; one of thirty-one townships) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5132047287937115 0.0103 433 0.783001808318264 (whose children; had been required in; an anti-Nazi Protestant family) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0103 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.5132001320009082 0.0132 433 0.7815884476534296 (us; be Tell about; spending restraint) false false Tell us about spending restraint . dobj(Tell_VB_0_0, us_PRP_1_5); prep(Tell_VB_0_0, about_IN_2_8); punct(Tell_VB_0_0, ._._5_33); pobj(about_IN_2_8, restraint_NN_4_23); nn(restraint_NN_4_23, spending_NN_3_14) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5130736193948331 0.0191 434 0.781981981981982 (the potentially fatal disease botulism; is caused; an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5127766180029698 0.0119 434 0.7805755395683454 (Dhoni; be his 4,000 runs in; ODIs) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5127766180029698 0.0119 434 0.7791741472172352 (He; be his move on; 4 June 2008) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5119946982576229 0.0095 434 0.7777777777777778 (Dawes Township; be eleven townships in; Thurston County) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5119946982576229 0.0095 434 0.776386404293381 (Spring Creek Township; be thirty-one townships in; Custer County) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5116362985238608 0.0084 434 0.775 (Cedric Roussel; is currently the books R.A.E.C. Mons; a Belgian football striker) false false Cedric Roussel is a Belgian football striker currently on the books of R.A.E.C. Mons . nn(Roussel_NNP_1_7, Cedric_NNP_0_0); nsubj(striker_NN_6_37, Roussel_NNP_1_7); cop(striker_NN_6_37, is_VBZ_2_15); det(striker_NN_6_37, a_DT_3_18); amod(striker_NN_6_37, Belgian_JJ_4_20); nn(striker_NN_6_37, football_NN_5_28); advmod(striker_NN_6_37, currently_RB_7_45); punct(striker_NN_6_37, ._._14_85); dep(currently_RB_7_45, on_IN_8_55); pobj(on_IN_8_55, books_NNS_10_62); det(books_NNS_10_62, the_DT_9_58); prep(books_NNS_10_62, of_IN_11_68); pobj(of_IN_11_68, Mons_NNP_13_80); nn(Mons_NNP_13_80, R.A.E.C._NNP_12_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.5115059683622137 0.008 435 0.7754010695187166 (He; will remain; chairman) false false He will remain chairman . nsubj(chairman_NN_3_15, He_PRP_0_0); aux(chairman_NN_3_15, will_MD_1_3); cop(chairman_NN_3_15, remain_VB_2_8); punct(chairman_NN_3_15, ._._4_24) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.5097231740818472 0.0444 435 0.7740213523131673 (the union; had paid a fee to; former House Speaker Jim Wright) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.5077099888301128 0.4031 436 0.7744227353463587 (Rabaul; be the Japanese naval base at; Kavieng) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5077099888301128 0.4031 436 0.7730496453900709 (Austen; be a modern twist on; Austen 's Pride) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5077099888301128 0.4031 436 0.7716814159292036 (Austen; be a modern twist on; Prejudice) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5066112146742117 0.0416 437 0.7720848056537103 (primates; have a large brain giving them; a flat face) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5066112146742117 0.0416 438 0.7724867724867724 (primates; have short jaws giving them; a flat face) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5056491596060483 0.2444 439 0.772887323943662 (e-catenin; also helps to control gastrulation in; the sea anemone Nematostella vectensis) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5051946130926066 0.1473 439 0.7715289982425307 (her; find; a new girlfriend portayed by VS Brodie) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.5051928132868242 0.9555 439 0.7701754385964912 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5051666160985558 0.1443 440 0.7705779334500875 (he; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5051666160985558 0.1443 441 0.7709790209790209 (we; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.5038105262250819 0.4031 442 0.7713787085514834 (the San Juan; be the capital of; Puerto Rico) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.5038105262250819 0.4031 443 0.7717770034843205 (Princess Kane-no-Miya Fusako; be the seventh daughter of; Emperor Meiji) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.49852100431361857 0.021 444 0.7721739130434783 (Wellington; be region in; New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.49796021131614765 0.0577 444 0.7708333333333334 (Jamaica , wary; has apparently instructed; its lobbyist to abandon the provision) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0577 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.49795321143304855 0.0132 445 0.7712305025996534 (Labatt 's balance sheet; to be strengthen in; anticipation of acquisitions) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4959782867339064 0.0132 446 0.7716262975778547 (law; to be practice in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4959782867339064 0.0132 447 0.772020725388601 (Arthur E. Himebaugh; will be succeed as; general manager) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4959782867339064 0.0132 448 0.7724137931034483 (life; to be contemplate without; his wife) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4950655602055952 0.0104 448 0.7710843373493976 (he; to move in; 1944) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4949221745817766 0.7345 449 0.7714776632302406 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.49456041461840994 0.0577 450 0.7718696397941681 (we; have agreed to raise; the capital that will enable the company to continue operating) false false Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0577 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4945330178777349 0.0478 451 0.7722602739726028 (the blood; remains separate in; the body cavity) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4944136324661812 0.0084 452 0.7726495726495727 (The Wellington Inn; is now; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4944136324661812 0.0084 453 0.773037542662116 (She; 's; a Whore) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.49357855308592763 0.0132 453 0.7717206132879046 (demand; would be overwhelm in; coming sessions) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.49353356056035064 0.0057 453 0.7704081632653061 (Valley National , of Phoenix; be substantial further provisions against; its real-estate portfolio) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4930028568273039 0.1349 454 0.7707979626485568 (the South; should remain in; the Union)[attrib=Pike said] false true At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.49073306129747174 0.0195 454 0.7694915254237288 (Achmat; to take; AIDS medications)[enabler=until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy] true false Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.4889184149823566 0.0216 454 0.7681895093062606 (He; then was; able) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.4874608297172945 0.0307 454 0.7668918918918919 (their kidneys; have small glomeruli or lack glomeruli entirely in; addition) false false In addition , their kidneys have small glomeruli or lack glomeruli entirely . pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4867730867159159 0.02 455 0.7672849915682968 (the senior vice president of Gulf Power; died in; April) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.48574566359506116 0.1443 456 0.7676767676767676 (it; ferments; various foods) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4833195922554681 0.0084 456 0.7663865546218488 (An aqueous solution; is; one) false false An aqueous solution is one in which water is the solvent . det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.48325945949651994 0.0132 457 0.7667785234899329 (gastrulation; to be control in; the sea anemone Nematostella vectensis) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.48325945949651994 0.0132 458 0.7671691792294807 (a pivotal role; be play in; community dynamics) false false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.48325945949651994 0.0132 458 0.7658862876254181 (the Buckeyes; to lead to be; a national championship) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.48325945949651994 0.0132 459 0.7662771285475793 (a new group president to head that operation; to be name following; the Nov. 8 board meeting) false false Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.48325945949651994 0.0132 460 0.7666666666666667 (a similar turnaround; to be guide at; the company 's latest acquisition) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4816965824748495 0.0084 460 0.7653910149750416 (one; is; the solvent) false false An aqueous solution is one in which water is the solvent . det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.48117570153082395 0.0068 460 0.7641196013289037 (the restructuring; to have; any impact , adverse) false false The company said the restructuring is n't expected to have any impact , adverse or otherwise , on its financial results . det(company_NN_1_4, The_DT_0_0); nsubj(said_VBD_2_12, company_NN_1_4); ccomp(said_VBD_2_12, expected_VBN_7_42); punct(said_VBD_2_12, ._._21_120); det(restructuring_NN_4_21, the_DT_3_17); nsubjpass(expected_VBN_7_42, restructuring_NN_4_21); auxpass(expected_VBN_7_42, is_VBZ_5_35); neg(expected_VBN_7_42, n't_RB_6_38); xcomp(expected_VBN_7_42, have_VB_9_54); aux(have_VB_9_54, to_TO_8_51); dobj(have_VB_9_54, impact_NN_11_63); det(impact_NN_11_63, any_DT_10_59); punct(impact_NN_11_63, ,_,_12_70); amod(impact_NN_11_63, adverse_JJ_13_72); punct(impact_NN_11_63, ,_,_16_93); prep(impact_NN_11_63, on_IN_17_95); cc(adverse_JJ_13_72, or_CC_14_80); advmod(adverse_JJ_13_72, otherwise_RB_15_83); pobj(on_IN_17_95, results_NNS_20_112); poss(results_NNS_20_112, its_PRP$_18_98); amod(results_NNS_20_112, financial_JJ_19_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0068 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4809196699219445 0.0054 460 0.7628524046434494 (He; to appoint; all new leaders most of the people he appointed as governors were young men) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0054 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.48063409267013224 0.2444 461 0.7632450331125827 (the blood supply; varies over; time) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.48028762259208335 0.1349 461 0.7619834710743801 (supply; would overwhelm demand in; coming sessions) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.4789322811397672 0.1473 462 0.7623762376237624 (He; will succeed; Arthur E. Himebaugh) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.47874841103002486 0.4031 463 0.7627677100494233 (Imperial Cup Corp.; a closely held maker of; paper cups based in Kenton , Ohio) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.4031 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4783659158229946 0.1349 464 0.7631578947368421 (He; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0
0 0.4783639195676089 0.0079 464 0.7619047619047619 (traditional arrangements; continued studying under; Mohammad Reza Lotfi and his brother Pashang) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.47795609917503007 0.1443 465 0.7622950819672131 (It; takes encouragement to persuade; David) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.47795609917503007 0.1443 465 0.7610474631751227 (It; takes; encouragement) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.47437008359407457 0.0151 466 0.761437908496732 (Scorpio sales; plummeted in; This year) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.47437008359407457 0.0151 466 0.7601957585644372 (it; plummeted in; This year) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.47394043463339497 0.1443 467 0.760586319218241 (a bolus of food; reaches; the pharynx) false false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.47369949700306646 0.0477 468 0.7609756097560976 (a notable success; be Wolfowitz 's tenure as; Ambassador) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4732778856874525 0.1349 469 0.7613636363636364 (an animal; must obtain two types of organic precursors from; its food) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4703440491602804 0.0067 470 0.7617504051863857 (a base of 1981; be uses by; The index) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.46821731067109257 0.2444 470 0.7605177993527508 (the right hemisphere; appears in; contrast) false false In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . pobj(In_IN_0_0, contrast_NN_1_3); det(hemisphere_NN_5_24, the_DT_3_14); amod(hemisphere_NN_5_24, right_JJ_4_18); prep(appears_VBZ_6_35, In_IN_0_0); punct(appears_VBZ_6_35, ,_,_2_12); nsubj(appears_VBZ_6_35, hemisphere_NN_5_24); xcomp(appears_VBZ_6_35, dominant_JJ_9_49); punct(appears_VBZ_6_35, ,_,_20_119); cc(appears_VBZ_6_35, and_CC_21_121); conj(appears_VBZ_6_35, thinking_NN_23_135); punct(appears_VBZ_6_35, ._._24_144); aux(dominant_JJ_9_49, to_TO_7_43); cop(dominant_JJ_9_49, be_VB_8_46); prep(dominant_JJ_9_49, in_IN_10_58); punct(dominant_JJ_9_49, ,_,_17_99); conj(dominant_JJ_9_49, relations_NNS_19_109); pobj(in_IN_10_58, recognition_NN_12_65); det(recognition_NN_12_65, the_DT_11_61); prep(recognition_NN_12_65, of_IN_13_77); pobj(of_IN_13_77, faces_NNS_14_80); cc(faces_NNS_14_80, and_CC_15_86); conj(faces_NNS_14_80, patterns_NNS_16_90); amod(relations_NNS_19_109, spatial_JJ_18_101); amod(thinking_NN_23_135, nonverbal_JJ_22_125) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.46781436629484396 0.1473 471 0.7609046849757674 (it; would drop; its opposition)[enabler=if Ciba-Geigy and Chiron are successful with their lower bid] true false The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.4661803179999748 0.0961 472 0.7612903225806451 (Wellington; be region of; New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.46551583273167924 0.111 473 0.7616747181964574 (an asteroid; be named for; Dr. Erik I. Asphaug) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.46551583273167924 0.111 474 0.7620578778135049 (an indoor arena; be located in; Montreal) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.46551583273167924 0.111 475 0.7624398073836276 (a new girlfriend; be portayed by; VS Brodie) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4652728025065972 0.1443 476 0.7628205128205128 (The announcement; follows; a sharper $ 2.2 billion decline) false false The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . det(announcement_NN_1_4, The_DT_0_0); nsubj(follows_VBZ_2_17, announcement_NN_1_4); dobj(follows_VBZ_2_17, decline_NN_8_49); prep(follows_VBZ_2_17, to_TO_17_105); punct(follows_VBZ_2_17, ._._21_124); number($_$_5_35, 2.2_CD_6_37); number($_$_5_35, billion_CD_7_41); det(decline_NN_8_49, a_DT_3_25); amod(decline_NN_8_49, sharper_JJR_4_27); num(decline_NN_8_49, $_$_5_35); prep(decline_NN_8_49, in_IN_9_57); prep(decline_NN_8_49, in_IN_15_92); pobj(in_IN_9_57, reserves_NNS_14_83); det(country_NN_11_64, the_DT_10_60); possessive(country_NN_11_64, 's_POS_12_72); poss(reserves_NNS_14_83, country_NN_11_64); amod(reserves_NNS_14_83, foreign_JJ_13_75); pobj(in_IN_15_92, September_NNP_16_95); pobj(to_TO_17_105, $_$_18_108); number($_$_18_108, 86.12_CD_19_110); number($_$_18_108, billion_CD_20_116) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.46501028469893946 0.0155 477 0.7632 (codeshare flights; be launched to; Germany) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4626753634208457 0.0083 478 0.7635782747603834 (Hatch; worked in; law) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.462622858063677 0.0155 479 0.7639553429027113 (a $ 400,000 federal court jury verdict; be won in; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4625456926041092 0.0079 480 0.7643312101910829 (a Best of compilation album; released; January 2002) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4616140822615996 0.0084 480 0.7631160572337043 (It; is; the presence of internal and external " enemies which justifies the need for a large , active army) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.46068492633986097 0.0961 480 0.7619047619047619 (Hezbollah; be members during; the 2006 Lebanon War) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4601711647495456 0.0416 481 0.7622820919175911 (I; read; a sign)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.4601711647495456 0.0416 482 0.7626582278481012 (Tivoli Motel; read; a sign)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.45955774301394303 0.0292 483 0.7630331753554502 (the Reds; trailing; 13-0)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.45924779989663594 0.3797 484 0.7634069400630915 (Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.45407996303731263 0.0477 485 0.7637795275590551 (the deadliest aspect of the quake; be The failure of; the freeway segment known as the Cypress structure) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.0477 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.45352751956536486 0.0055 485 0.7625786163522013 (Scorpio sales; to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0055 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.45352751956536486 0.0055 485 0.7613814756671899 (it; to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0055 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4523647102918165 0.1473 486 0.7617554858934169 (we; must choose; a method inferring phylogeny from these homologous characters) false false Next we must choose a method of inferring phylogeny from these homologous characters . mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4509934391319137 0.4031 487 0.7621283255086072 (Newport; be a maker of; electronic-measuring devices) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.44987909808234355 0.0577 488 0.7625 (He; has made; frequent trips) false false He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.44987909808234355 0.0577 489 0.7628705148205929 (She; has practiced; law) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.44987909808234355 0.0577 490 0.7632398753894081 (She; has practiced; law) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.44980188306713714 0.3797 491 0.7636080870917574 (The band; began recording; demos) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0
0 0.44952293925622205 0.0079 491 0.7624223602484472 (Germany; be Visiting in; 1937) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.4482709563354432 0.0577 492 0.7627906976744186 (tank-killer teams; armed to destroy; the attacking North Korean T) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.44774312624186197 0.0066 492 0.7616099071207431 (seafood; be various foods including; canned meat) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.44614650937085476 0.0393 493 0.7619783616692427 (someone; was looking for; him) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.44604747390934923 0.0416 494 0.7623456790123457 (The certificates; have an estimated average life of 1.8 years assuming; monthly prepayments) false false The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.44559070122718913 0.0444 495 0.7627118644067796 (She; has also served on; several task forces) false false She has also served on several task forces on acquired immune deficiency syndrome . nsubj(served_VBN_3_13, She_PRP_0_0); aux(served_VBN_3_13, has_VBZ_1_4); advmod(served_VBN_3_13, also_RB_2_8); prep(served_VBN_3_13, on_IN_4_20); punct(served_VBN_3_13, ._._13_82); pobj(on_IN_4_20, forces_NNS_7_36); amod(forces_NNS_7_36, several_JJ_5_23); nn(forces_NNS_7_36, task_NN_6_31); prep(forces_NNS_7_36, on_IN_8_43); pobj(on_IN_8_43, syndrome_NN_12_73); amod(syndrome_NN_12_73, acquired_VBN_9_46); amod(syndrome_NN_12_73, immune_JJ_10_55); nn(syndrome_NN_12_73, deficiency_NN_11_62) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.44486195302212744 0.0393 496 0.7630769230769231 (the company; is no longer looking for; an equity investor)[attrib=Mr. Miller said] false true In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.44250879190852044 0.0109 496 0.7619047619047619 (McMillan and McMillan; be her husband in; the Clarksville firm) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.44250879190852044 0.0109 496 0.7607361963190185 (McMillan and McMillan; be her husband in; the Clarksville firm) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.44170471840033315 0.0084 496 0.7595712098009189 (it; is; today) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.44140349130120327 0.008 497 0.7599388379204893 (a foreign molecule; First must be; present) false false First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . det(molecule_NN_4_18, a_DT_2_8); amod(molecule_NN_4_18, foreign_JJ_3_10); advmod(present_JJ_7_35, First_RB_0_0); punct(present_JJ_7_35, ,_,_1_6); nsubj(present_JJ_7_35, molecule_NN_4_18); aux(present_JJ_7_35, must_MD_5_27); cop(present_JJ_7_35, be_VB_6_32); ccomp(present_JJ_7_35, bind_NN_10_52); punct(present_JJ_7_35, ._._20_108); nsubj(bind_NN_10_52, that_WDT_8_43); aux(bind_NN_10_52, can_MD_9_48); prep(bind_NN_10_52, to_TO_12_70); dep(to_TO_12_70, specifically_RB_11_57); pobj(to_TO_12_70, receptor_NN_15_85); det(receptor_NN_15_85, the_DT_13_73); nn(receptor_NN_15_85, antigen_NN_14_77); prep(receptor_NN_15_85, of_IN_16_94); pobj(of_IN_16_94, cell_NN_19_103); det(cell_NN_19_103, the_DT_17_97); nn(cell_NN_19_103, T_NNP_18_101) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.4409415752492755 0.0071 497 0.7587786259541984 (essence; went native to; he) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.4406560351964406 0.0125 498 0.7591463414634146 (the high surface-to-volume ratio; goes with; small size) false false Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, ratio_NN_5_38); det(ratio_NN_5_38, the_DT_2_11); amod(ratio_NN_5_38, high_JJ_3_15); nn(ratio_NN_5_38, surface-to-volume_NN_4_20); rcmod(ratio_NN_5_38, goes_VBZ_7_49); punct(ratio_NN_5_38, ,_,_11_70); conj(ratio_NN_5_38, mice_NNS_13_77); nsubj(goes_VBZ_7_49, that_WDT_6_44); prep(goes_VBZ_7_49, with_IN_8_54); pobj(with_IN_8_54, size_NN_10_65); amod(size_NN_10_65, small_JJ_9_59); amod(mice_NNS_13_77, deer_JJR_12_72); prep(lose_VBP_14_82, of_IN_1_8); dobj(lose_VBP_14_82, heat_NN_16_92); advmod(lose_VBP_14_82, rapidly_RB_17_97); cc(lose_VBP_14_82, and_CC_18_105); conj(lose_VBP_14_82, generate_VB_21_125); punct(lose_VBP_14_82, ._._28_178); nn(heat_NN_16_92, body_NN_15_87); aux(generate_VB_21_125, must_MD_19_109); advmod(generate_VB_21_125, constantly_RB_20_114); dobj(generate_VB_21_125, heat_NN_23_144); xcomp(generate_VB_21_125, maintain_VB_25_152); amod(heat_NN_23_144, metabolic_JJ_22_134); aux(maintain_VB_25_152, to_TO_24_149); dobj(maintain_VB_25_152, temperature_NN_27_166); nn(temperature_NN_27_166, body_NN_26_161) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.43898499980461975 0.0119 498 0.7579908675799086 (he; be the invasion of; the Philippines) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.43898499980461975 0.0119 499 0.7583586626139818 (the company; be lower-than-forecast sales of; Easy Eggs) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.43859670740081824 0.0577 500 0.7587253414264037 (Dell Curry; was chosen; 7th overall) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0577 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.4384418841888025 0.0155 501 0.759090909090909 (one of the first Women 's Studies classes; be taught during; the 1969-1970 school year) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0 0.43792549970477 0.0086 501 0.7579425113464447 (large; be group of; interacting genes and gene products) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4375842712624847 0.0195 501 0.756797583081571 (Amuro; to solo; activities) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.4375842712624847 0.0195 502 0.7571644042232277 (He; to practice; law) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.43747953206616313 0.0181 503 0.7575301204819277 (he; to perform as; a part of a two-hander) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.43715314382460063 0.0065 504 0.7578947368421053 (Another historian; wrote on; the gassing facilities) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
0 0.43713503460830516 0.0181 504 0.7567567567567568 (Amuro; to solo activities on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.43646629243022217 0.021 505 0.7571214392803598 (Southern Great Plain; be region in; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4359852478205229 0.0195 505 0.7559880239520959 (Manager Bill McKechnie; to enter; the game) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4355635229268553 0.0132 506 0.7563527653213752 (a song; Also to be record by; Destiny 's Child) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.435146807117044 0.0119 506 0.755223880597015 (Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Rubicam) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.4343309472409519 0.0444 507 0.7555886736214605 (Dell Curry; was chosen 7th overall by; the Golden State Warriors) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0444 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.43402533690244155 0.0084 507 0.7544642857142857 (It; is; important) false false It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.43396618596204656 0.0132 508 0.7548291233283804 (two types of organic precursors; must be obtain from; its food) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.43396618596204656 0.0132 508 0.7537091988130564 (Equitec; would be replace as; the newly formed master limited partnership 's general partner and manager) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4335498245290546 0.0119 508 0.7525925925925926 (Strachan; be the World Gurning competition at; Egremont Crab Fair) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.43292869903379066 0.7345 509 0.7529585798816568 (He; completed his move to Premier League side Fulham on 4 June 2008 for; an undisclosed fee) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.43292869903379066 0.7345 510 0.7533234859675036 (He; completed his move to Premier League side Fulham on 4 June 2008 on; a two-year deal) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.43288490210095915 0.1349 511 0.7536873156342183 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting among; nonsmokers) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.43288490210095915 0.1349 512 0.7540500736377025 (workers; would receive a 3 % bonus in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4328159682462656 0.3797 512 0.7529411764705882 (the squadron; began taking; part) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0
1 0.43280379216607134 0.1473 513 0.7533039647577092 (Both radial glia and astrocytes; can also act generating; new neurons and glia) false false Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.4324933295834237 0.0086 513 0.7521994134897361 (other; be Hezbollah members during; the 2006 Lebanon War) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.43242931921560007 0.0084 514 0.7525622254758418 (it; is; not fail-safe) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4322147242411709 0.1473 515 0.7529239766081871 (Social Security benefits; will rise 4.7 % boosting; the average monthly benefit)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.43191731766169394 0.0068 516 0.7532846715328467 (whose children; to join; the Hitler Youth) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0068 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.43188532238260585 0.0067 517 0.7536443148688047 (he; to name a new group president to head that operation following; the Nov. 8 board meeting) false false Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4316095584452342 0.0132 518 0.7540029112081513 (most of their heat; be gain from; external sources) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.4302470664810216 0.0117 519 0.7543604651162791 (an upcoming compilation CD; to be released by; the studio) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0117 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.4282487012320344 1.0 519 0.7532656023222061 (she; be confirmed by; the Senate) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.42784973755588496 0.0101 519 0.7521739130434782 (new; post of; vice president of world-wide advanced materials operations) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0101 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.427744185522122 0.0623 519 0.7510853835021708 (he; looked to; dead cells) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0623 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.42508740840778103 0.0292 520 0.7514450867052023 (He; continued studying; traditional arrangements) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.4239303990024235 0.0577 520 0.7503607503607503 (the union; had paid; a fee) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.4210002057059459 0.0478 521 0.7507204610951008 (it; is particularly interested in; Tesoro 's refinery)[enabler=because it would fill a gap in its business] true false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4201771056078315 0.0084 522 0.7510791366906475 (Dell Curry; is; the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.4200913508546778 0.0079 522 0.75 (part; be taking in; the air) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4200913508546778 0.0079 522 0.7489239598278336 (songs; be mating in; two cryptic) false false Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . nn(al_NN_5_22, Source_NN_0_0); nn(al_NN_5_22, C._NNP_1_7); nn(al_NN_5_22, S._NNP_2_10); nn(al_NN_5_22, Henry_NNP_3_13); nn(al_NN_5_22, et_NNP_4_19); punct(al_NN_5_22, ._._6_25); punct(al_NN_5_22, ,_,_7_27); appos(al_NN_5_22, inheritance_NN_9_33); punct(al_NN_5_22, ,_,_20_103); rcmod(al_NN_5_22, -289_-RRB-_24_123); punct(al_NN_5_22, ._._25_128); det(inheritance_NN_9_33, The_DT_8_29); prep(inheritance_NN_9_33, of_IN_10_45); pcomp(of_IN_10_45, mating_VBG_11_48); dobj(mating_VBG_11_48, songs_NNS_12_55); prep(mating_VBG_11_48, in_IN_13_61); punct(mating_VBG_11_48, ,_,_16_76); conj(mating_VBG_11_48, sibling_VBG_17_78); pobj(in_IN_13_61, two_CD_14_64); amod(two_CD_14_64, cryptic_JJ_15_68); dobj(sibling_VBG_17_78, species_NNS_19_95); nn(species_NNS_19_95, lacewing_NN_18_86); num(Genetica_NNP_21_105, :269_CD_23_118); number(:269_CD_23_118, 116_CD_22_114); nsubj(-289_-RRB-_24_123, Genetica_NNP_21_105) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4200913508546778 0.0079 523 0.7492836676217765 (an item; be filming in; 2002) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4197431192517617 0.9555 524 0.7496423462088698 (GDP; is the total value of; a nation 's output of goods and services) false false GDP is the total value of a nation 's output of goods and services . nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.4192136175373511 0.2444 524 0.7485714285714286 (it; appears for; the short term) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.41814271626192945 0.0444 524 0.7475035663338089 (DNA analyses; have shown in; the case of naked mole rats) false false In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . pobj(In_IN_0_0, case_NN_2_7); det(case_NN_2_7, the_DT_1_3); prep(case_NN_2_7, of_IN_3_12); pobj(of_IN_3_12, rats_NNS_6_26); amod(rats_NNS_6_26, naked_JJ_4_15); nn(rats_NNS_6_26, mole_NN_5_21); nn(analyses_NNS_9_37, DNA_NNP_8_33); prep(shown_VBN_11_51, In_IN_0_0); punct(shown_VBN_11_51, ,_,_7_31); nsubj(shown_VBN_11_51, analyses_NNS_9_37); aux(shown_VBN_11_51, have_VBP_10_46); ccomp(shown_VBN_11_51, related_VBN_21_106); punct(shown_VBN_11_51, ._._22_114); predet(individuals_NNS_15_70, all_PDT_13_62); det(individuals_NNS_15_70, the_DT_14_66); prep(individuals_NNS_15_70, in_IN_16_82); pobj(in_IN_16_82, colony_NN_18_87); det(colony_NN_18_87, a_DT_17_85); complm(related_VBN_21_106, that_IN_12_57); nsubjpass(related_VBN_21_106, individuals_NNS_15_70); auxpass(related_VBN_21_106, are_VBP_19_94); advmod(related_VBN_21_106, closely_RB_20_98) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.41791111331319275 0.0314 525 0.7478632478632479 (the Berlin Wall; was the escape route of 57 people from; East Berlin) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4175596909617927 0.0477 526 0.748221906116643 (2 to 4 times BMR; be the average daily rate of; energy consumption) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4171241291162316 0.1349 526 0.7471590909090909 (Scorpio sales; would take Ford at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4163360117195252 0.1443 527 0.7475177304964539 (He; increases; the board) false false He increases the board to seven . nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.4162219032464996 0.0444 528 0.7478753541076487 (tank-killer teams; armed with; the newly-arrived 3.5-inch rocket launchers) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.41609808530031317 0.7345 528 0.7468175388967468 (Jr.; linked Senator Panfilo Lacson to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.4151964978696182 0.0065 528 0.7457627118644068 (Browning; wrote at; Auschwitz) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.4133688412944222 0.111 529 0.7461212976022567 (paper cups; be based in; Kenton) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4133688412944222 0.111 530 0.7464788732394366 (a military coup; be headed by; colonel Oscar R. Benavides , Javier and Manuel Prado) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4129968064278692 0.0724 531 0.7468354430379747 (the average daily rate of energy consumption; is 2 to 4 times BMR for; most terrestrial animals) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.41027380476553393 0.0216 532 0.7471910112359551 (his friends , like Matsukata Masayoshi , and others; were; the rare Japanese) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.40979618501360465 0.0105 532 0.7461430575035063 (East Rock Partners; said; A.P. Green) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.4088416499899885 0.111 533 0.7464985994397759 (the provision; be initially drafted by; Mr. Gray) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4083506267176189 0.0155 534 0.7468531468531469 (basketball; be played at; Davidson College) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.40834212241124346 0.0292 535 0.7472067039106145 (the Reds; were playing; the first place St . Louis Cardinals) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.407400804271439 0.1473 536 0.7475592747559274 (owners; should return; the cars)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4067759523634959 0.0901 537 0.7479108635097493 (Kenton; be based in; Ohio) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4050655320579212 0.2444 538 0.7482614742698191 (Mikhail Gorbachev 's Soviet Union; continues to supply with; bullets) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.40490090011857394 0.0961 539 0.7486111111111111 (Southern Great Plain; be region of; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.4035029734186021 0.1349 540 0.7489597780859917 (owners; should return the cars to; dealers)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.40252443126781057 0.4031 541 0.7493074792243767 (Florio Fiorini; managing director of; Geneva-based Sasea) false false Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.4023693675777794 0.0444 542 0.7496542185338866 (gold; that has risen over; the past week or so) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.40133867275007556 0.1349 543 0.75 (the phloem; Thus can serve a nerve-like function allowing for; swift electrical communication) false false Thus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs . det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.4006455591547758 0.006 543 0.7489655172413793 (he; be Years after; his marriage) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.4006348014371212 0.1473 544 0.7493112947658402 (it; might make; a bid) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.4006348014371212 0.1473 545 0.749656121045392 (Valley National , of Phoenix; to make; substantial further provisions) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.40008993331478143 0.1349 546 0.75 (he; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0 0.40008993331478143 0.1349 546 0.7489711934156379 (we; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.39969579255083065 0.1443 547 0.7493150684931507 (Susan; phones; the real estate agency) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.39952304890617457 0.0393 547 0.7482900136798906 (1944 the squadron; was operating by; January 27) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.39952304890617457 0.0393 548 0.7486338797814208 (the Reds; were playing the first place St . Louis Cardinals on; June 10) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.39927338255682643 0.0066 549 0.7489768076398363 (Cleveland Indians; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.39927338255682643 0.0066 549 0.7479564032697548 (Houston Astros; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.39927338255682643 0.0066 549 0.746938775510204 (Washington Senators; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3990343199642683 0.0724 549 0.7459239130434783 (Greatest Hits; is a Best of; compilation album) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.3965328306168747 0.1443 550 0.746268656716418 (adaptive immunity; offers; significant protection) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3945868140188066 0.0195 551 0.7466124661246613 (Rome; to rule; the Greek cities) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.3944159741652931 0.0132 552 0.7469553450608931 (a woman 's risk of abnormal blood clotting; be slightly raise among; nonsmokers) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3944159741652931 0.0132 552 0.745945945945946 (a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; would be receive in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3936969721212025 0.0079 553 0.7462887989203779 (his illegitimate daughter Euphrosyne; be marrying to; Nogai Khan of the Golden Horde) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0079 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3936459870303665 0.7345 553 0.7452830188679245 (Mr. Miller; said in; response) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.39325594190296304 0.0084 554 0.7456258411843876 (Mrs. Coleman; is; the Maidenform strategist) false false Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . nn(Coleman_NNP_1_5, Mrs._NNP_0_0); punct(Coleman_NNP_1_5, ,_,_2_13); appos(Coleman_NNP_1_5, 73_CD_3_15); punct(Coleman_NNP_1_5, ,_,_4_18); rcmod(Coleman_NNP_1_5, declined_VBD_6_24); punct(Coleman_NNP_1_5, ,_,_10_51); nsubj(declined_VBD_6_24, who_WP_5_20); xcomp(declined_VBD_6_24, interviewed_VBN_9_39); aux(interviewed_VBN_9_39, to_TO_7_33); auxpass(interviewed_VBN_9_39, be_VB_8_36); nsubj(strategist_NN_14_71, Coleman_NNP_1_5); cop(strategist_NN_14_71, is_VBZ_11_53); det(strategist_NN_14_71, the_DT_12_56); nn(strategist_NN_14_71, Maidenform_NNP_13_60); punct(strategist_NN_14_71, ._._15_82) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.39302843067752957 1.0 554 0.7446236559139785 (its common stock dividend; be reinstated at; a " modest level) false false CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0
0 0.3923860388041124 0.0066 554 0.7436241610738255 (consciousness; be the study of; human cognition) false false Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3923860388041124 0.0066 554 0.7426273458445041 (rivers; be the waters of; streams) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.39181989041263826 0.0103 555 0.7429718875502008 (a large group of interacting genes and gene products; are analyzed together in; systems biology) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0103 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.39166472230122723 0.02 556 0.7433155080213903 (Cheat " and " Drunk Girl; leaked in; November 2007) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0 0.390970927896387 0.1443 556 0.7423230974632844 (it; expects to make; substantial further provisions)[attrib=Moody said] false true Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.39082254617266304 0.111 557 0.7426666666666667 (its efforts; be begun in; 1989) false false The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0
1 0.39069246686877734 0.2444 558 0.7430093209054593 (it; is n't for; sale) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3898706420134547 0.036 558 0.7420212765957447 (Omaha; be the north end in; Nebraska) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.036 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.38974162820825553 0.0079 559 0.7423638778220452 (the first place St . Louis Cardinals; were playing on; June 10) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3873449532161556 0.0109 560 0.7427055702917772 (DeGol Brothers Lumber; be chairman of; Gallitzin) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.38668316487931237 0.006 560 0.7417218543046358 (They; be a large amount of; an oxygen-storing protein) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.3861158442151012 0.0478 561 0.7420634920634921 (Mr. Allday 's appointment; is subject to; confirmation) false false Mr. Allday 's appointment is subject to confirmation by the Senate . nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.3849025796350723 0.1349 561 0.7410832232496698 (it; would take Ford at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3836729620561133 0.0132 562 0.741424802110818 (them; be keep in; office) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.382632280799396 0.1349 562 0.7404479578392622 (a freely mating population; will give rise over; many generations) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.38211366497419724 0.0109 563 0.7407894736842106 (Thurston County; be eleven townships in; United States) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.38211366497419724 0.0109 564 0.7411300919842313 (Hualien City; is a township near; Taiwan) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.38211366497419724 0.0109 565 0.7414698162729659 (Custer County; be thirty-one townships in; United States) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.38211366497419724 0.0109 565 0.7404980340760158 (Atlanta; is a Queen Anne style house in; Georgia) false false The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.38100591900063385 0.0073 566 0.7408376963350786 (the fiscal third quarter; be ended in; Aug. 31) false false Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0073 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.380341261132203 0.0125 567 0.7411764705882353 (the subcellular structure; interacts directly with; stimuli) false false The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.3770735952807681 0.0155 568 0.741514360313316 (three tackles; be had on; December 10) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3769946758038716 0.0065 569 0.741851368970013 (Another historian; wrote on; the evidence) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0
0 0.37680754998492677 0.1473 569 0.7408854166666666 (they; gain; most of their heat) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.3761159172154244 0.0057 569 0.7399219765929779 (it; be a bid for; the company) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3750804465207591 0.0119 569 0.7389610389610389 (He; be his move to; Premier League side Fulham) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.3742486199402444 0.1443 570 0.7392996108949417 (this approach called reverse genetics; poses; a new challenge) false false But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.3740112786844178 0.0084 571 0.7396373056994818 (Ji-an; is; a township) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.3740112786844178 0.0084 572 0.7399741267787839 (Lakitelek; is; a large village) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.3740112786844178 0.0084 573 0.7403100775193798 (Lorenzo R. Stone House; is; a historic house) false false Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.3740112786844178 0.0084 573 0.7393548387096774 (Mr. Allday 's appointment; is; subject) false false Mr. Allday 's appointment is subject to confirmation by the Senate . nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.3740112786844178 0.0084 574 0.7396907216494846 (North Luffenham; is; a village) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.3740112786844178 0.0084 575 0.7400257400257401 (Plouzani; is; a commune) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.37259542692146636 0.0079 575 0.7390745501285347 (Vasques; be playing in; Tis Pity) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.37259542692146636 0.0079 576 0.7394094993581515 (quarterback Tom Brady; be tackling for; a five-yard loss) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3714964425578336 0.2444 577 0.7397435897435898 (Lucian; continues to; brood) false false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3711724206753627 0.1349 578 0.7400768245838668 (they; gain most of their heat from; external sources) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.3698868169915362 0.2444 579 0.7404092071611253 (it; continues to suffer from; the high cost carrying nonperforming assets)[attrib=Moody said] false true Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.36984747554522823 0.3797 580 0.7407407407407407 (Browning; wrote; a report) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.3684196799499456 0.2444 581 0.7410714285714286 (the root; depends on; the shoot) false false Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3659601870463054 0.0132 582 0.7414012738853503 (the cars; should be return to; dealers)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3641362963184191 0.111 583 0.7417302798982188 (lambda; be written with; the Greek letter) false false A temperate phage called lambda , written with the Greek letter , is widely used in biological research . det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.3638125708664116 0.0314 583 0.7407878017789072 (the Berlin Wall; was the escape route of; 57 people) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.36344528815769384 0.0071 583 0.7398477157360406 (first; be seen in; 1665)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree] true false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0071 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.3623222159183762 0.0227 584 0.7401774397972116 (Dean; be armed with; the newly-arrived 3.5-inch rocket launchers) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0227 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3620520294261897 0.0478 584 0.739240506329114 (Ciba-Geigy and Chiron; are successful with; their lower bid) false false The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0478 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.36164469694171136 0.1443 585 0.7395701643489254 (the market 's strong reaction; reflects; a general uneasiness)[attrib=Some dealers said] false true Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . det(dealers_NNS_1_5, Some_DT_0_0); nsubj(said_VBD_2_13, dealers_NNS_1_5); ccomp(said_VBD_2_13, reflects_VBZ_12_68); punct(said_VBD_2_13, ._._19_115); det(market_NN_5_27, the_DT_4_23); possessive(market_NN_5_27, 's_POS_6_34); poss(reaction_NN_8_44, market_NN_5_27); amod(reaction_NN_8_44, strong_JJ_7_37); prep(reaction_NN_8_44, to_TO_9_53); pobj(to_TO_9_53, Street_NNP_11_61); nn(Street_NNP_11_61, Wall_NNP_10_56); complm(reflects_VBZ_12_68, that_IN_3_18); nsubj(reflects_VBZ_12_68, reaction_NN_8_44); dobj(reflects_VBZ_12_68, uneasiness_NN_15_87); det(uneasiness_NN_15_87, a_DT_13_77); amod(uneasiness_NN_15_87, general_JJ_14_79); prep(uneasiness_NN_15_87, about_IN_16_98); pobj(about_IN_16_98, dollar_NN_18_108); det(dollar_NN_18_108, the_DT_17_104) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.3613586670198179 0.0195 585 0.7386363636363636 (he; to Thai; Paradorn Srichaphan) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3607758324689645 0.0079 586 0.7389659520807061 (the board; be expanding to; 11 members) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3607758324689645 0.0079 586 0.7380352644836272 (the phenotype; be determining from; the genotype) false false But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3607758324689645 0.0079 587 0.7383647798742138 (a pebble; be dropping into; a pond) false false Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . amod(travels_NNS_2_23, Electromagnetic_JJ_0_0); nn(travels_NNS_2_23, energy_NN_1_16); prep(travels_NNS_2_23, in_IN_3_31); punct(travels_NNS_2_23, ._._17_109); pobj(in_IN_3_31, waves_NNS_5_43); amod(waves_NNS_5_43, rhythmic_JJ_4_34); amod(waves_NNS_5_43, analogous_JJ_6_49); prep(analogous_JJ_6_49, to_TO_7_59); pobj(to_TO_7_59, those_DT_8_62); partmod(those_DT_8_62, created_VBN_9_68); prep(created_VBN_9_68, by_IN_10_76); pcomp(by_IN_10_76, dropping_VBG_11_79); dobj(dropping_VBG_11_79, pebble_NN_13_90); prep(dropping_VBG_11_79, into_IN_14_97); det(pebble_NN_13_90, a_DT_12_88); pobj(into_IN_14_97, pond_NN_16_104); det(pond_NN_16_104, a_DT_15_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3607758324689645 0.0079 588 0.7386934673366834 (phylogeny; be inferring from; these homologous characters) false false Next we must choose a method of inferring phylogeny from these homologous characters . mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.36044786837561094 0.1473 589 0.739021329987453 (the South; seek; equality)[attrib=Pike said] false true At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.359664639398116 0.02 590 0.7393483709273183 (Stephen Curry; played basketball at; Davidson College) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3594649423619765 0.0132 591 0.7396745932415519 (activities; to be solo on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.35907471579469535 0.0119 592 0.74 (he; be three tackles including; 1.5 sacks) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.35862468602310377 0.0104 593 0.7403245942571786 (he; to move to; Puerto Rico) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.35813481401187625 0.0478 594 0.7406483790523691 (the blood; remains separate from; fluid) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.35476110701020963 0.006 594 0.7397260273972602 (Ford; said of; owners) false false Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 1.0
1 0.3545289393299356 0.0724 595 0.7400497512437811 (Rick Perry; became Governor of; Texas) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0
0 0.352555002152722 0.0282 595 0.7391304347826086 (student; be Royal Military College of; Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0282 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3518477200881743 0.0282 595 0.7382133995037221 (North Carolina; be Davidson College in; Davidson) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0282 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3510288155762372 0.02 596 0.7385377942998761 (the senior vice president of Gulf Power; died in; the plane crash) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.34969321202788156 0.0155 597 0.7388613861386139 (Bulgaria; be pillaged as; a Byzantine ally) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.34896876533134014 0.0162 598 0.7391841779975278 (Rexford Tugwell; be planner for; New Deal brain trust) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.34896876533134014 0.0162 598 0.7382716049382716 (trust planner Rexford Tugwell; be brain for; New Deal) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3487993918716189 0.1473 598 0.7373612823674476 (supply; would overwhelm; demand) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.34808052568367903 0.0132 598 0.7364532019704434 (Ford; would be take at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3464124449885764 0.0084 598 0.7355473554735548 (the blood; remains; separate) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.34590527828508477 0.0132 598 0.7346437346437347 (rise; will be give over; many generations) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.34573008746944356 0.0021 598 0.7337423312883435 (the rare Japanese; had gained; some education) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0021 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.345451461082249 0.0066 598 0.7328431372549019 (York-based Hallwood Group Inc.; be the proposal by; Equitec) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3439900554103357 0.0067 599 0.7331701346389229 (a popular advertising industry practice using " sound-alike " performers to tout products; be threatens by; a case) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
0 0.3412652759731273 0.0623 599 0.7322738386308069 (Pike; said to; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0623 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.3402858130617332 0.1473 599 0.7313797313797313 (a freely mating population; will give; rise) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.340277911009636 0.111 600 0.7317073170731707 (a larger facility; be designed by; Maya Lin) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3386014625853597 0.1443 600 0.730816077953715 (e-catenin; also helps to control; gastrulation) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3367875187596867 0.1492 601 0.7311435523114356 (Rexford Tugwell; be planner of; New Deal brain trust) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3367875187596867 0.1492 602 0.7314702308626975 (trust planner Rexford Tugwell; be brain of; New Deal) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.33483242914292427 0.0128 603 0.7317961165048543 (the death toll; might be significantly lower than; 250 initially feared) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0128 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.33406172606196227 0.3797 603 0.730909090909091 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.333063161580075 0.0067 603 0.7300242130750605 (Mikhail Gorbachev 's Soviet Union; to supply with; bullets) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.33160810624428727 0.1473 604 0.7303506650544136 (we; can not fully explain; a higher level of order) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.3300218136329411 0.0109 604 0.7294685990338164 (the 1998 H. C. Urey Prize and a professor; be recipient of; Santa Cruz) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3300218136329411 0.0109 604 0.7285886610373945 (Omaha; be the north end of; Nebraska) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.32961828526584036 0.0095 604 0.727710843373494 (Bics-Kiskun county; be the Southern Great Plain region of; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.3275723445676998 0.0961 605 0.7280385078219013 (Finistre; be department in; Bretagne) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.32611442714398514 0.7345 606 0.7283653846153846 (July; saw suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.32561690221860234 0.0083 606 0.7274909963985594 (Pike; said in; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0083 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.32401891525502385 0.0067 607 0.7278177458033573 (the need; be justifies by; the presence of internal and external " enemies) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.3228364010311089 0.0307 607 0.7269461077844311 (Land snails; play a key role in nutrient cycling for; example)[enabler=while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes] true false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 1.0
0 0.32236525142050676 0.0292 607 0.7260765550239234 (shareholder Max Grill of New York; squandering; the company 's assets) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.32171811897955555 0.0132 607 0.7252090800477897 (a claim; to be insert by; the Philippines) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.31902467958877745 0.4031 608 0.7255369928400954 (Dr. Erik I. Asphaug; be recipient of; the 1998 H. C. Urey Prize and a professor) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.31883266314736386 0.0071 608 0.7246722288438617 (first; be seen by; Robert Hooke)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree] true false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0071 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.31632804768618916 0.0079 608 0.7238095238095238 (downriver; be sailing to; the Persian Gulf) false false He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.31632804768618916 0.0079 608 0.72294887039239 (countryman Tommy Robredo; be defeating in; the second round) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.31632804768618916 0.0079 609 0.7232779097387173 (an 11-yard sack of Brady; be sharing with; defensive tackle Vonnie Holliday) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.3142555775934053 0.0079 609 0.7224199288256228 (a high body temperature; be maintaining through; ectothermy) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.3105256048279929 0.0067 610 0.7227488151658767 (about 800 retail gas stations; be owns by; Harken) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.3097776093741795 0.0577 611 0.7230769230769231 (the grand jury; has asked; numerous questions) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3097109029157713 0.3797 611 0.7222222222222222 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians; Ehud Goldwasser and Eldad Regev) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.308861688167056 0.0084 611 0.7213695395513577 (society; is; willing) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0
1 0.3085181988096567 0.111 612 0.7216981132075472 (the infectious particle; be now known as; tobacco mosaic virus) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0 0.30715844813761695 0.0331 612 0.7208480565371025 (New Zealand; be region in; Wellington) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0331 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.3044025740296432 0.02 613 0.7211764705882353 (Nogai Khan of the Golden Horde; pillaged Bulgaria as; a Byzantine ally) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.30421898282603377 0.0132 613 0.7203290246768508 (the original paper; be analyze in; Inquiry) false false Read and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers . cc(Read_NNP_0_0, and_CC_1_5); conj(Read_NNP_0_0, analyze_VB_2_9); punct(Read_NNP_0_0, :_:_10_57); dep(Read_NNP_0_0, Papers_NNP_13_83); punct(Read_NNP_0_0, ._._14_90); dobj(analyze_VB_2_9, paper_NN_5_30); prep(analyze_VB_2_9, in_IN_6_36); det(paper_NN_5_30, the_DT_3_17); amod(paper_NN_5_30, original_JJ_4_21); pobj(in_IN_6_36, Inquiry_NNP_7_39); prep(Inquiry_NNP_7_39, in_IN_8_47); pobj(in_IN_8_47, Action_NNP_9_50); nn(Papers_NNP_13_83, Interpreting_NNP_11_59); nn(Papers_NNP_13_83, Scientific_NNP_12_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.30394134341279455 0.0477 614 0.7206572769953051 (the deadliest aspect of the quake; be The failure in Oakland of the freeway segment in; Oakland) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0477 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.30345497264145543 0.0477 614 0.7198124267291911 (purify the waters of streams , rivers , and lakes; the filtering activities of; freshwater bivalves) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3021855508008761 0.7345 614 0.7189695550351288 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for; a five-yard loss) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.3014901362258629 0.7345 614 0.7181286549707603 (you; learned for; example) false false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0
1 0.2992073584390562 0.0162 615 0.7184579439252337 (Jim Cornette; be manager of; Vader) false false As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2964373979040095 0.1473 616 0.7187864644107351 (it; would fill; a gap) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.2945940387262835 0.0162 617 0.7191142191142191 (C.J. Wilson; be pitcher for; Texas Rangers) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.2897411382445026 0.0071 617 0.7182770663562281 (response; said to; Mr. Miller) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.2889658386073632 0.7345 617 0.7174418604651163 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.2889658386073632 0.7345 617 0.7166085946573751 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2889658386073632 0.7345 618 0.7169373549883991 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2882037519386529 0.0065 619 0.7172653534183082 (Browning; wrote on; the gassing facilities) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.28563566605776536 0.006 619 0.7164351851851852 (Pike; said of; the South) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.28348434400719724 0.1492 620 0.7167630057803468 (C.J. Wilson; be pitcher of; Texas Rangers) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.28112065091369526 0.0901 621 0.7170900692840647 (Montreal; be located in; Canada) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.2788421890632288 0.7345 622 0.7174163783160323 (Prince Kitashirakawa; married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on; April 29 , 1909) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2788421890632288 0.7345 623 0.717741935483871 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2788421890632288 0.7345 624 0.7180667433831991 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2788421890632288 0.7345 625 0.7183908045977011 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.2777133130201241 0.1443 625 0.7175660160734788 (Lenneth; tells; him) false false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0
0 0.2773012516628655 0.0155 625 0.716743119266055 (their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; May 2006) false false Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.2736663139421735 1.0 625 0.715922107674685 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , by; botulinum toxin) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.2726426369064801 0.111 626 0.7162471395881007 (a 3 % wage boost and a 3 % bonus; be followed by; a 3 % increase) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.27118821818699634 0.0444 627 0.7165714285714285 (he; besieged the town in; 190 BC) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0
1 0.2711377820853715 0.4031 628 0.7168949771689498 (Jacob F. " Jake " Horton; be the senior vice president of; Gulf Power) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.2701597941429324 0.0095 628 0.7160775370581528 (Joseph Lombardo; be numerous defendants in; the government 's sweeping racketeering suit) false false Joseph Lombardo , who the government alleged was the " captain " of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0095 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.2691256472923294 0.0192 628 0.715261958997722 (Flagellated sperm swim; entering the archegonia in; response) false false Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0192 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
1 0.26856409396877384 0.02 629 0.7155858930602957 (Cheat " and " Drunk Girl; leaked on; the internet) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.26781122932777474 0.111 630 0.7159090909090909 (a song; be written by; the Dave Matthews Band) false false The Space Between is a song written by the Dave Matthews Band . det(Space_NN_1_4, The_DT_0_0); advcl(Space_NN_1_4, is_VBZ_3_18); punct(Space_NN_1_4, ._._12_62); mark(is_VBZ_3_18, Between_IN_2_10); nsubj(is_VBZ_3_18, song_NN_5_23); det(song_NN_5_23, a_DT_4_21); partmod(song_NN_5_23, written_VBN_6_28); prep(written_VBN_6_28, by_IN_7_36); pobj(by_IN_7_36, Band_NNP_11_57); det(Band_NNP_11_57, the_DT_8_39); nn(Band_NNP_11_57, Dave_NNP_9_43); nn(Band_NNP_11_57, Matthews_NNP_10_48) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.2674129657910275 0.0155 631 0.7162315550510783 (one of the first Women 's Studies classes; be taught at; Richmond College) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.2651201299329215 0.0065 632 0.7165532879818595 (Browning; wrote on; the evidence) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
1 0.261186270271414 0.7345 633 0.7168742921857305 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam in; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.2602689412869481 0.3797 633 0.7160633484162896 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked; Senator Panfilo Lacson) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.25880317118186125 0.0079 634 0.7163841807909604 (a signal; be transmitting over; long distances) false false Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.25798224628800415 0.0119 635 0.7167042889390519 (he; be a Master of; Arts) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.2567293934561119 0.0331 635 0.7158962795941376 (southern Hungary; be region in; Southern Great Plain) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0331 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.2565178699697837 0.0084 635 0.7150900900900901 (it; is particularly; interested) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.25299570924899534 0.0079 636 0.7154105736782902 (Applied Power Inc.; be transforming in; the global market) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.25299570924899534 0.0079 637 0.7157303370786516 (Applied Power Inc.; be transforming into; a feisty player) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.25299570924899534 0.0079 638 0.7160493827160493 (an item; be filming for; Countryfile) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.25227566039598587 0.7345 638 0.7152466367713004 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady with; defensive tackle Vonnie Holliday) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.2473339107155083 0.0119 638 0.7144456886898096 (it; the previously announced purchase of; Imperial Cup Corp.) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.24672366389798675 0.0067 638 0.7136465324384788 (strong ties; be has by; Mr. Inouye) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.24349764043648267 0.0079 639 0.7139664804469273 (the archegonia; be entering in; response) false false Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.24007594315179578 0.0067 640 0.7142857142857143 (it; to suffer from; the high cost carrying nonperforming assets) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0067 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.23864402766794252 0.9555 641 0.7146042363433668 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore in; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.23342222907298363 0.0132 642 0.7149220489977728 (Equitec; would be replace under; the proposal) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.22943532654374016 0.0444 643 0.7152391546162402 (adaptations; have evolved enable most aquatic animals to be very efficient in gas exchange in; the context of these challenges) false false In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . pobj(In_IN_0_0, context_NN_2_7); det(context_NN_2_7, the_DT_1_3); prep(context_NN_2_7, of_IN_3_15); pobj(of_IN_3_15, challenges_NNS_5_24); det(challenges_NNS_5_24, these_DT_4_18); prep(evolved_VBN_9_54, In_IN_0_0); punct(evolved_VBN_9_54, ,_,_6_35); nsubj(evolved_VBN_9_54, adaptations_NNS_7_37); aux(evolved_VBN_9_54, have_VBP_8_49); dobj(evolved_VBN_9_54, that_IN_10_62); punct(evolved_VBN_9_54, ._._22_132); pcomp(that_IN_10_62, enable_VB_11_67); dobj(enable_VB_11_67, animals_NNS_14_87); advmod(aquatic_JJ_13_79, most_RBS_12_74); amod(animals_NNS_14_87, aquatic_JJ_13_79); xcomp(animals_NNS_14_87, efficient_JJ_18_106); aux(efficient_JJ_18_106, to_TO_15_95); cop(efficient_JJ_18_106, be_VB_16_98); advmod(efficient_JJ_18_106, very_RB_17_101); prep(efficient_JJ_18_106, in_IN_19_116); pobj(in_IN_19_116, exchange_NN_21_123); nn(exchange_NN_21_123, gas_NN_20_119) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.22447191468175065 0.0191 643 0.7144444444444444 (he; is not captured; home) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
1 0.22277700681354495 0.111 644 0.7147613762486127 (the freeway segment; be known as; the Cypress structure) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.2227673107089999 0.7345 645 0.7150776053215078 (the band; reached a wider audience supporting U.S. goth-metal act Type O Negative in; 1997) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.22254466022892352 0.0079 645 0.7142857142857143 (it; be breaking into; its parts) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.22163287485371197 0.006 645 0.713495575221239 (he; said of; I) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 1.0
1 0.21851645044959095 0.1443 646 0.7138121546961326 (Susan; phones the real estate agency to tell; Jerry) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.2182239652508405 0.0084 646 0.7130242825607064 (Mr. Inouye; is; able) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.21709886071443948 0.0416 647 0.7133406835722161 (76 %; have; a favorable opinion of her) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0416 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.21626093986258596 0.1349 647 0.7125550660792952 (scientists and the public; Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on; a case-by-case basis) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.21477367315706544 0.0132 647 0.7117711771177118 (a higher level of order; can be not fully explain on; the one hand) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.20960831565057927 0.0155 647 0.710989010989011 (0.1 %; be rose on; a seasonally adjusted basis) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.20893674207645418 0.0084 648 0.7113062568605928 (GDP; is; the total value of a nation 's output of goods and services) false false GDP is the total value of a nation 's output of goods and services . nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0
0 0.2087794370410841 0.0079 648 0.7105263157894737 (countryman Tommy Robredo; be defeating in; the first round and Italian Davide Sanguinetti) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.2087794370410841 0.0079 648 0.7097480832420592 (its women 's magazine portfolio; be selling to; the Meredith Corporation and its business magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.2087794370410841 0.0079 649 0.7100656455142232 (demos; be recording for; their next album) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.20810428267890088 0.1349 649 0.7092896174863388 (we; can not fully explain a higher level of order on; the one hand) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
1 0.2080512889741795 0.7345 650 0.7096069868995634 (he; led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol as; Commanding General of the newly formed Eighth Army) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.20719804071979295 0.0079 651 0.7099236641221374 (the soil; be affecting in; a way) false false The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0 0.20374160519204396 0.3797 651 0.7091503267973857 (Jr.; linked; Senator Panfilo Lacson) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.2016678985903059 0.0444 651 0.7083786724700761 (chemiosmosis; has helped of; its central importance) false false Because of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.2010895709903177 0.0079 651 0.7076086956521739 (Mr. Miller; said; response) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.1971501007736681 0.0444 651 0.7068403908794788 (chemiosmosis; its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify; the study of bioenergetics) false false Because of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.19148155610938786 0.7345 652 0.7071583514099783 (Rage; left the music industry generally to focus on acting , appearing in an episode of Kenan & Kel after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.18521423976058438 0.7345 652 0.7063921993499458 (July; saw bringing to; an ignominious close)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0 0.17953692638336752 0.0155 652 0.7056277056277056 (their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; nearly two decades) false false Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.17876001014411533 0.3797 653 0.705945945945946 (Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly; Immediately instituted; legal action) false false Immediately , Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly , instituted legal action against the journal and its editor , who was subsequently sentenced to six months imprisonment and made to pay a fine of one hundred rupees . nn(Sastri_NNP_3_23, Sivanath_NNP_2_14); punct(Sastri_NNP_3_23, ,_,_4_30); conj(Sastri_NNP_3_23, Sircar_NNP_6_41); cc(Sastri_NNP_3_23, and_CC_7_48); conj(Sastri_NNP_3_23, Ganguly_NNP_9_63); punct(Sastri_NNP_3_23, ,_,_10_71); nn(Sircar_NNP_6_41, Nilratan_NNP_5_32); nn(Ganguly_NNP_9_63, Dwarkanath_NNP_8_52); advmod(instituted_VBD_11_73, Immediately_RB_0_0); punct(instituted_VBD_11_73, ,_,_1_12); nsubj(instituted_VBD_11_73, Sastri_NNP_3_23); dobj(instituted_VBD_11_73, action_NN_13_90); punct(instituted_VBD_11_73, ._._39_237); amod(action_NN_13_90, legal_JJ_12_84); prep(action_NN_13_90, against_IN_14_97); pobj(against_IN_14_97, journal_NN_16_109); det(journal_NN_16_109, the_DT_15_105); cc(journal_NN_16_109, and_CC_17_117); conj(journal_NN_16_109, editor_NN_19_125); punct(journal_NN_16_109, ,_,_20_132); rcmod(journal_NN_16_109, sentenced_VBN_24_155); poss(editor_NN_19_125, its_PRP$_18_121); nsubjpass(sentenced_VBN_24_155, who_WP_21_134); auxpass(sentenced_VBN_24_155, was_VBD_22_138); advmod(sentenced_VBN_24_155, subsequently_RB_23_142); prep(sentenced_VBN_24_155, to_TO_25_165); punct(sentenced_VBN_24_155, imprisonment_,_28_179); cc(sentenced_VBN_24_155, and_CC_29_192); conj(sentenced_VBN_24_155, made_VBD_30_196); pobj(to_TO_25_165, months_NNS_27_172); num(months_NNS_27_172, six_CD_26_168); xcomp(made_VBD_30_196, pay_VB_32_204); aux(pay_VB_32_204, to_TO_31_201); dobj(pay_VB_32_204, fine_NN_34_210); det(fine_NN_34_210, a_DT_33_208); prep(fine_NN_34_210, of_IN_35_215); pobj(of_IN_35_215, rupees_NNS_38_230); number(hundred_CD_37_222, one_CD_36_218); num(rupees_NNS_38_230, hundred_CD_37_222) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.17805830632398745 0.0054 653 0.7051835853131749 (Mr. Inouye; to insert; a claim) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0054 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.17757573578880137 0.0577 654 0.7055016181229773 (he; besieged; the town) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0
0 0.1763505556877926 0.3797 654 0.7047413793103449 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing; an 11-yard sack of Brady) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.171405556467821 0.0079 654 0.7039827771797632 (13-0; be trailing in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 1.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.16973592019305225 1.0 654 0.7032258064516129 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , in; another example) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.16770193788121904 0.2444 655 0.7035445757250268 (he; expects to name a new group president to head that operation following; the Nov. 8 board meeting)[attrib=Mr. Bailey said] false true Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.16532737265460923 0.7345 655 0.7027896995708155 (the Appropriations Committee leadership; turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months on; back-to-back roll calls) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.16256196782354992 0.0155 655 0.7020364415862809 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.16256196782354992 0.0155 655 0.7012847965738758 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.16136428146081588 0.7345 656 0.7016042780748664 (Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio to; the Meredith Corporation and its business magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.15589581465104194 0.0155 656 0.7008547008547008 (efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy; be turned back on; back-to-back roll calls) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.15461839701478508 0.0305 656 0.7001067235859125 (its common stock dividend; be reinstated in; this year) false false CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0305 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0
1 0.14704461479396946 0.3797 657 0.7004264392324094 (July; saw suffer; two 8-0 demolitions)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0
0 0.14281035771963146 0.0071 657 0.6996805111821086 (1980; came to; He) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
1 0.14232393373584143 0.1473 658 0.7 (Dr. Novello; would succeed; C. Everett Koop)[enabler=If she is nominated by President Bush and confirmed by the Senate] true false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.13456659745447175 0.3797 658 0.6992561105207227 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.1314968860500101 0.0155 658 0.6985138004246284 (0.1 %; be rose in; September) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.1314968860500101 0.0155 658 0.6977730646871686 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.1314968860500101 0.0155 658 0.6970338983050848 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.13137131096445323 0.0155 658 0.6962962962962963 (0.1 %; be rose from; the previous month) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.13137131096445323 0.0155 658 0.6955602536997886 (0.1 %; be rose to; 2.5 million) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0 0.12054297199339997 0.0079 658 0.6948257655755016 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0
0 0.11816614735714406 0.7345 658 0.6940928270042194 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses on; December 10) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.11729588290783442 0.1349 659 0.6944151738672286 (the team; suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.1349 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.11420136506504475 0.0509 659 0.6936842105263158 (PLC; has practiced law with; Boult) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.11420136506504475 0.0509 659 0.6929547844374343 (PLC; has practiced law with; Boult) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.11360950693592399 0.1349 660 0.6932773109243697 (he; will receive an $ 107,500 annually , or $ 537,000 total , from; the Booster club) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.10183616495893723 0.0132 661 0.6935991605456453 (two 8-0 demolitions; be suffer by; Des Moines Menace and in the last game of the season) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0132 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.0981908038196948 0.1349 661 0.6928721174004193 (workers; would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.09287150831236092 0.0307 662 0.6931937172774869 (76 %; have a favorable opinion of her among; professionals) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.09127825067320518 0.0509 662 0.6924686192468619 (2003; be released on; March 6) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.08526106540263802 0.1473 663 0.6927899686520376 (the team; suffer; two 8-0 demolitions) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.08254269274013405 0.1349 664 0.6931106471816284 (he; will receive an $ 107,500 annually , or $ 537,000 total , as; a part of Jeff Bowden 's agreement) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0
0 0.08166781495966251 0.0477 664 0.6923879040667362 (pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility for; example) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0
0 0.07024024418080231 0.0388 664 0.6916666666666667 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore of; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0388 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0
1 0.06811636875046262 0.1349 665 0.6919875130072841 (he; will receive an $ 107,500 annually , or $ 537,000 total , through; August 2012) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.058232215411916234 0.02 666 0.6923076923076923 (C. Everett Koop; rattled conservatives alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.058232215411916234 0.02 667 0.6926272066458983 (C. Everett Koop; rattled liberals alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.0579112400897685 0.0155 668 0.6929460580912863 (liberals and conservatives; be rattled alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
1 0.04122387589030051 0.0025 669 0.6932642487046632 (62 %; approve of; her husband 's performance) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0025 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0
================================================
FILE: core/pom.xml
================================================
4.0.0
edu.washington.cs.knowitall
knowitall-oss
1.0.2
edu.washington.cs.knowitall.ollie
ollie-core_2.9.2
1.0.4-SNAPSHOT
ollie-core
Ollie is an open information extractor for binary relations.
https://github.com/knowitall/ollie
scm:git://github.com/knowitall/ollie.git
scm:git:git@github.com:knowitall/ollie.git
HEAD
Ollie Software License Agreement
https://raw.github.com/knowitall/ollie/master/LICENSE
repo
University of Washington CSE
http://cs.washington.edu/
Michael Schmitz
Robert Bart
2012
UTF-8
2.4.1
edu.washington.cs.knowitall.nlptools
nlptools-core_2.9.2
${nlptools.version}
edu.washington.cs.knowitall.nlptools
nlptools-stem-morpha_2.9.2
${nlptools.version}
edu.washington.cs.knowitall.nlptools
nlptools-conf-breeze_2.9.2
${nlptools.version}
org.scalaz
scalaz-core_2.9.2
7.0.0
org.slf4j
slf4j-api
1.7.2
ch.qos.logback
logback-classic
1.0.9
test
ch.qos.logback
logback-core
1.0.9
test
junit
junit
4.11
test
org.specs2
specs2_2.9.2
1.12.3
test
src/main/scala
src/test/scala
net.alchim31.maven
scala-maven-plugin
3.1.1
compile
testCompile
doc-jar
-deprecation
-unchecked
-Xms128m
-Xmx1024m
================================================
FILE: core/project/plugins.sbt
================================================
resolvers += Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases")) (Resolver.ivyStylePatterns)
addSbtPlugin("com.jsuereth" % "xsbt-gpg-plugin" % "0.6")
================================================
FILE: core/scripts/applypatterns.sh
================================================
# 1 -- patterns
# 2 -- sentences
mvn -q -e -f ../pom.xml compile exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.PatternExtractor -Dexec.args="--patterns $1 --sentences $2"
================================================
FILE: core/scripts/build_templates.sh
================================================
mkdir "$1/templates/"
mvn exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.BuildTemplates -Dexec.args="$1/raw/patterned.txt $1/templates/templates.txt --reltemplates $HOME/public/read/reltemplates.txt --debug $1/templates/"
================================================
FILE: core/scripts/create_patterns.sh
================================================
mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.BuildTreePatterns -Dexec.args="$1/raw/parsed.txt $1/raw/patterned-all.txt -p --length 3" 2> $1/raw/patterned-all.log
================================================
FILE: core/scripts/create_test_train.sh
================================================
# 1 -- lda directory
ROWS="$1/raw/patterned.txt"
TEST="$1/raw/test.txt"
TRAIN="$1/raw/train.txt"
mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.lda.CreateTestSet -Dexec.args="$ROWS $TEST $TRAIN"
================================================
FILE: core/scripts/extractor.sh
================================================
echo "$*"
mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.OpenParse -Dexec.args="$*"
================================================
FILE: core/scripts/keep_common_patterns.sh
================================================
# 1 -- lda directory
cut -f5 "$1/raw/patterned-all.txt" | sort | uniq -c | sort -nr > "$1/raw/patterns.txt"
mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.KeepCommonPatterns -Dexec.args="$1/raw/patterned-all.txt 10" > "$1/raw/patterned.txt"
================================================
FILE: core/src/main/resources/edu/knowitall/ollie/cognitiveWords.txt
================================================
accept
admit
affirm
aim
allow
apprehend
assert
attest
aver
avouch
avow
believe
claim
comprehend
confirm
conjecture
consider
contend
define
deny
describe
discover
doubt
dream
envisage
expect
fathom
feel
follow
foreknow
foresee
foretell
grant
grasp
guarantee
guess
hold
hope
identify
imagine
infer
intend
know
maintain
mean
misapprehend
misconstrue
misinterpret
misunderstand
observe
plan
portray
presume
prophesy
propose
reaffirm
realize
recognize
recollect
remember
report
represent
repute
reveal
see
show
speculate
suppose
surmise
suspect
swear
think
trust
understand
vaticinate
visualize
wish
yen
================================================
FILE: core/src/main/resources/edu/knowitall/ollie/communicationWords.txt
================================================
acknowledge
acquaint
add
advise
affirm
allege
announce
apprise
articulate
believe
blab
blurt
claim
comment
communicate
confess
confide
confirm
consider
convey
corroborate
declare
deem
demonstrate
disclose
divulge
elaborate
elucidate
establish
esteem
exclaim
explain
explicate
expound
feel
illustrate
imagine
inform
insinuate
insist
intimate
justify
know
leak
lecture
mention
moralize
narrate
note
notify
observe
pose
preach
proclaim
promulgate
propose
prove
rant
rate
read
reaffirm
recite
reckon
recount
reiterate
relate
relay
remark
remember
remind
repeat
reply
report
respond
retort
reveal
say
see
show
sniff
speak
state
suppose
suspect
talk
teach
tell
testify
theorize
think
update
utter
venture
verify
view
voice
write
================================================
FILE: core/src/main/resources/edu/knowitall/ollie/confidence/default-classifier.txt
================================================
args start and end with noun 0.030924657084179144
rel ends with of 0.1013506657501542
arg1 contains pronoun 0.19630801348782667
arg2 contains pronoun -0.13341646099789348
long relation -0.3547145229191737
gap of 10 in rel -0.34306426484946456
vacuous extraction -0.6389807893982924
nn edges in pattern 0.9130032848389
arg1 is proper 0.07933280909554899
Intercept 0.0
sentence begins with arg1 -0.1588407285556643
if right before arg1 -1.2206208992816086
arg2 is proper -0.04306420146120506
arg2 borders appositive -0.0017006187220647805
rel contains gerund -0.26200297625650837
arg1 borders appositive -0.13448972417475485
noun-verb-noun in arg1 0.0
prep right after arg2 0.19212879336967245
prep in arg2 0.16539493294341892
arg2 contains infinitive -0.0
prep mismatch in pattern -0.20092201136389673
sentence is imperative 0.11745202578145564
hyp words in rel -0.1449927441123399
sentence ends with arg2 0.11610654106632967
noun-verb-noun in arg2 0.07217080739835992
rel is contiguous 0.12562188545360878
non-contiguous rel -0.1849662870655201
semantic constraints in pattern -0.4343558913425681
openparse confidence 0.43411514029724824
arg1 bad characters -0.40339032821185783
sentence starts with extraction 0.18854224217974247
arg2 bad characters -0.009939551407472108
rel contains verb 0.4757113580400253
rel starts with be 0.0
prep right before arg1 -0.2350155331052106
sentence has question mark 0.0
arg2 before arg1 -0.35791735399208685
arg2 before rel -0.023882392179128745
rel bad characters -0.11794120943690224
================================================
FILE: core/src/main/resources/edu/knowitall/ollie/prefixWords.txt
================================================
after
although
because
before
but
however
if
once
that
though
when
whenever
whether
where
while
would
================================================
FILE: core/src/main/resources/edu/knowitall/openparse/categories/location.txt
================================================
abbacy
abode
abutment
abysm
abyss
acme
addition
address
aerie
aerospace
aery
aim
air
airhead
airspace
airway
ambiance
ambience
anchorage
angle
anomaly
antapex
antinode
antipodes
aperture
apex
aphelion
apoapsis
apogee
apojove
apolune
aposelene
approach
apron
archbishopric
archdeaconry
archdiocese
archduchy
area
arena
arrowhead
ashram
asthenosphere
atelier
atmosphere
axil
axis
azimuth
back
backside
backwater
backwoods
backyard
bailiwick
bakehouse
bakery
bakeshop
barb
barony
barren
barrio
barycenter
base
basin
battlefield
battlefront
battleground
beachhead
beak
bearing
beat
bed
bedground
bedside
beehive
beeline
beginning
belly
bellybutton
belt
bent
benthos
berm
berth
bight
bilge
bilges
bilocation
bindery
biosphere
birthplace
bishopric
bitthead
bivouac
block
boatyard
bookbindery
boondocks
border
borderland
borderline
borough
bottom
bound
boundary
bounds
bourn
bourne
bowels
breach
breadbasket
break
brickfield
brickyard
bridgehead
brink
brokerage
brow
buffer
bull
burg
bush
cabstand
caliphate
cambium
camp
campground
campong
campsite
campus
canthus
canton
cap
capital
capitulum
carrefour
casbah
cavern
cavity
cell
cemetery
center
centerfield
central
centre
centrex
centroid
chap
chapiter
charnel
chasm
checkpoint
chink
chokepoint
chromosphere
churchyard
circle
circuit
circumference
circus
city
clear
clearing
cleft
cloverleaf
coalfield
coastline
col
colliery
colony
columbarium
common
commons
commonwealth
commune
community
compartment
confluence
conurbation
core
corium
corncob
corner
corneum
cornfield
country
countryside
county
course
court
cowtown
crack
cradle
cranny
crawlspace
creamery
crenel
crenelle
crest
crevasse
crevice
crinion
croft
crosscut
crossing
crossroad
crossway
crotch
crown
crud
crust
crypt
cubbyhole
culmination
curtilage
cusp
cuticle
dairy
danger
dark
darkness
dateline
dec
declination
defile
delimitation
demarcation
demesne
den
department
dependency
depth
derivation
derma
dermis
desert
desktop
destination
determinant
development
diamond
diastema
dig
diocese
dip
direction
distance
district
divide
dockside
dockyard
dogleg
domain
domicile
dominion
dooryard
downtown
drop
duchy
dukedom
dump
dumpsite
earldom
earreach
earshot
earth
east
ecliptic
edge
edging
element
emirate
empire
emptiness
empyrean
encampment
enclave
enclosure
end
endpoint
entrepot
environment
environs
eparchy
epicenter
epicentre
epidermis
episcopate
epitope
equator
equinoctial
equinox
exaltation
exarchate
excavation
exchange
exosphere
expanse
exterior
extreme
extremity
extremum
exurbia
eye
eyeshot
eyrie
eyry
face
fairground
fairway
farm
farmland
farmplace
farmstead
fatherland
faubourg
fault
faulting
fiefdom
field
fingertip
finish
firebreak
fireguard
fireside
firmament
fishery
fissure
flies
floor
flowerbed
fluke
flyway
focus
foot
foothold
foramen
forefront
forepart
forge
fork
fountainhead
fracture
fringe
front
frontier
funfair
gaff
gap
garden
gasfield
gasworks
geosphere
ghetto
glade
glassworks
goal
goldfield
gorge
grainfield
grange
grassland
grave
graveyard
green
greenbelt
greenway
gridiron
ground
grounds
grove
gulf
habitat
habitation
hairline
hamlet
hand
hangout
harbor
harborage
harbour
harbourage
hatchery
haunt
haven
hayfield
head
heading
headspring
headwater
hearing
heart
hearth
heartland
heath
heathland
heaven
heavens
heel
heights
heliopause
heliosphere
hell
hellhole
hem
hemisphere
hemline
here
heronry
hiatus
hideaway
hideout
high
hilltop
hilum
hinterland
hip
hipline
hole
hollow
holy
home
homeland
hometown
horizon
horst
hotbed
hotspot
house
hub
hydathode
hydrosphere
imperium
inclination
inferno
infield
innersole
inside
insole
interchange
interface
interior
intersection
ionosphere
ironworks
irredenta
irridenta
isarithm
island
isobar
isochrone
isoclinal
isogone
isogram
isohel
isopleth
isotherm
itinerary
job
junction
jungle
junkyard
jurisdiction
justiciary
juxtaposition
kampong
kasbah
key
khanate
kingdom
knothole
kraal
lab
laboratory
lair
land
landmark
landscape
landscaping
latitude
launderette
laundry
lawn
layer
lea
lead
leak
lee
leeward
left
leftfield
lenticel
ley
lie
light
limb
limit
line
lineation
lithosphere
locale
locality
location
locus
longitude
lookout
lot
loxodrome
luff
lumberyard
mandate
mandatory
mansion
mantle
march
marchland
mare
maria
mastaba
mastabah
masthead
matrix
mausoleum
maximum
meadow
mecca
medina
medium
meeting
megalopolis
meridian
mesosphere
mete
metropolis
micropyle
midair
midden
middle
midfield
midland
midpoint
midst
midstream
midway
minefield
minimum
molding
monument
moorage
mooring
motherland
moulding
mouth
municipality
nadir
nape
navel
necropolis
neighborhood
neighbourhood
nest
nib
nidus
nirvana
node
nombril
nook
north
northeast
northland
northwest
notch
nucha
nucleus
oasis
occident
oilfield
omphalos
omphalus
open
opening
orbit
orchard
orient
origin
orphrey
outback
outdoors
outfield
outline
outport
outpost
outside
outskirt
outskirts
outsole
outstation
overhead
overlook
ozonosphere
paddy
paint
palaestra
palate
palatinate
palestra
pallium
pampas
panhandle
paradise
parallel
parcel
paries
parish
park
parkland
part
parterre
parting
parts
pass
pasture
pastureland
patch
patchboard
pate
path
patisserie
patriarchate
pattern
peak
penetralia
perch
perforation
periapsis
perigee
perigon
perihelion
perijove
perilune
periselene
pesthole
photosphere
piazza
pigeonhole
piggery
pike
pinnacle
pinpoint
piscary
piste
pit
pitch
place
plantation
plate
playground
plaza
pleasance
plot
plugboard
pocket
point
pole
poll
polls
pool
pore
port
position
possession
post
pottery
pouch
prairie
precinct
prefecture
premises
presence
preserve
princedom
principality
property
proprioceptor
protectorate
provenance
provenience
province
proximity
puddle
pueblo
punctum
pupil
purlieu
qibla
quadrant
quarter
radius
railhead
railyard
ranch
range
rathole
reach
realm
rear
rearward
refuge
region
rendezvous
rent
repair
repository
reservation
reserve
residence
resort
retreat
rhumb
rift
right
rightfield
rip
roads
roadside
roadstead
rockery
rooftop
rookery
root
rootage
ropewalk
rotary
rough
round
roundabout
roundhouse
route
sac
sack
saddle
saddleback
saddlery
safety
sanctuary
sanctum
sandlot
savanna
savannah
scenario
scene
scenery
schoolyard
scissure
scour
scrapheap
scrubland
scruff
seafront
seam
seaport
seascape
seat
section
sector
see
seedbed
selvage
selvedge
semidesert
semitropics
separation
sepulcher
sepulchre
sepulture
setting
settlement
shadow
shantytown
sheeprun
sheepwalk
sheet
sheikdom
sheikhdom
shift
shipside
shipyard
shire
shop
shoreline
short
shoulder
showplace
shrubbery
side
sign
silhouette
site
situation
skyline
skyway
slack
slip
slit
slot
slum
smithy
snag
snow
sodom
soil
sole
solitude
somewhere
source
south
southeast
southland
southwest
spa
space
spearhead
spearpoint
sphere
spike
split
spoor
spot
sprawl
spread
spring
square
stage
stand
state
station
steps
stoma
stomate
stop
stopover
stratosphere
stratum
stretch
studio
subdivision
substrate
substratum
subtopia
subtropics
suburb
suburbia
sultanate
summit
superstrate
superstratum
surface
surround
surroundings
suzerainty
swath
switchboard
tack
tannery
tape
target
taxistand
tear
tee
telomere
tendency
tenderloin
terminal
termination
terminus
terrain
terreplein
territory
theater
theatre
there
thermosphere
thick
tiltyard
timberline
tip
tiptoe
tiptop
tomb
tonsure
top
topiary
town
township
track
tract
trail
trailhead
treetop
trend
trichion
tropic
tropics
tropopause
troposphere
trusteeship
turf
turnery
umbilicus
underbelly
underside
undersurface
unknown
upside
uptown
vacancy
vacuity
vacuum
vantage
variation
vault
veld
veldt
vent
venue
verge
vertex
viceroyalty
vicinity
view
viewpoint
village
vinery
vineyard
viscounty
void
volcano
wall
ward
warren
washhouse
waste
wasteland
wasteyard
waterfront
waterline
watermark
watershed
waterworks
wavefront
way
wayside
weald
wedge
welkin
wellhead
wellspring
west
wheatfield
whereabouts
wild
wilderness
window
windward
wing
wire
wold
woodlet
work
workplace
workshop
workspace
yard
yardarm
zenith
zodiac
zone
================================================
FILE: core/src/main/resources/edu/knowitall/openparse/categories/person.txt
================================================
abator
abbe
abbess
abbot
abbreviator
abdicator
abductor
abecedarian
aberrant
abetter
abettor
abhorrer
abiogenist
abjurer
abnegator
abolitionist
abomination
abominator
aboriginal
aborigine
abortionist
abridger
abrogator
absconder
abseiler
absentee
absolutist
absolver
abstainer
abstinent
abstracter
abstractionist
abstractor
abuser
abutter
academic
academician
acceptor
accessary
accessory
accommodator
accompanist
accompanyist
accomplice
accordionist
accoucheur
accoucheuse
accountant
accumulator
accused
accuser
ace
achiever
acolyte
acoustician
acquaintance
acquirer
acrobat
active
activist
actor
actress
actuary
adapter
adder
addict
addlehead
addressee
adducer
adept
adherent
adjudicator
adjunct
adjuster
adjustor
adjutant
adman
administrator
admiral
admirer
admonisher
adolescent
adonis
adoptee
adopter
adorer
adulator
adult
adulterator
adulterer
adulteress
advancer
adventurer
adventuress
adversary
advertiser
advertizer
advisee
adviser
advisor
advocate
advocator
aerialist
aeronaut
aerophile
aesthete
aesthetician
aetiologist
affiant
affiliate
affine
affirmer
affluent
aficionado
agent
aggravator
aggregator
aggressor
agitator
agnate
agnostic
agonist
agriculturalist
agriculturist
agronomist
aide
aircraftman
aircraftsman
aircrewman
airhead
airman
airwoman
alarmist
albino
alcalde
alchemist
alcoholic
alderman
alexic
algebraist
alien
alienator
alienee
alienist
alienor
aliterate
alky
allayer
allegoriser
allegorizer
allergist
alleviator
alliterator
allocator
ally
almoner
almsgiver
alphabetiser
alphabetizer
alpinist
alternate
alto
altoist
altruist
alum
alumna
alumnus
amah
amalgamator
amanuensis
amateur
amazon
ambassador
ambassadress
ambler
ambusher
ameer
amigo
amir
amnesiac
amnesic
amora
amoralist
amorist
amputator
amputee
anachronism
anaesthetist
anagnost
analogist
analphabet
analphabetic
analysand
analyst
anarchist
anathema
anatomist
ancestor
ancestress
anchor
anchorite
anchorman
anchorperson
ancient
androgyne
anecdotist
anesthesiologist
anesthetist
angel
angiologist
angler
anglophil
anglophile
anglophobe
animator
animist
annalist
annihilator
annotator
announcer
annoyance
annoyer
annuitant
anointer
anomalist
anomaly
anorectic
anorexic
answerer
antagonist
antecedent
antediluvian
anthologist
anthropoid
anthropologist
anthropophagite
anthropophagus
anti
anticipant
anticipator
antifeminist
antinomian
antipope
antiquarian
antiquary
antique
apache
ape
aper
aphakic
aphasic
aphorist
apiarist
apiculturist
apologist
apostate
apostle
apothecary
apotheosis
apparatchik
appeaser
appellant
applauder
applicant
applier
appointee
appointment
appraiser
appreciator
apprehender
apprentice
appropriator
approver
aquanaut
arb
arbiter
arbitrager
arbitrageur
arbitrator
arboriculturist
arborist
archaeologist
archaist
archbishop
archdeacon
archduchess
archduke
archeologist
archer
archimandrite
architect
archivist
archpriest
argonaut
arguer
arianist
aristocrat
arithmetician
armiger
armorer
armourer
arouser
arranger
arrival
arriver
arriviste
arrogator
arrowsmith
arsonist
arthritic
articulator
artificer
artilleryman
artisan
artist
artiste
ascendant
ascendent
ascender
ascetic
asker
aspirant
aspirer
ass
assailant
assassin
assassinator
assaulter
assayer
assemblyman
assemblywoman
assenter
asserter
assessee
assessor
asseverator
asshole
assignee
assignor
assimilator
assistant
associate
asthmatic
astrogator
astrologer
astrologist
astronaut
astronomer
astrophysicist
atheist
athlete
attache
attacker
attempter
attendant
attendee
attender
attestant
attestator
attester
attestor
attorney
attracter
attraction
attractor
auctioneer
audile
auditor
augur
aunt
auntie
aunty
auspex
auteur
authenticator
author
authoress
authoriser
authoritarian
authority
authorizer
autobiographer
autochthon
autocrat
autodidact
automaton
auxiliary
avatar
avenger
aviator
aviatress
aviatrix
avower
ayah
ayatollah
baas
babbler
babe
baboo
babu
baby
babyminder
babysitter
bacchanal
bacchant
bacchante
bachelor
bachelorette
back
backbencher
backbiter
backer
backpacker
backscratcher
backslapper
backslider
backstop
backstroker
backup
backwoodsman
bacteriologist
badgerer
bag
baggage
baggageman
bagger
bagman
bagpiper
bailee
bailiff
bailor
bairn
baker
balancer
baldhead
baldpate
baldy
balker
balladeer
ballerina
balletomane
balloonist
ballplayer
bambino
banderillero
bandit
bandleader
bandmaster
bandsman
banker
bankrupt
banneret
bantamweight
barbarian
barber
bard
bargainer
bargee
bargeman
baritone
barkeep
barkeeper
barker
barmaid
barman
barnburner
barnstormer
baron
baroness
baronet
barrater
barrator
barrister
bartender
barterer
barytone
basileus
basketeer
basketmaker
basketweaver
bass
bassist
basso
bassoonist
bastard
baster
bather
batman
batsman
batter
battler
baulker
bawd
bawler
beachcomber
beadle
beadsman
bear
beard
bearer
beast
beat
beater
beatnik
beau
beautician
beauty
bedesman
bedfellow
bedlamite
bedwetter
beefeater
beekeeper
begetter
beggar
beggarman
beggarwoman
beginner
beguiler
begum
behaviorist
behaviourist
behemoth
beholder
beldam
beldame
believer
bellboy
belle
bellhop
belligerent
bellman
bellower
bellwether
bellyacher
beloved
benedick
benedict
benefactor
benefactress
beneficiary
bereaved
berk
berserk
berserker
besieger
best
bestower
betrayer
betrothed
better
bettor
bey
bibliographer
bibliophile
bibliopole
bibliopolist
bibliothec
bibliotist
bicycler
bicyclist
bidder
bigamist
bigot
bigwig
bilingual
bilingualist
billionaire
bimbo
bimetallist
binger
biochemist
biographer
biologist
biophysicist
bird
birdbrain
birder
birth
bisexual
bishop
bitch
biter
blabber
blabbermouth
blackamoor
blackguard
blackleg
blackmailer
blacksmith
blade
blasphemer
blaster
bleacher
bleeder
blighter
blocker
blockhead
blogger
bloke
blond
blonde
blood
blowhard
blubberer
bludgeoner
bluecoat
bluejacket
bluenose
bluestocking
bluffer
blunderer
blusterer
boarder
boaster
boatbuilder
boater
boatman
boatswain
bobby
bobbysoxer
bodybuilder
bodyguard
boffin
bohemian
bolshie
bolshy
bombardier
bomber
bombshell
bondholder
bondmaid
bondman
bondsman
bondswoman
bondwoman
bonehead
bonesetter
boniface
boob
booby
bookbinder
bookdealer
booker
bookie
bookkeeper
booklover
bookmaker
bookman
bookseller
bookworm
boomer
boor
booster
bootblack
bootlegger
bootlicker
bootmaker
boozer
borderer
bore
borrower
boss
bosun
botanist
botcher
boulevardier
bouncer
bounder
bourgeois
bowdleriser
bowdlerizer
bowler
bowman
boxer
boy
boyfriend
bozo
bracero
brachycephalic
braggart
bragger
brahman
brahmin
brain
brainiac
brainworker
brakeman
brat
brave
bravo
brawler
breadwinner
breaker
breaststroker
breeder
brewer
briber
brick
bricklayer
bride
bridegroom
bridesmaid
brigadier
brigand
broad
broadcaster
broker
broncobuster
brother
browser
bruiser
brunet
brunette
brute
buccaneer
buckaroo
buckeroo
bucolic
buddy
buff
buffoon
bugger
bugler
bugologist
builder
bulimic
bull
bullfighter
bully
bullyboy
bum
bumbler
bumpkin
bungler
bunkmate
bunny
bunter
bureaucrat
burgess
burgher
burglar
burgomaster
burgrave
bursar
busboy
bushman
bushwhacker
businessman
businessperson
businesswoman
busker
buster
busybody
butch
butcher
butler
butt
butter
butterball
butterfingers
buttinsky
buyer
bystander
cabalist
cabinetmaker
cad
caddie
cadet
cadger
caffer
caffre
cager
caitiff
calculator
calif
caliph
caller
calligrapher
calligraphist
cameraman
campaigner
camper
campmate
canary
candidate
candlemaker
candymaker
cannibal
cannoneer
canoeist
canon
canonist
cantor
canvasser
capitalist
capo
captain
captive
captor
capturer
carabineer
carabinier
carbineer
card
cardholder
cardinal
cardiologist
cardsharp
cardsharper
careerist
caregiver
caretaker
carhop
caricaturist
carillonneur
caroler
caroller
carouser
carpenter
carper
carpetbagger
carrier
carrottop
carter
cartographer
cartoonist
cartwright
carver
case
caseworker
cashier
castaway
caster
castrate
castrato
casualty
casuist
cat
cataleptic
cataloger
cataloguer
catamite
catch
catcher
catechist
catechumen
caterer
cattleman
cavalier
cavalryman
caveman
caviler
caviller
celebrant
celebrater
celebrator
celebrity
celibate
cellist
cenobite
censor
centenarian
center
centerfielder
centrist
centurion
ceramicist
ceramist
chachka
chair
chairman
chairperson
chairwoman
challenger
chamberlain
chambermaid
chameleon
champ
champion
chancellor
chandler
changeling
changer
chap
chapelgoer
chaperon
chaperone
chaplain
chapman
char
character
charge
chargeman
charioteer
charlatan
charmer
chartist
charwoman
chased
chaser
chatelaine
chatterbox
chatterer
chauvinist
chawbacon
cheapjack
cheapskate
cheat
cheater
chebab
checker
cheerer
cheerleader
cheesemonger
chef
chela
chemist
cherub
chevalier
chewer
chichi
chick
chicken
chief
chieftain
child
chiliast
chimneysweep
chimneysweeper
chink
chiromancer
chiropodist
chiropractor
chiseler
chiseller
chit
choirboy
choirmaster
choker
chooser
choragus
choreographer
chorine
chorister
chosen
christ
chronicler
chum
chump
churchgoer
churchman
churchwarden
churl
chutzpanik
cicerone
cinematographer
cipher
citizen
civilian
claimant
clairvoyant
clansman
clanswoman
clapper
clarinetist
clarinettist
classic
classicist
classifier
classmate
claustrophobe
cleaner
clergyman
cleric
clericalist
clerk
client
climatologist
climber
clinician
cloakmaker
clockmaker
clocksmith
clod
clone
closer
clotheshorse
clothier
clown
coach
coachbuilder
coachman
coadjutor
coalman
coaster
coastguardsman
coauthor
coaxer
cobber
cobbler
cockscomb
cocksucker
coconspirator
cocotte
coddler
codefendant
coder
codetalker
codger
coenobite
coeval
cofounder
cog
cognate
cognoscente
coiffeur
coiffeuse
coiner
collaborationist
collaborator
colleague
collectivist
collector
colleen
collegian
collier
colonel
colonial
colonialist
coloniser
colonist
colonizer
coloratura
colored
colorist
colossus
columnist
combatant
comber
comedian
comedienne
comer
comforter
comic
commandant
commander
commando
commentator
commie
commissar
commissionaire
commissioner
committeeman
committeewoman
commodore
commoner
communicant
communicator
communist
commuter
companion
company
compatriot
compeer
compere
competition
competitor
compiler
complainant
complainer
complexifier
composer
compositor
compromiser
comptroller
compulsive
computer
comrade
con
conceiver
concessionaire
concessioner
conchologist
concierge
conciliator
concubine
conditioner
conductor
conductress
confectioner
confederate
conferee
conferrer
confessor
confidant
confidante
conformist
confrere
confuter
congregant
congressman
congresswoman
conjurer
conjuror
connection
connoisseur
conqueror
conquistador
conscript
conservationist
conservative
conservativist
conservator
consignee
consigner
consignor
consort
conspirator
constable
constituent
constitutionalist
constructivist
constructor
consul
consultant
consumer
consumptive
contact
contadino
contemplative
contemporary
contender
contestant
contestee
contester
contortionist
contrabandist
contractor
contralto
contrapuntist
contrarian
contributor
contriver
controller
controversialist
convalescent
convener
conventioneer
conversationalist
conversationist
convert
conveyancer
conveyer
conveyor
convict
cook
cookie
cooky
coolie
cooly
coon
cooper
cooperator
coordinator
cop
copartner
copilot
copper
coppersmith
copycat
copyist
copyreader
copywriter
coquette
coreligionist
corespondent
cornerback
cornetist
cornhusker
coroner
corporal
corporatist
correspondent
corsair
cosignatory
cosigner
cosmetician
cosmetologist
cosmographer
cosmographist
cosmologist
cosmonaut
cosmopolitan
cosmopolite
costermonger
costumer
costumier
cotenant
cottager
cottar
cotter
cottier
councillor
councilman
councilwoman
counsel
counsellor
counselor
count
counter
counterdemonstrator
counterfeiter
counterman
counterperson
counterrevolutionary
counterrevolutionist
counterspy
countertenor
counterterrorist
counterwoman
countess
countryman
countrywoman
courier
courser
courtesan
courtier
cousin
couturier
cow
coward
cowboy
cowgirl
cowhand
cowherd
cowman
cowpoke
cowpuncher
cox
coxcomb
coxswain
coyote
crab
cracker
crackerjack
crackpot
cracksman
crafter
craftsman
cragsman
crammer
craniologist
crank
crapshooter
crasher
craven
crawler
crazy
creator
creature
creditor
creep
creeper
cretin
crewman
cricketer
crier
criminal
criminologist
crimp
crimper
criollo
cripple
critic
crofter
crone
crony
crook
crookback
crooner
cropper
crossbencher
crossover
crosspatch
croupier
cruiserweight
crumb
crusader
crybaby
cryptanalyst
cryptographer
cryptologist
crystallographer
cub
cubist
cuckold
cuckoo
cuirassier
culprit
cultist
cultivator
cummings
cunctator
cunt
cupbearer
cur
curandera
curandero
curate
curator
curmudgeon
currier
cuss
custodian
customer
cutler
cutpurse
cutter
cutthroat
cybernaut
cyberpunk
cyborg
cyclist
cymbalist
cynic
cypher
cyprian
cytogeneticist
cytologist
czar
czarina
czaritza
dabbler
dacoit
dad
dada
daddy
dago
dairymaid
dairyman
dakoit
dalesman
dallier
dame
damoiselle
damosel
damozel
damsel
dancer
dandy
danseur
danseuse
daredevil
darkey
darkie
darky
darling
darner
dastard
date
dauber
daughter
dauphin
dawdler
dayboy
daydreamer
daygirl
deacon
deaconess
deadbeat
deadeye
deadhead
dealer
dean
dear
dearest
dearie
deary
deb
debaser
debater
debauchee
debaucher
debitor
debtor
debutante
decadent
deceased
decedent
deceiver
decipherer
deckhand
declarer
decoder
decorator
decoy
defalcator
defamer
defaulter
defeatist
defecator
defector
defendant
defender
defiler
defrauder
degenerate
degrader
deification
deipnosophist
deist
delayer
delegate
delinquent
deliverer
deliveryman
demagog
demagogue
demander
demigod
demimondaine
democrat
demographer
demographist
demoiselle
demon
demoniac
demonstrator
denier
denizen
dentist
denturist
departed
departer
dependant
dependent
deponent
deportee
deposer
depositor
depreciator
depressive
deputy
derelict
dermatologist
dervish
descendant
descendent
descender
deserter
designer
deskman
desperado
desperate
despoiler
despot
destroyer
detainee
detective
determinist
detractor
developer
deviant
deviate
deviationist
devil
devisee
deviser
devisor
devotee
devourer
diabetic
diabolist
diagnostician
dialectician
diarist
dichromat
dick
dickhead
dictator
diehard
diemaker
diesinker
dieter
dietician
dietitian
differentiator
digger
dignitary
dike
dilettante
dillydallier
dimwit
diner
dingbat
diocesan
dip
diplomat
diplomate
diplomatist
dipsomaniac
director
disarmer
disbeliever
disburser
disciple
disciplinarian
discoverer
discriminator
discussant
disentangler
dish
dishwasher
disparager
dispatcher
dispenser
disprover
disputant
dissembler
disseminator
dissenter
dissident
dissimulator
distiller
distortionist
distributer
distributor
disturber
diva
diver
diversionist
divider
divine
diviner
divorcee
dj
doc
docent
docker
dockhand
dockworker
doctor
doctrinaire
dodderer
dodger
dodo
doer
dog
doge
dogfighter
dogmatist
dogsbody
dolichocephalic
doll
dolt
domestic
dominatrix
domine
dominee
dominie
dominus
don
donee
donna
donor
doofus
doorkeeper
doorman
doormat
dope
dork
dosser
dotard
double
doubter
doughboy
doula
dove
dowager
dowser
doxy
doyen
doyenne
draftee
drafter
draftsman
draftsperson
dragger
dragoman
dragon
dragoon
dramatist
draper
draughtsman
draw
drawee
drawer
drawler
dreamer
dresser
dressmaker
dribbler
drifter
drinker
driveller
driver
drone
drooler
dropkicker
dropout
drover
drudge
druggist
drumbeater
drummer
drunk
drunkard
dry
dualist
duce
duchess
ducky
dud
dude
dueler
duelist
dueller
duellist
duenna
duffer
duke
dulcinea
dullard
dumbass
dumbbell
dummy
dunce
dunderhead
dunker
dupe
dustman
dwarf
dweeb
dweller
dyer
dyke
dynamiter
dynamitist
dynast
dyslectic
dyspeptic
earl
earner
earthling
earthman
easterner
eater
eavesdropper
eccentric
ecclesiastic
ecdysiast
eclectic
eclecticist
ecologist
econometrician
econometrist
economiser
economist
economizer
ectomorph
edger
editor
editorialist
educatee
educationalist
educationist
educator
effecter
effector
effendi
egalitarian
egghead
egocentric
egoist
egomaniac
egotist
ejaculator
ejector
elder
eldest
elector
electrician
electrocutioner
electrologist
electroplater
electrotherapist
elegist
elitist
elocutionist
emancipationist
emancipator
embalmer
embassador
embezzler
embodiment
embroiderer
embroideress
embryologist
emcee
emeer
emeritus
emigrant
emigre
emigree
emir
emissary
emperor
empiricist
employable
employee
employer
empress
emptor
emulator
enate
enchanter
enchantress
encroacher
encyclopaedist
encyclopedist
end
endocrinologist
endodontist
endomorph
endorser
enemy
energiser
energizer
enforcer
engineer
engraver
enjoyer
enlistee
enologist
enophile
enquirer
enrollee
ensign
enterpriser
entertainer
enthusiast
entomologist
entrant
entrepreneur
enumerator
environmentalist
envoy
enzymologist
eparch
epicene
epicure
epicurean
epidemiologist
epigon
epigone
epileptic
epistemologist
equal
equalitarian
equerry
equestrian
equivocator
eradicator
eremite
eristic
erotic
escalader
escapee
escapist
escapologist
eschatologist
escort
esquire
essayer
essayist
esthete
esthetician
estimator
etcher
ethician
ethicist
ethnarch
ethnic
ethnographer
ethnologist
ethologist
etiologist
etymologist
eulogist
eunuch
evacuee
evaluator
evangelist
everyman
evildoer
evolutionist
ex
examinee
examiner
exarch
excavator
exchanger
exciseman
excogitator
excursionist
excuser
executant
executioner
executive
executor
executrix
exegete
exhibitioner
exhibitionist
exhibitor
exile
existentialist
exodontist
exorciser
exorcist
expat
expatriate
expectorator
expender
experimenter
expert
exploiter
explorer
exponent
exporter
expositor
expounder
expressionist
expurgator
exterminator
extern
extoller
extortioner
extortionist
extra
extravert
extremist
extrovert
eyeful
eyewitness
fabricator
fabulist
face
facilitator
factor
factotum
faddist
fag
faggot
fagot
failure
fairy
fake
fakeer
faker
fakir
falangist
falconer
faller
falsifier
familiar
family
famulus
fan
fanatic
fancier
fantasist
fantast
faqir
faquir
fare
farmer
farmerette
farmhand
farrier
fascist
fascista
fashionmonger
fastener
fatalist
fathead
father
fatso
fatty
faultfinder
fauvist
favorite
favourite
fawner
featherweight
federalist
feeder
fella
fellah
feller
fellow
felon
female
feminist
fence
fencer
fencesitter
fermentologist
ferryman
fetishist
feudatory
fiance
fiancee
fibber
fiddler
fiduciary
fielder
fieldhand
fieldsman
fieldworker
fiend
fighter
figure
figurehead
figurer
filer
filibuster
filibusterer
filicide
fille
filmmaker
finagler
finalist
financier
finder
finisher
fink
fireball
firebrand
firebug
firefighter
fireman
firstborn
fisher
fisherman
fishmonger
fishwife
fitter
fixer
fixture
flack
flagellant
flak
flake
flamen
flanker
flapper
flasher
flatfoot
flatmate
flatterer
flautist
fledgeling
fledgling
fleer
flibbertigibbet
flier
flirt
floater
flogger
floorwalker
floozie
floozy
flop
florist
flouter
flunkey
flunky
flutist
flyer
flyweight
fodder
foe
foeman
fogey
fogy
follower
fomenter
fondler
foodie
fool
foot
footballer
footer
footman
footpad
footslogger
fop
forager
forbear
forebear
forecaster
forefather
foreigner
forelady
foreman
foremother
foreperson
forerunner
forester
forewoman
forger
forgiver
fornicator
fornicatress
fortuneteller
forward
fossil
fossilist
fosterling
founder
foundling
foundress
fowler
fox
framer
franklin
fratricide
fraud
freak
freebooter
freedman
freedwoman
freeholder
freelance
freelancer
freeloader
freeman
freethinker
freewheeler
freewoman
frequenter
fresher
freshman
friar
friend
frog
frogman
front
frontbencher
frontiersman
frontierswoman
frotteur
fruitcake
fruiterer
frump
fry
fucker
fuckhead
fuckup
fugitive
fugleman
fullback
fuller
fumbler
fumigator
funambulist
functionalist
functionary
fundamentalist
fundraiser
furrier
fusilier
fusspot
futurist
fuzz
gadabout
gadfly
gadgeteer
gaffer
gagman
gagster
gagwriter
gainer
gal
gallant
galoot
galvaniser
galvanizer
gambist
gambler
gamecock
gamekeeper
gamin
gamine
ganef
ganger
gangsta
gangster
ganof
gaolbird
gaoler
garbageman
gardener
garmentmaker
garnishee
garroter
garrotter
gasbag
gasman
gastroenterologist
gastronome
gatecrasher
gatekeeper
gatherer
gaucho
gawk
gawker
gay
gazetteer
geek
geezer
geisha
gem
gendarme
genealogist
general
generalissimo
generalist
generator
geneticist
genitor
genius
gent
gentile
gentleman
gentlewoman
geographer
geologist
geomancer
geometer
geometrician
geophysicist
geriatrician
gerontologist
ghost
ghostwriter
ghoul
giant
giggler
gigolo
gilder
gillie
ginzo
gipsy
girl
girlfriend
git
gitana
gitano
giver
gladiator
glassblower
glassmaker
glassworker
glazer
glazier
gleaner
globetrotter
glossarist
glutton
goalie
goalkeeper
goaltender
goat
goatherd
gob
gobbler
god
godchild
goddaughter
godfather
godmother
godparent
godson
goer
gofer
goffer
goldbeater
goldbrick
goldsmith
goldworker
golfer
goliard
goliath
gondolier
gondoliere
goner
gonif
goniff
goof
goofball
gook
goon
goose
gopher
gorger
gospeler
gospeller
gossip
gossiper
gossipmonger
gouger
gourmand
gourmandizer
gourmet
governess
governor
goy
grabber
grad
grader
graduate
grammarian
gramps
gran
grandad
grandaunt
grandchild
granddad
granddaddy
granddaughter
grandee
grandfather
grandma
grandmaster
grandmother
grandnephew
grandniece
grandpa
grandparent
grandson
grandstander
granduncle
granger
grannie
granny
grantee
granter
grantor
graphologist
grappler
grass
gravedigger
graverobber
gravida
graybeard
grazier
greaseball
greaser
great
greengrocer
greenhorn
greenskeeper
greeter
grenadier
greyback
greybeard
griever
grifter
grind
gringo
grinner
griot
grip
groaner
grocer
groom
groomsman
grouch
groundbreaker
groundkeeper
groundling
groundskeeper
groundsman
groupie
groveler
groveller
grower
growler
grownup
grumbler
grump
grunt
grunter
guarantor
guard
guardian
guardsman
guerilla
guerrilla
guesser
guest
guestworker
guide
guitarist
gull
gulper
gumshoe
gun
gunman
gunner
gunrunner
gunslinger
gunsmith
guru
gutter
guttersnipe
guvnor
guy
guzzler
gymnast
gymnosophist
gynaecologist
gynandromorph
gynecologist
gypsy
haberdasher
habitant
habitue
hack
hacker
hadji
haematologist
haemophile
haemophiliac
hag
haggler
hagiographer
hagiographist
hagiologist
hairdresser
hairsplitter
hairstylist
haji
hajji
hakeem
hakim
halberdier
halfback
ham
hammerhead
hand
handicapper
handler
handmaid
handmaiden
handyman
hanger
hangman
hangover
haranguer
harasser
hardliner
hardwareman
harlequin
harlot
harmoniser
harmonizer
harper
harpist
harpooneer
harpooner
harpsichordist
harpy
harridan
harrier
harvester
hatemonger
hater
hatmaker
hatter
hauler
haulier
have
hawk
hawker
hawkshaw
hayseed
hazan
head
headcounter
headhunter
headliner
headman
headmaster
headmistress
headsman
headwaiter
healer
hearer
heartbreaker
heartthrob
heathen
heaver
heavy
heavyweight
heckler
hedger
hedonist
heel
heir
heiress
hellcat
heller
hellhound
hellion
helmsman
helot
help
helper
helpmate
helpmeet
hematologist
hemiplegic
hemophile
hemophiliac
henchman
herald
herbalist
herder
herdsman
heretic
heritor
hermaphrodite
hermit
hero
heroine
herpetologist
hesitater
hesitator
heterosexual
hewer
hick
hierarch
highbinder
highbrow
highflier
highflyer
highjacker
highwayman
hijacker
hiker
hillbilly
hippie
hippy
hipster
hire
hireling
hirer
hisser
histologist
historian
historiographer
histrion
hitchhiker
hitman
hitter
hoarder
hoaxer
hobbledehoy
hobbler
hobbyist
hobo
hodman
hog
holder
holdout
holdover
holidaymaker
hombre
homebody
homeboy
homebuilder
homegirl
homeless
homemaker
homeopath
homeowner
homesteader
homo
homoeopath
homophile
homophobe
homosexual
homunculus
honcho
honey
honeymooner
honkey
honkie
honky
honoree
hood
hoodlum
hoodoo
hoofer
hooker
hooligan
hope
hopeful
hoper
hopper
hornist
horologer
horologist
horseman
horseshoer
horsewoman
horticulturist
hosier
host
hostage
hosteller
hostess
hostler
hotdog
hotelier
hotelkeeper
hotelman
hothead
hotshot
hotspur
hound
houri
housebreaker
housebuilder
housefather
houseguest
householder
househusband
housekeeper
housemaid
houseman
housemaster
housemate
housemother
housewife
housewrecker
hoyden
hubby
huckster
huddler
hugger
hulk
humanist
humanitarian
humdinger
hummer
humorist
humourist
humpback
hunchback
hunk
hunter
huntress
huntsman
hurdler
hurler
husband
husbandman
hussar
hussy
hustler
hydrologist
hydromancer
hygienist
hymie
hyperope
hypertensive
hypnotiser
hypnotist
hypnotizer
hypochondriac
hypocrite
hypotensive
hysteric
ianfu
iceman
ichthyologist
iconoclast
ideal
idealist
idealogue
ideologist
ideologue
idiot
idler
idol
idolater
idolatress
idoliser
idolizer
ignoramus
illegitimate
illiterate
illusionist
illustrator
image
imam
imaum
imbecile
imbiber
imitator
immigrant
immortal
immune
immunologist
imp
imperialist
impersonator
import
importee
importer
imposter
impostor
impresario
impressionist
improver
inamorata
inamorato
incarnation
incendiary
inciter
incompetent
incubus
incumbent
incurable
independent
indexer
indigen
indigene
individual
individualist
indorser
inducer
inductee
industrialist
indweller
inebriate
infant
infanticide
infantryman
inferior
infernal
infidel
infielder
infiltrator
informant
informer
ingenue
ingrate
inhabitant
inheritor
inheritress
inheritrix
initiate
initiator
inmate
innkeeper
innocent
innovator
inoculator
inpatient
inquirer
inquisitor
insect
insider
insolvent
insomniac
inspector
inspirer
instigant
instigator
instructor
instructress
instrument
instrumentalist
insured
insurgent
insurrectionist
intellect
intellectual
intercessor
interlocutor
interloper
intermediary
intermediator
intern
internationalist
interne
internee
internist
internuncio
interpreter
interrogator
intersex
intervenor
interviewee
interviewer
intimate
intriguer
introvert
intruder
invader
invalid
invalidator
inventor
investigator
investor
invigilator
invitee
ironist
ironman
ironmonger
ironside
ironworker
irredentist
irregular
irreligionist
irridentist
islander
isolationist
issue
itinerant
jabberer
jack
jackanapes
jackass
jade
jailbird
jailer
jailor
janissary
janitor
jawan
jaywalker
jazzman
jeerer
jerk
jerker
jester
jewel
jeweler
jeweller
jezebel
jigaboo
jilt
jimdandy
jimhickey
jingo
jingoist
jinx
jobber
jobholder
jock
jockey
jogger
john
joiner
joker
jokester
jonah
jongleur
journalist
journeyer
journeyman
judge
juggler
juicer
jumper
junior
junkie
junky
jurist
juror
juryman
jurywoman
justice
justiciar
justiciary
justifier
juvenile
kabbalist
kachina
kaffir
kafir
kalif
kaliph
kamikaze
keeper
keyboardist
khalif
khalifah
khan
kibbutznik
kibitzer
kicker
kid
kiddy
kidnaper
kidnapper
kike
killer
killjoy
kin
kindergartener
kindergartner
king
kingmaker
kingpin
kink
kinsman
kinsperson
kinswoman
kisser
kleptomaniac
klutz
knacker
knave
kneeler
knight
knitter
knocker
knockout
knower
knucklehead
kolkhoznik
kook
kvetch
laborer
labourer
lacer
lackey
lad
laddie
ladino
lady
ladylove
laggard
lagger
laird
lama
lamb
lame
lamenter
laminator
lamplighter
lampooner
lancer
landgrave
landholder
landlady
landlord
landlubber
landman
landowner
landscaper
landscapist
landsman
langlaufer
languisher
lapidarist
lapidary
lapidator
lapidist
larcener
larcenist
lascar
lasher
lass
lassie
latecomer
lather
latitudinarian
laudator
lauder
laugher
laughingstock
laundress
laundryman
laundrywoman
laureate
lawbreaker
lawgiver
lawmaker
lawman
lawyer
layabout
layman
layperson
lazar
lazybones
lead
leader
leaker
leaper
learner
leaseholder
leatherneck
leaver
lech
lecher
lector
lecturer
ledgeman
leech
lefthander
leftist
lefty
legate
legatee
legionary
legionnaire
legislator
lender
lensman
leper
lepidopterist
lepidopterologist
lesbian
lessee
lessor
letch
letter
letterer
letterman
leveler
leveller
lexicographer
lexicologist
liar
libber
libeler
liberal
liberalist
liberator
libertarian
libertine
librarian
librettist
licensee
licenser
licentiate
liege
liegeman
lieutenant
life
lifeguard
lifer
lifesaver
lifter
light
lighterman
lightweight
lilliputian
limey
limner
limnologist
limper
linebacker
lineman
linendraper
linesman
lingerer
linguist
linkboy
linkman
linksman
lion
liquidator
lisper
listener
lister
literate
lithographer
lithomancer
litigant
litigator
litterateur
litterbug
litterer
liturgist
liver
liveryman
lizard
loader
loafer
loaner
loather
lobbyist
lobsterback
lobsterman
locater
locator
lockkeeper
lockman
lockmaster
locksmith
locum
lodger
logger
loggerhead
logician
logistician
logomach
logomachist
loiterer
loner
longbowman
longer
longshoreman
looker
lookout
loon
looney
loony
looter
lord
loser
loudmouth
lounger
louse
lout
love
lovely
lover
lowbrow
lowerclassman
lowlife
loyalist
lubber
luger
lulu
lumberjack
lumberman
luminary
lummox
lump
lumper
lunatic
luncher
lunger
lunkhead
lurcher
lurker
lush
lutanist
lutenist
luthier
lutist
lyricist
lyrist
ma
macaroni
mace
macebearer
macer
machinator
machine
machinist
macho
macroeconomist
macushla
madam
madame
madcap
madman
madrigalist
madwoman
maenad
maestro
mafioso
magdalen
magician
magistrate
magnate
magnifico
magpie
magus
maharaja
maharajah
maharanee
maharani
mahatma
mahout
maid
maiden
maidservant
mailer
mailman
maimer
mainstay
maintainer
major
majorette
maker
malacologist
malahini
malcontent
male
malefactor
malfeasant
maligner
malik
malingerer
maltman
maltreater
maltster
mama
mamma
mammalogist
mammy
man
manager
manageress
manakin
mandarin
mandatary
mandator
mandatory
maneuverer
mangler
maniac
manicurist
manikin
manipulator
mannequin
mannikin
manoeuvrer
manservant
manslayer
mantrap
manufacturer
manumitter
mapper
marathoner
marauder
marcher
marchioness
margrave
marine
mariner
mark
marketer
marksman
maroon
marquess
marquis
marquise
married
marshal
marshall
martinet
martyr
marveller
masher
masker
masochist
mason
masquer
masquerader
massager
masseur
masseuse
master
mastermind
masturbator
matador
match
matcher
matchmaker
mate
mater
materfamilias
material
materialist
mathematician
matman
matriarch
matricide
matriculate
matrikin
matrisib
matron
mauler
maven
maverick
mavin
mayor
mayoress
meanie
meany
measurer
meatman
mechanic
mechanist
medalist
medallist
meddler
mediator
mediatrix
medic
medico
mediocrity
medium
meeter
megalomaniac
melancholiac
melancholic
meliorist
melter
member
memoriser
memorizer
memsahib
mender
mendicant
menial
mensch
mensh
mentioner
mentor
mercenary
mercer
merchandiser
merchant
merrymaker
meshuggeneh
meshuggener
mesmerist
mesmerizer
mesomorph
messenger
messiah
messmate
mestiza
mestizo
metalhead
metallurgist
metalworker
meteorologist
metic
metropolitan
mezzo
microbiologist
microeconomist
microscopist
middlebrow
middleman
middleweight
midget
midinette
midshipman
midwife
migrant
migrator
mikado
miler
militant
militarist
militiaman
milkmaid
milkman
milksop
millenarian
millenarist
miller
milliner
millionaire
millionairess
millwright
milord
mime
mimer
mimic
mimicker
mind
minder
miner
mineralogist
mineworker
miniaturist
minimalist
minion
minister
ministrant
minor
minstrel
minter
minx
misanthrope
misanthropist
misbeliever
miscreant
miser
misfit
misleader
misogamist
misogynist
miss
missionary
missioner
missis
missus
missy
mistress
mixologist
mnemonist
moaner
mobster
mocker
mod
model
modeler
modeller
moderate
moderationist
moderator
modern
modernist
modifier
modiste
mogul
mole
molester
moll
mollycoddle
mollycoddler
mom
momma
mommy
monarch
monarchist
monastic
monetarist
moneyer
moneygrubber
moneylender
moneymaker
moneyman
monger
mongoloid
monitor
monitrice
monk
monkey
monochromat
monogamist
monogynist
monolingual
monologist
monomaniac
monopoliser
monopolist
monopolizer
monotheist
monster
mooch
moocher
moonlighter
moonshiner
mope
mopper
moppet
moralist
moron
morosoph
mortal
mortgagee
mortgager
mortgagor
mortician
mossback
mother
motherfucker
motile
motorcyclist
motormouth
moujik
mountaineer
mountebank
mounter
mourner
mouse
mouth
mouthpiece
mover
moviegoer
muadhdhin
muazzin
muckraker
mudslinger
muezzin
mufti
mug
muggee
mugger
muggins
mugwump
mujahid
mujik
mujtihad
mulatto
muleteer
muller
mum
mumbler
mummer
mummy
muncher
muralist
murderee
murderer
murderess
murmurer
muscle
musclebuilder
muscleman
muser
musher
musician
musicologist
musketeer
mute
mutilator
mutineer
mutterer
muttonhead
muzhik
muzjik
muzzler
mycologist
mycophage
mycophagist
myope
myrmidon
mystic
mythologist
nabob
nag
nagger
naif
nailer
name
namer
namesake
nan
nance
nanna
nanny
nanus
naprapath
narc
narcissist
narcist
narcoleptic
nark
narrator
natator
national
nationalist
native
nativist
natural
naturalist
naturist
naturopath
navigator
navvy
nawab
naysayer
nazi
nebbech
nebbish
necessitarian
necker
necromancer
needer
needlewoman
needleworker
negativist
neglecter
negotiant
negotiator
negotiatress
negotiatrix
neighbor
neighbour
neoclassicist
neocon
neoconservative
neoliberal
neologist
neonate
neophyte
nephew
nepotist
nerd
nester
nestling
netkeeper
netminder
neurasthenic
neurobiologist
neurolinguist
neurologist
neuroscientist
neurosurgeon
neurotic
neutral
neutralist
newbie
newborn
newcomer
newlywed
newsagent
newsboy
newscaster
newsdealer
newsman
newsmonger
newspaperman
newspaperwoman
newsperson
newsreader
newsvendor
newswoman
newswriter
nibbler
niece
nigga
niggard
nigger
niggler
nightbird
nighthawk
nightrider
nigra
nihilist
nincompoop
ninja
ninny
nipper
niqaabi
nitpicker
nitwit
nob
noble
nobleman
noblewoman
nobody
noctambulist
nomad
nominalist
nominator
nominee
nonachiever
nonagenarian
nonattender
nonbeliever
noncandidate
noncitizen
noncom
noncombatant
noncompliant
nonconformist
nondescript
nondrinker
nondriver
nonentity
nonesuch
nonmember
nonpareil
nonparticipant
nonpartisan
nonpartizan
nonperson
nonreader
nonresident
nonsmoker
nonstarter
nonsuch
nonworker
normaliser
normalizer
nosher
notability
notable
notary
noticer
novelist
novice
novillero
novitiate
nude
nudger
nudist
nudnick
nudnik
nuisance
nullifier
nullipara
numerologist
numismatist
numismatologist
numskull
nun
nuncio
nurse
nurseling
nursemaid
nurser
nurseryman
nursling
nut
nutcase
nutritionist
nutter
nymph
nymphet
nympho
nympholept
nymphomaniac
oaf
oarsman
oarswoman
objector
oblate
obliger
oboist
obscurantist
observer
obsessive
obstetrician
obstructer
obstructionist
obstructor
occultist
occupant
occupier
oceanaut
oceanographer
octogenarian
octoroon
oculist
odalisque
oddball
odist
oenologist
oenophile
offender
offerer
offeror
officeholder
officer
official
officiant
offspring
ogler
ogre
oiler
oilman
oldster
oldtimer
oligarch
ombudsman
omnivore
onanist
oncologist
oneiromancer
onlooker
onomancer
opener
operagoer
operative
operator
ophthalmologist
opponent
opportunist
opposer
opposite
opposition
oppressor
optician
optimist
optometrist
oracle
orator
orchestrator
ordainer
orderer
orderly
ordinand
ordinary
organiser
organist
organizer
orientalist
originator
ornamentalist
ornithologist
orphan
orthodontist
orthoepist
orthopaedist
orthopedist
orthoptist
osculator
osteologer
osteologist
osteopath
osteopathist
ostiarius
ostiary
ostler
ostrich
otolaryngologist
otologist
otorhinolaryngologist
ouster
outcast
outcaste
outdoorsman
outdoorswoman
outfielder
outfitter
outgoer
outlander
outlaw
outlier
outpatient
outrider
outsider
overachiever
overcomer
overlord
overnighter
overseer
owner
oyabun
pa
pacha
pachuco
pacificist
pacifier
pacifist
packer
packman
packrat
padder
paddler
padre
padrone
paederast
paediatrician
paedophile
pagan
page
pageboy
pain
painter
pal
paladin
palaeontologist
palatine
paleface
paleographer
paleographist
paleontologist
pallbearer
palmist
palmister
palooka
palsgrave
pamperer
pamphleteer
pandar
pander
panderer
panegyrist
panelist
panellist
panhandler
panjandrum
pansexual
pansy
pantheist
pantomimer
pantomimist
pantryman
pantywaist
papa
paparazzo
paperboy
paperer
paperhanger
papist
papoose
pappa
pappoose
para
parachuter
parachutist
parader
paragon
paragrapher
paralegal
paralytic
paramedic
paramedical
paramour
paranoiac
paranoid
paraplegic
paraprofessional
parapsychologist
parasite
paratrooper
pardner
pardoner
parent
parer
paretic
pariah
parishioner
parliamentarian
parlormaid
parlourmaid
parodist
parolee
parricide
parrot
parson
partaker
participant
partisan
partitionist
partizan
partner
party
partygoer
parvenu
pasha
passenger
passer
passerby
paster
pastor
patentee
pater
paterfamilias
pathfinder
pathologist
patient
patrial
patriarch
patrician
patricide
patrikin
patriot
patrioteer
patrisib
patroller
patrolman
patron
patroness
patronne
patsy
patternmaker
patzer
pauper
pawer
pawn
pawnbroker
payee
payer
paymaster
paynim
peacekeeper
peacemaker
peacenik
peach
peanut
pearler
peasant
peculator
pedagog
pedagogue
pedaler
pedaller
pedant
peddler
pederast
pedestrian
pediatrician
pediatrist
pedlar
pedodontist
pedophile
peeler
peeper
peer
peeress
peewee
pelter
pendragon
penetrator
penitent
penman
penologist
penpusher
pensionary
pensioner
pentathlete
peon
perceiver
percher
percipient
percussionist
perfecter
perfectionist
performer
perfumer
peri
perinatologist
periodontist
peripatetic
perisher
perjurer
perpetrator
persecutor
person
personage
personality
personification
perspirer
persuader
pervert
peshmerga
pessimist
pest
pesterer
pet
petitioner
petter
pettifogger
phalangist
pharisee
pharmacist
pharmacologist
philanderer
philanthropist
philatelist
philhellene
philhellenist
philistine
philologist
philologue
philomath
philosopher
philosophiser
philosophizer
phlebotomist
phoner
phonetician
phoney
phonologist
phony
photographer
photojournalist
photometrician
photometrist
phrenologist
physician
physicist
physiologist
physiotherapist
phytochemist
phytologist
pianist
picador
picaninny
piccaninny
pickaninny
picker
picket
picklepuss
picknicker
pickpocket
pickup
picnicker
pig
pigman
pigmy
pilferer
pilgrim
pill
pillager
pillar
pillock
pilot
pimp
pinchgut
pinhead
pink
pinko
pioneer
piper
piranha
pirate
pisser
pistoleer
pitcher
pitchman
pitman
pivot
placeholder
placekicker
placeman
placeseeker
plagiariser
plagiarist
plagiarizer
plainclothesman
plainsman
plaintiff
plaiter
planet
planner
plant
planter
plantsman
plasterer
platelayer
plater
platitudinarian
playactor
playboy
player
playfellow
playgoer
playmaker
playmate
playwright
pleader
pleaser
pleb
plebe
plebeian
pledge
pledgee
pledger
plenipotentiary
plier
plodder
plotter
ploughboy
ploughman
ploughwright
plowboy
plower
plowman
plowwright
plugger
plumber
plunderer
plunger
pluralist
plutocrat
plyer
poacher
podiatrist
poet
poetess
poetiser
poetizer
poilu
pointillist
pointsman
poisoner
poke
pol
polack
polemic
polemicist
polemist
policeman
policewoman
policyholder
politician
politico
pollster
polluter
poltroon
polyandrist
polygamist
polyglot
polygynist
polymath
polytheist
pom
pommy
pomologist
ponce
ponderer
pontifex
pontiff
poof
pooler
poop
poove
pop
pope
popinjay
populariser
popularizer
populist
pornographer
porter
portraitist
portrayer
portwatcher
poser
poseur
poseuse
positivist
posseman
possessor
possible
postdoc
poster
postgraduate
postilion
postillion
postman
postmaster
postmistress
postponer
postulant
postulator
posturer
potboy
potentate
pothead
potholer
pothunter
potman
potter
potterer
pouf
poulterer
poultryman
pouter
powderer
power
powerbroker
powerhouse
practician
practitioner
praetor
pragmatist
prankster
prater
prattler
prayer
preacher
prebendary
precentor
preceptor
precursor
predator
predecessor
predestinarian
predestinationist
predictor
preemie
preemptor
prefect
prelate
premie
premier
prentice
presbyope
presbyter
preschooler
presenter
presentist
preservationist
preserver
president
pressman
prestidigitator
preteen
preteenager
pretender
preterist
pretor
prevaricator
prexy
prey
prick
prickteaser
priest
priestess
prig
primate
primigravida
primipara
primitive
primogenitor
primus
prince
princeling
princess
principal
printer
printmaker
prior
prioress
prisoner
private
privateer
privateersman
prizefighter
pro
probable
probationer
processor
proconsul
procrastinator
proctologist
proctor
procurator
procurer
procuress
prodigal
prodigy
producer
prof
professional
professor
profiteer
profligate
progenitor
progeny
prognosticator
programmer
progressive
prohibitionist
projectionist
prole
proletarian
promisee
promiser
promisor
promoter
prompter
promulgator
proofreader
propagandist
propagator
prophesier
prophet
prophetess
propman
proponent
proposer
propositus
proprietor
proprietress
prosecutor
proselyte
prospect
prospector
prosthetist
prosthodontist
prostitute
protagonist
protectionist
protector
protege
protegee
protester
protozoologist
provider
provincial
provisioner
provocateur
provoker
provost
prowler
proxy
prude
pruner
psalmist
psephologist
pseud
pseudo
pseudohermaphrodite
psychiatrist
psychic
psycho
psychoanalyst
psycholinguist
psychologist
psychoneurotic
psychopath
psychophysicist
psychotherapist
psychotic
pteridologist
publican
publiciser
publicist
publicizer
publisher
puddler
pudge
puerpera
pugilist
puke
puller
puncher
pundit
punk
punster
punter
pup
pupil
puppet
puppeteer
puppy
purchaser
purist
puritan
purser
pursued
pursuer
purveyor
pusher
pushover
pussycat
putter
putterer
putz
pygmy
pyrographer
pyromancer
pyromaniac
qadi
quack
quad
quadripara
quadriplegic
quadroon
quadruplet
quaestor
quaffer
quaker
qualifier
quarreler
quarreller
quarrier
quarry
quarryman
quarter
quarterback
quartermaster
queen
queer
querier
quester
questioner
quibbler
quidnunc
quietist
quin
quint
quintipara
quintuplet
quisling
quitter
quizmaster
quizzer
quoter
rabbi
racialist
racist
racker
racketeer
raconteur
radical
radiobiologist
radiochemist
radiographer
radiologist
radiotherapist
rafter
raftman
raftsman
ragamuffin
ragpicker
ragsorter
raider
railbird
railroader
railwayman
rainmaker
raiser
raja
rajah
rake
rakehell
rambler
ramrod
rancher
ranee
ranger
rani
ranker
ranter
raper
rapist
rappeller
rapper
rapporteur
rapscallion
rascal
rat
ratepayer
ratifier
ratiocinator
rationalist
ratter
raver
ravisher
reactionary
reader
realist
reaper
reasoner
rebel
rebuker
rebutter
receiver
receptionist
recidivist
recipient
recitalist
reciter
reckoner
recluse
reconciler
recorder
recoverer
recreant
recruit
recruiter
rectifier
rector
recusant
red
redact
redactor
redcap
redcoat
redeemer
redhead
redheader
redneck
reeler
reenactor
ref
referee
referral
refiner
refinisher
reformer
reformist
refugee
refuter
regent
regicide
registrant
registrar
regular
regulator
reincarnation
relation
relative
relief
reliever
religionist
religious
reminder
remover
remunerator
renegade
renovator
renter
rentier
rep
repairer
repairman
repatriate
repeater
replacement
reporter
repository
representative
reproacher
reprobate
reprover
republican
requester
rescuer
researcher
reserve
reservist
resident
resister
respecter
respondent
responder
restauranter
restaurateur
rester
restorer
restrainer
retailer
retainer
retaliator
retard
retiree
retreatant
reveler
reveller
revenant
revenuer
reverend
reversioner
reversionist
reviewer
reviser
revisionist
revivalist
revolutionary
revolutionist
rewriter
rhabdomancer
rhetorician
rheumatic
rheumatologist
rhinolaryngologist
rhymer
rhymester
ribald
rider
ridiculer
rifleman
rigger
righthander
rightist
ringer
ringleader
ringmaster
rioter
rip
ripper
riser
ritualist
rival
riveter
rivetter
roadman
roamer
roarer
roaster
robber
rock
rocker
rogue
roisterer
rollerblader
romantic
romanticist
romp
romper
roofer
rookie
roomer
roomie
roommate
roomy
root
rooter
ropedancer
ropemaker
roper
ropewalker
rosebud
rotter
roue
roughneck
roughrider
rounder
roundhead
roundsman
rouser
roustabout
router
rover
rowdy
rower
royalist
rubberneck
rubbernecker
rube
ruffian
ruiner
ruler
ruminator
rummy
rumormonger
rumourmonger
rumrunner
runaway
runner
runt
ruralist
rusher
rustic
rustler
saboteur
sabra
sachem
sacrificer
sacristan
saddhu
saddler
sadhu
sadist
sadomasochist
safebreaker
safecracker
sagamore
sage
sahib
sailmaker
sailor
saint
salesclerk
salesgirl
saleslady
salesman
salesperson
saleswoman
salter
salutatorian
saluter
salvager
salvor
sampler
samurai
sandbagger
sandboy
sandwichman
sangoma
sannup
sannyasi
sannyasin
sanyasi
sap
saphead
sapper
sartor
satellite
satirist
satrap
satyr
saunterer
savage
savant
saver
savior
saviour
sawbones
sawyer
saxist
saxophonist
scab
scalawag
scallywag
scalper
scammer
scamp
scandalmonger
scanner
scapegoat
scapegrace
scaremonger
scatterbrain
scattergood
scavenger
scenarist
sceneshifter
sceptic
schemer
schizophrenic
schlemiel
schlep
schlepper
schlimazel
schlockmeister
schmo
schmoozer
schmuck
schnook
schnorrer
scholar
scholastic
scholiast
schoolboy
schoolchild
schoolfellow
schoolfriend
schoolgirl
schoolman
schoolmarm
schoolmaster
schoolmate
schoolmistress
schoolteacher
scientist
sciolist
scion
scoffer
scofflaw
scold
scolder
scorekeeper
scorer
scorner
scoundrel
scourer
scourge
scourger
scout
scouter
scoutmaster
scrag
scrambler
scrapper
scratch
scratcher
scrawler
screamer
screecher
screener
screenwriter
screw
screwball
screwballer
scribbler
scribe
scrimshanker
scriptwriter
scrivener
scrooge
scrounger
scrubber
scrutineer
scrutiniser
scrutinizer
sculler
scullion
sculptor
sculptress
sculpturer
seafarer
sealer
seaman
seamster
seamstress
searcher
seasonal
seasoner
secessionist
second
seconder
secretary
sectarian
sectarist
sectary
secular
secularist
secundigravida
securer
seducer
seductress
seed
seeder
seedman
seedsman
seeker
seer
segregate
segregationist
segregator
seigneur
seignior
seismologist
seizer
selectman
selector
selectwoman
self
seller
semanticist
semifinalist
seminarian
seminarist
semiotician
semipro
semiprofessional
sempstress
senator
sendee
sender
seneschal
senior
sensation
sensationalist
sensitive
sensualist
sentimentalist
sentinel
sentry
separationist
separatist
septuagenarian
serf
sergeant
sericulturist
serjeant
sermoniser
sermonizer
serologist
servant
server
serviceman
servitor
setter
settler
settlor
sewer
sexagenarian
sexist
sexpot
sexton
shadow
shadower
shaheed
shaker
sham
shaman
shammer
shamus
shanghaier
shaper
sharecropper
shareholder
shareowner
sharer
shark
sharper
sharpie
sharpshooter
sharpy
shaver
shearer
shedder
sheeny
sheep
sheepherder
sheepman
shegetz
sheik
sheika
sheikh
sheikha
sheller
shelver
shepherd
shepherdess
sheriff
sherlock
shielder
shifter
shiksa
shikse
shill
shingler
shipbuilder
shipmate
shipowner
shipper
shipwright
shirker
shirtlifter
shirtmaker
shit
shithead
shitter
shlemiel
shlep
shlepper
shlimazel
shlockmeister
shmo
shmuck
shnook
shnorrer
shocker
shoeblack
shoemaker
shogun
shoofly
shooter
shopaholic
shopkeeper
shoplifter
shopper
shopwalker
shortstop
shot
shouter
shoveler
shoveller
shover
shower
showgirl
showman
shrew
shrimp
shrink
shuffler
shutterbug
shylock
shyster
sib
sibling
sibyl
sidekick
sidesman
sightreader
sightseer
signaler
signaller
signalman
signatory
signer
signior
signor
signora
signore
signorina
silly
silversmith
silverworker
simperer
simple
simpleton
singer
sinner
sipper
sir
sirdar
sire
siren
sirrah
sis
sissy
sister
sitter
skateboarder
skater
skeptic
sketcher
skidder
skier
skimmer
skinflint
skinhead
skinner
skipper
skirmisher
skirt
skivvy
skulker
skunk
skycap
skydiver
slacker
slammer
slanderer
slapper
slasher
slattern
slaughterer
slave
slaveholder
slaver
slavey
slayer
sledder
sleeper
sleepwalker
sleepyhead
sleuth
sleuthhound
slicer
slicker
slider
slinger
slip
slipper
slob
slobberer
sloganeer
slogger
slopseller
slouch
sloucher
sloven
slowcoach
slowpoke
slug
slugabed
sluggard
slugger
slumberer
slut
slyboots
smallholder
smarta
smasher
smiler
smirker
smith
smoker
smoothie
smoothy
smotherer
smuggler
snacker
snake
snapper
snarer
snatcher
sneak
sneaker
sneerer
sneezer
sniffer
sniffler
sniper
snitch
snitcher
sniveler
sniveller
snob
snoop
snooper
snoot
snorer
snorter
snot
snowboarder
snuffer
snuffler
soaker
sobersides
socialiser
socialist
socialite
socializer
sociobiologist
sociolinguist
sociologist
sociopath
sod
sodalist
sodbuster
sodomist
sodomite
softie
softy
sojourner
solderer
soldier
solicitor
solitary
solitudinarian
soloist
solon
solver
somebody
someone
sommelier
somnambulist
somniloquist
son
songster
songstress
songwriter
sonneteer
sonny
soothsayer
soph
sophist
sophisticate
sophomore
soprano
sorcerer
sorceress
sorehead
sorrower
sort
sorter
sot
soubrette
soul
soundman
source
sourdough
sourpuss
souse
southpaw
sovereign
sower
spaceman
spacewalker
spade
spammer
spanker
sparer
spastic
speaker
spearhead
specialiser
specialist
specializer
specifier
spectator
speculator
speechifier
speechmaker
speechwriter
speedskater
spelaeologist
speleologist
spellbinder
speller
spelunker
spender
spendthrift
spewer
sphinx
spic
spick
spik
spiller
spindlelegs
spindleshanks
spinmeister
spinner
spinster
spiritualist
spitfire
spitter
spiv
splicer
splitter
spoiler
spoilsport
spokesman
spokesperson
spokeswoman
sponge
sponger
sponsor
spook
sport
sportscaster
sportsman
sportswoman
sportswriter
spotter
spouse
spouter
sprawler
sprayer
sprigger
sprinter
sprog
spurner
spy
spymaster
squabbler
squanderer
square
squatter
squaw
squawker
squealer
squeeze
squinter
squire
squirmer
squirt
stabber
stableboy
stableman
stacker
staffer
stagehand
stager
staggerer
stainer
stakeholder
stalker
stalwart
stammerer
stamper
standardiser
standardizer
standby
star
starer
starets
stargazer
starlet
starter
starveling
stater
statesman
stateswoman
stationer
stationmaster
statistician
steady
stealer
steamfitter
steelmaker
steelman
steelworker
steeplejack
steerer
steersman
stemmer
stenographer
stentor
stepbrother
stepchild
stepdaughter
stepfather
stepmother
stepparent
stepper
stepsister
stepson
stevedore
steward
stewardess
stickler
stiff
stifler
stigmatic
stigmatist
stinker
stinkpot
stinter
stipendiary
stippler
stirrer
stitcher
stockbroker
stockholder
stockist
stockjobber
stockman
stocktaker
stoic
stoker
stomper
stonecutter
stonemason
stoner
stonewaller
stooge
stoolie
stoolpigeon
stooper
storekeeper
storyteller
stowaway
strafer
straggler
straight
stranger
strangler
straphanger
strapper
strategian
strategist
strawman
strayer
streaker
streetwalker
strider
strikebreaker
striker
stringer
striper
stripling
stripper
striptease
stripteaser
striver
stroke
stroller
strongman
struggler
strumpet
stud
student
study
stuffer
stumblebum
stumbler
stunner
stupe
stupid
stutterer
styler
stylist
stylite
subaltern
subcontractor
subdeacon
subdivider
subduer
subeditor
subject
subjectivist
subjugator
sublieutenant
submariner
submitter
subnormal
subordinate
suborner
subscriber
subsidiary
subsidiser
subsidizer
subsister
substitute
subtracter
suburbanite
subversive
subverter
subvocaliser
subvocalizer
succeeder
success
successor
succorer
succourer
sucker
suckling
suer
sufferer
suffragan
suffragette
suffragist
suggester
suicide
suit
suitor
sultan
summercater
summercaters
sun
sunbather
sundowner
super
supercargo
supergrass
superintendent
superior
superman
supermarketeer
supermarketer
supermodel
supermom
supernumerary
superordinate
superstar
supervisor
supplanter
suppliant
supplicant
supplier
supporter
suppresser
suppressor
supremacist
suprematist
supremo
surety
surfboarder
surfer
surgeon
surmounter
surpriser
surrealist
surrenderer
surrogate
surveyor
survivalist
survivor
suspect
sustainer
sutler
swagger
swaggerer
swaggie
swagman
swain
swami
swashbuckler
swayer
swearer
sweater
sweep
sweeper
sweetheart
sweetie
swell
swellhead
swimmer
swindler
swineherd
swinger
switcher
swordsman
swot
sybarite
sycophant
syllogiser
syllogist
syllogizer
sylph
symboliser
symbolist
symbolizer
sympathiser
sympathizer
symphonist
symposiarch
symposiast
syncopator
syndic
syndicalist
syndicator
synonymist
syntactician
synthesiser
synthesist
synthesizer
syphilitic
systematiser
systematist
systematizer
systemiser
systemizer
tablemate
tacker
tackle
tackler
taco
tactician
tagalong
tagger
tail
tailback
tailor
taker
talebearer
talent
taleteller
talker
tallyman
tamer
tanker
tanner
tantaliser
tantalizer
taoiseach
tapper
tapster
tar
target
tart
tartar
taskmaster
taskmistress
taster
tatterdemalion
tattler
tattletale
taxer
taxidermist
taxman
taxonomer
taxonomist
taxpayer
tchotchke
tchotchkeleh
teacher
teammate
teamster
tearaway
tease
teaser
tec
techie
technician
technocrat
technologist
technophile
technophobe
teen
teenager
teetotaler
teetotalist
teetotaller
tekki
telecaster
teleologist
telepathist
telephoner
televangelist
teller
telltale
tellurian
temp
temporary
temporiser
temporizer
tempter
temptress
tenant
tender
tenderfoot
tenno
tenor
tenorist
tentmaker
tergiversator
termagant
termer
terminator
terpsichorean
territorial
terror
terrorist
tertigravida
testate
testator
testatrix
testee
tester
testifier
thane
thatcher
thaumaturge
thaumaturgist
theatergoer
theatregoer
theist
theologian
theologiser
theologist
theologizer
theoretician
theoriser
theorist
theorizer
theosophist
therapist
thespian
thief
thinker
thirster
thoroughbred
thrall
threat
throttler
throwaway
thrower
throwster
thrush
thruster
thug
thurifer
thwarter
tiddler
tier
tiger
tightwad
tike
tiler
tiller
tilter
timberman
timekeeper
timer
timeserver
timpanist
tinker
tinkerer
tinner
tinsmith
tinter
tipper
tippler
tipster
tiro
titan
tither
titterer
toady
toast
toaster
toastmaster
tobacconist
tobogganist
toddler
toff
toiler
toller
tollgatherer
tollkeeper
tollman
tomboy
tomfool
tool
toolmaker
toper
topper
torchbearer
toreador
torero
tormenter
tormentor
torpedo
tortfeasor
torturer
tosser
tot
totalitarian
totemist
toter
totterer
toucher
tough
toughie
tourer
tourist
tout
touter
tovarich
tovarisch
towhead
townee
towner
townie
townsman
towny
toxicologist
tracer
tracker
tracklayer
trader
tradesman
traditionalist
traducer
trafficker
tragedian
tragedienne
trailblazer
trailer
trainbandsman
trainbearer
trainee
trainer
trainman
trainmaster
traitor
traitress
tramp
tramper
trampler
transactor
transalpine
transcendentalist
transcriber
transexual
transfer
transferee
transferer
transferor
transferrer
transgressor
transient
translator
transmigrante
transmitter
transplanter
transsexual
transvestite
trapper
trapshooter
traveler
traveller
traverser
trawler
treasonist
treasurer
treater
trekker
trembler
trencher
trencherman
trespasser
tribade
tribesman
tribologist
tribune
trick
tricker
trickster
trier
trifler
triggerman
trigonometrician
trimmer
triplet
tripper
tritheist
triumvir
troglodyte
troller
trollop
trombonist
trooper
troubadour
troublemaker
troubler
troubleshooter
trouper
truant
truckler
trudger
truelove
trumpeter
trustbuster
trustee
truster
trustor
trusty
tsar
tsarina
tsaritsa
tsatske
tshatshke
tubercular
tucker
tugger
tumbler
tuner
turkey
turncoat
turncock
turner
turnkey
turtler
tutee
tutor
twaddler
twat
twerp
twiddler
twin
twiner
twirler
twirp
twit
tycoon
tyke
tympanist
type
typesetter
typist
typographer
tyrant
tyro
tzar
tzarina
ultraconservative
ultramontane
ump
umpire
unbeliever
uncle
underachiever
underboss
underclassman
underdog
undergrad
undergraduate
underling
underperformer
undersecretary
underseller
understudy
undertaker
underwriter
undesirable
undoer
unfastener
unfortunate
unicyclist
unilateralist
unionist
unknown
unperson
unraveler
unraveller
untier
untouchable
upbraider
upholder
upholsterer
uprooter
upsetter
upstager
upstart
uranologist
urchin
urinator
urologist
user
usher
usherette
usufructuary
usurer
usurper
utiliser
utilitarian
utilizer
utterer
uxor
uxoricide
vacationer
vacationist
vaccinator
vaccinee
vacillator
vagabond
vagrant
valedictorian
valentine
valet
valetudinarian
valuator
valuer
vamp
vamper
vandal
vanisher
vanquisher
vaquero
varlet
varmint
varnisher
vassal
vaticinator
vaudevillian
vaulter
vaunter
vegan
vegetarian
vendee
vender
vendor
venerator
venter
ventriloquist
venturer
verbaliser
verbalizer
verger
verifier
vermin
versifier
vestal
vestryman
vestrywoman
vet
veteran
veterinarian
veterinary
vexer
vibist
vibraphonist
vicar
vicegerent
vicereine
viceroy
victim
victimiser
victimizer
victor
victualer
victualler
viewer
vigilante
vilifier
villager
villain
villainess
villein
vindicator
vintager
vintner
violator
violinist
violist
violoncellist
virago
virgin
virologist
virtuoso
viscount
viscountess
visionary
visitant
visitor
visualiser
visualizer
vitaliser
vitalist
vitalizer
viticulturist
vivisectionist
vixen
vizier
vocaliser
vocalist
vocalizer
vociferator
voice
voicer
voider
voluntary
volunteer
voluptuary
vomiter
votary
voter
vouchee
voucher
vower
voyager
voyeur
vulcaniser
vulcanizer
vulgarian
vulgariser
vulgarizer
vulture
wacko
waddler
waffler
wag
wagerer
waggoner
waggonwright
wagoner
wagonwright
waif
wailer
wainwright
waiter
waitress
waker
walker
wallah
wallflower
walloper
wallpaperer
wally
waltzer
wanderer
wangler
wanker
wannabe
wannabee
wanter
wanton
warbler
ward
warden
warder
wardress
warehouseman
warehouser
warhorse
warlord
warmonger
warner
warrantee
warranter
warrantor
warrener
warrior
washer
washerman
washerwoman
washout
washwoman
wassailer
waster
wastrel
watch
watchdog
watcher
watchmaker
watchman
watercolorist
watercolourist
waterer
waterman
waver
waverer
wayfarer
weakling
wearer
weasel
weatherman
weaver
webmaster
weeder
weekender
weeper
weigher
weightlifter
weirdie
weirdo
weirdy
weisenheimer
welcher
welcomer
welder
welsher
welterweight
wench
wencher
westerner
wetback
wetnurse
wetter
whacko
whale
whaler
wheedler
wheeler
wheelwright
whiffer
whiner
whip
whipper
whippersnapper
whirler
whisperer
whistleblower
whistler
whiteface
whitey
whittler
whiz
whizz
wholesaler
whore
whoremaster
whoremonger
whoreson
widow
widower
widowman
wife
wiggler
wight
wigmaker
wildcat
wildcatter
wimp
windbag
winder
windtalker
winemaker
wing
wingback
winger
wingman
winker
winner
wino
wiper
wireman
wirer
wiretapper
wiseacre
wisenheimer
wisp
wit
witch
withdrawer
withholder
withstander
witness
witnesser
wittol
wiz
wizard
wog
wolf
woman
womaniser
womanizer
wonderer
wonk
woodcarver
woodcutter
woodman
woodsman
woodworker
wooer
woolgatherer
woolsorter
wop
wordmonger
wordsmith
workaholic
worker
workfellow
workingman
workman
workmate
worldling
worm
worrier
worrywart
worshiper
worshipper
worthy
wrangler
wrecker
wrester
wrestler
wretch
wriggler
wright
writer
wrongdoer
wuss
xylophonist
yachtsman
yachtswoman
yahoo
yakuza
yanker
yardbird
yardie
yardman
yardmaster
yawner
yearling
yearner
yeller
yenta
yeoman
yid
yielder
yob
yobbo
yobo
yodeller
yogi
yokel
youngster
younker
youth
yuppie
zany
zealot
zombi
zombie
zoologist
================================================
FILE: core/src/main/resources/edu/knowitall/openparse/openparse.model
================================================
template
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0000
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345
be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031
{rel} {arg1} dobj> {arg2} 0.3797
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.2444
be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceo|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-author|co-chair|co-creator|co-editor|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editor-at-large|editor-in-chief|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|goddess|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journal|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publication|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburb|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.1492
{rel} {arg1} dobj> {arg2} 0.1473
{rel} {arg1} dobj> {arg2} 0.1473
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1473
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1473
{rel} {arg1} dobj> {arg2} 0.1443
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1443
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.1349
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.1349
be {rel} by {arg1} agent> {arg2} 0.1148
be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.1110
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961
be {rel} {prep} {rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0901
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=aberdeen|accomack|adam|addiscombe|addison|ajaccio|akron|albany|albuquerque|aldershot|alexandrium|allahabad|allegheny|alloway|alsace|amstelveen|amsterdam|anaheim|antrim|arezzo|arlington|armagh|armonk|aston|astorium|atchison|athen|atlanta|aug|augsburg|augusta|austin|avondale|ayr|ayrshire|baden|ballymoney|baltimore|banff|barcelona|basingstoke|bath|battersea|bavarium|beaconsfield|beckenham|bedford|bedfordshire|beij|beirut|belfast|belleville|bellevue|bellingham|bellshill|benonus|berkeley|berkhamst|berkshire|berlin|bermondsey|berwickshire|bethel|bethlehem|bildeston|binghamton|birkenhead|birmingham|blackburn|blackheath|blackpool|blantyre|bloemfontain|bloemfontein|bluefield|bollington|bolton|bombay|bonham|bordeaux|boston|bournemouth|bradford|braintree|braunau|breckenridge|brereton|brighton|brisbane|bristol|brixton|brockton|brocton|bromley|bronx|brooklyn|brookville|brunswick|bucktown|budapest|buffalo|burlington|burnaby|bury|busan|calcutta|calgary|camberwell|cambridge|cambridgeshire|camden|canterbury|canton|caprese|castleford|castleknock|catford|cavan|chairperson|charleston|charlestown|charlotte|charlton|chatsworth|chattanooga|cheapside|chelsea|cheltenham|cheshire|chester|chicago|chillicothe|chiswick|chorley|cincinnatus|claire|clapham|clarksburg|clayton|cleveland|clifton|colchester|coleraine|colfax|cologne|colon|columbiana|columbus|concord|cork|corn|cornhill|cornistone|cornwall|corona|cortland|coshocton|county|coventry|creston|croydon|cumberland|curle|daegu|dalla|danville|daresbury|darmstadt|dartford|dartmouth|davenport|dayton|decatur|dedham|delaware|denver|derby|derbyshire|derry|detroit|devon|devonshire|director|donegal|dorchester|dorset|dorsetshire|dortmund|dresden|dublin|dubuque|duluth|dulwich|dumbarton|dumfry|dunbar|dundee|dunfermline|durham|dusseldorf|duxbury|easton|eastwood|edgware|edinburgh|edmonton|egypt|eisenach|eisleben|elizabeth|elizabethtown|eltham|enfield|english|epworth|essex|europe|fairfax|fairfield|fairmont|farmington|ferry|florence|flush|fockbury|fountainbridge|frankfurt|franklin|fredericksburg|freiburg|friday|fulton|funchal|galway|geneva|georgetown|germantown|glasgow|glendale|gloucester|gloucestershire|godalm|gorus|gravesend|graz|greenville|greenwich|groton|grundleton|guangzhou|guildford|hackney|hadlow|haifa|halifax|halle|halstead|hamburg|hamilton|hammersmith|hampshire|hampstead|hampton|hanau|hancock|hanover|harlem|harlesden|harrison|harrow|hartford|havana|hawaius|heidelberg|henderson|henrico|herefordshire|hertford|hertfordshire|highgate|hillsboro|hingham|hodgenville|hollidaysburg|holloway|hollywood|homer|honolulu|hope|horncastle|horsemonden|hotel|houston|huddersfield|hull|huntingdon|huntington|huntsville|ibstock|indianapoli|inglewood|ipswich|ireland|irve|islington|ithaca|jackson|jamaica|jamestown|jerusalem|johannesburg|john|jul|karlsruhe|kelvedon|ken|kensington|kiev|kilburn|kilkenny|kilmarnock|kilmartin|kilnaleck|kinderhook|king|kingston|kirby|kirkcaldy|kirkcudbright|kirkcudbrightshire|kittann|knox|knoxville|kosciusko|kumus|ladysmith|lambeth|lanarkshire|lancashire|lancaster|landau|landport|laon|leamington|lebanon|lee|leed|leesylvanium|leicester|leicestershire|leith|lewisham|lexington|leytonstone|liberty|lima|limerick|lincoln|lincolnshire|lisbon|litchfield|liverpool|london|londonderry|loui|lowell|lumberport|lumbinus|luxemburg|lydd|lynchburg|lynn|lyon|macclesfield|madison|madrid|maidstone|mako|malaga|malford|malmesbury|manchester|manhattan|mansfield|marietta|marion|martinsburg|marton|marylebone|maryport|massena|maud|mayfair|medan|medina|melbourne|memphi|michael|middlesex|middleton|middletown|milan|milston|milton|mineolum|minneapoli|mitchelstown|mobile|mombasa|monaghan|mondovus|monmouthshire|monroe|monterey|montgomery|montreal|montrose|morgantown|moscow|motiharus|mumbaus|munich|nailstone|nairobus|napanee|nashville|navan|nayland|nenagh|newark|newburgh|newbury|newcastle|newry|newtown|nile|norfolk|northampton|northamptonshire|northumberland|norwich|nottingham|nottinghamshire|noyon|oak|oakland|oberweier|oceanside|october|odessa|of|oldham|olean|olympium|oneonta|ontario|orange|orlando|osaka|ossine|ottawa|ottumwa|oxford|oxfordshire|paddington|paisley|palermo|pancra|pari|pasadena|passaic|paterson|peckham|pembroke|penang|pentonville|perry|perth|perthshire|petersburg|petrovichus|philadelphium|phoenix|pimlico|pinner|pittsburgh|pittsylvanium|plano|plymouth|pontypridd|poplar|portadown|portland|portsea|portsmouth|potsdam|poughkeepsie|president|preston|princeton|pulaskus|pusan|puyallup|quebec|queen|queensland|raid|rangoon|rathgar|rattlesden|read|redhill|regina|rheim|rhinebeck|richardson|richland|richmond|ripley|riverside|roanoke|rochester|rome|romford|room|rosario|roscommon|rosscarbery|rutherford|rye|sacramento|salem|salford|salisbury|sandpoint|sandusky|sandymount|santurce|sardinium|saunderstown|savannah|scarborough|schaafheim|schenectady|scott|scranton|seattle|seneca|seoul|seymour|shadwell|shanghaus|sheffield|shenandoah|shiplake|shoreditch|shrewsbury|shropshire|slatina|slough|smiljan|smithville|soho|solihull|somersby|somersetshire|southampton|southgate|southwark|spokane|springfield|stafford|staffordshire|staunton|steubenville|steventon|stockholm|stratford|streatham|sudbury|suffolk|sunday|sunderland|surrey|sussex|sutton|swansea|syracuse|tacoma|tamico|tampico|taunton|texa|thal|thessalonikus|thetford|thompson|thursday|tidworth|time|tioga|tipperary|toledo|toronto|torquay|torrington|trampa|tremadoc|trento|trenton|troy|truro|tuesday|tuscaloosa|tuscumbium|tyler|ulm|ulster|uniontown|usa|utica|vallejo|vancouver|venice|ventura|victorium|vienna|vincenne|virginium|wale|walsall|walthamstow|walworth|wandsworth|wapp|warren|warrington|warsaw|warwick|warwickshire|washington|waterford|waterloo|watertown|waterville|waxhaw|weimar|wellington|westbury|westchester|westerham|westminster|westmoreland|westphalium|wexford|weymouth|wheel|wigan|williamsburg|willoughby|wiltshire|winchester|windham|windsor|winterset|wolverhampton|wonju|wood|woodhull|woolsthorpe|woolwich|worcester|worcestershire|wrentham|wurtemberg|wurtemburg|yarmouth|yonker|york|yorkshire|youngstown|zanesville|zundert} >appos> {arg2} 0.0839
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724
{rel} to {arg1} prep_at> {arg2} 0.0623
{rel} {arg1} dobj> {arg2} 0.0577
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0577
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0577
be {rel} in {arg1} prep_on> {arg2} 0.0565
be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0530
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478
be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0444
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0444
be {rel} in {arg1} prep_at> {arg2} 0.0432
be {rel} {prep} {arg1} partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0428
{rel} {arg1} dobj> {arg2} 0.0416
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0416
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0416
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0393
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0393
be {rel} of {arg1} prep_in> {arg2} 0.0388
be {rel} in {arg1} prep_in> {slot0:postag=NN:regex=area|arrondissement|basement|basin|borough|capital|center|centre|city|coast|colony|community|continent|corner|country|county|desert|dialect|district|east|edge|end|foothill|forest|form|garden|ghetto|half|hamlet|heart|heartland|hill|hometown|hub|island|kingdom|land|language|level|lowland|mainland|middle|mixture|month|mountain|nation|neighborhood|neighbourhood|north|northeast|northwest|outskirts|parish|parsonage|part|person|plain|port|portion|position|province|quadrant|quarter|region|republic|righteousness|room|ruggedness|seaport|section|session|side|slum|south|southeast|state|street|suburb|surround|tip|town|township|variant|vicinity|village|water|week|west|work|zone} >prep_of> {arg2} 0.0377
{rel} in {arg1} prep_on> {arg2} 0.0371
{rel} to {arg1} prep_unto> {arg2} 0.0363
be {rel} in {rel:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg1} >appos> {arg2} 0.0360
be {rel} in {arg1} prep_of> {arg2} 0.0338
be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0331
be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307
{rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0307
{rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0307
be {rel} in {arg1} tmod> {arg2} 0.0305
be {rel} of {arg1} poss> {arg2} 0.0297
{rel} {arg1} dobj> {arg2} 0.0292
{rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0292
{rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0292
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0282
be {rel} {prep} {arg1} partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2} 0.0254
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agency|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthday|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cause|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|form|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|gift|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|government|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|month|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearl|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subset|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0239
{rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0233
be {rel} in {arg1} prep_of> {rel:postag=NN:regex=airline|airport|bank|building|city|country|county|destination|festival|group|holiday|industry|island|lake|language|market|nation|neighborhood|park|party|place|player|port|province|region|religion|river|sport|square|state|team|town|university|village} >prep_in> {arg2} 0.0230
be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0227
{rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=a|abt|age|album|alliance|angel|appearance|area|arr|award|b|backstage|beta|billion|browser|c|capability|caucus|cd|championship|chord|church|circa|coast|code|collection|colony|committee|competition|computer|console|contest|county|cover|coverage|crown|daughter|delegate|directory|discography|district|download|election|event|everyone|example|family|fan|feat|feature|force|friend|game|government|hand|handily|head|honor|i|kernel|kit|laptop|lyric|machine|magazine|majority|man|master|match|member|model|moment|month|movement|movie|music|name|news|newspaper|night|no|nomination|null|offer|patch|percent|phone|photo|pill|platform|player|power|president|price|primary|prize|product|program|programme|project|puppy|qualifier|race|radio|recount|regime|region|reporter|review|right|ring|ringtone|river|sample|satellite|season|seat|series|servant|service|sex|site|slave|software|something|son|song|spinster|standard|state|stockpile|strip|system|tab|team|television|thanks|thing|thousand|thrice|ticket|time|title|tonight|tournament|trophy|tv|update|v|vaccine|version|victory|video|vote|website|woman|year} >nn> {arg2:postag=NNP} 0.0221
{rel} {arg1} cop> {rel:postag=VBD} 0.0216
be {rel} by {arg1} >partmod> {rel:postag=VBN} >agent> {arg2} 0.0214
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=abt|account|afternoon|alphabet|approx|area|article|block|borough|brothel|browser|cemetery|chairperson|channel|city|close|coast|code|codebase|community|core|country|county|d|database|daughter|day|dialect|distribution|district|distro|dye|engine|even|evening|family|father|file|flavor|format|foundation|garden|grove|guideline|holiday|home|hospital|house|implementation|island|issue|kernel|kilometer|km|language|letter|library|life|location|lyric|market|medium|mile|minute|model|morn|morning|name|neighborhood|newsletter|night|no|north|northeast|null|number|ocean|office|outlet|page|parent|part|party|periphery|platform|pop|port|procedure|project|prose|protocol|province|recommendation|region|right|room|script|sea|section|semester|settlement|side|site|slum|software|son|south|southeast|spreadsheet|stable|standard|state|story|student|style|suburb|syntax|system|technology|temple|term|territory|toolkit|town|township|translation|version|village|website|word|year|zone} >nn> {arg2:postag=NNP} 0.0213
be {rel} in {arg1:postag=NNP} prep_of> {arg2:postag=NNP} 0.0210
be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0208
be {rel} of {arg1:postag=NNP} >appos> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agency|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|stronghold|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >nn> {arg2:postag=NNP} 0.0208
be {rel} of {arg1} >appos> {rel:postag=NN} >poss> {arg2} 0.0206
{rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0200
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195
{rel} {prep} {arg1} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0192
be {rel} {arg1} dobj> {arg2} 0.0191
{rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0181
be {rel} in {arg1} prep_on> {slot0:postag=NNP:regex=apr|april|aug|august|dec|december|feb|february|friday|jan|january|jul|july|jun|june|mar|march|mary|may|nov|november|oct|october|route|saturday|sep|sept|september|strip|thursday} >prep_in> {arg2} 0.0178
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=administration|alliance|archipelago|area|art|b|beach|bloc|border|branch|brother|browser|calculator|capital|car|celebration|cf|chain|church|city|civilization|close|club|code|colony|committee|community|company|complex|comprise|computer|conglomerate|constellation|continent|corporation|country|county|culture|database|datum|day|desert|desktop|division|document|dynasty|e|economy|empire|experience|faith|family|file|forum|framework|franchise|government|grace|group|head|heritage|history|holiday|home|interpreter|island|kernel|king|kingdom|language|law|life|ltd|magazine|man|market|movement|music|nation|network|no|north|offer|operate|or|organization|package|party|pc|people|period|phrase|plan|platform|plc|point|policy|portion|power|practice|problem|program|project|prophecy|protocol|province|publication|region|resort|right|sea|season|security|series|service|software|solution|son|south|sovereignty|specification|standard|state|strip|submission|suite|system|team|technology|territory|thanks|tour|trademark|tradition|tribe|use|website|year} >nn> {arg2:postag=NNP} 0.0175
{rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=account|address|administration|advertise|afternoon|airport|album|announcement|appearance|area|army|art|article|audience|authority|believer|bird|body|boyfriend|briefly|brother|c|caucus|century|ceremony|chapter|cheese|chip|choice|church|citizen|city|club|code|column|commandment|community|conference|convention|cross|day|debate|defense|digamma|discipline|download|e|elder|even|event|face|factory|fansite|father|fear|floor|fluid|force|form|forum|function|game|grant|half|handler|hat|hero|home|hospital|hotel|house|hummingbird|hundred|hurricane|interview|invader|issue|king|label|language|law|letter|life|lineup|love|lyric|machine|man|mansion|meet|meeting|moment|monarch|morn|morph|neighborhood|newspaper|night|no|offer|office|page|people|performance|petition|photograph|picture|platform|play|power|priest|primary|processor|program|ranch|read|record|region|relationship|report|review|right|romance|school|screamer|seat|sell|show|side|signing|site|son|song|speech|sport|state|statement|story|strip|suburb|symposium|system|table|team|television|thousand|time|title|tour|town|township|v|verse|war|way|weapon|week|welcome|workshop|year} >nn> {arg2:postag=NNP} 0.0174
be {rel} of {arg1} poss> {arg2} 0.0169
be {rel} for {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|baseman|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choice|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|extension|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|framework|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.0162
be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|product|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} poss> {arg2:postag=NNP} 0.0162
{rel} {arg1} dobj> {slot0:postag=NN:regex=administration|adventure|bite|border|choice|city|control|degree|existence|interest|lot|member|nation|number|part|people|percent|primary|return|role|selection|sign|state|use|version|work} >prep_of> {arg2} 0.0160
be {rel} to {arg1} >appos> {rel:postag=NN:regex=home|precursor|successor} >prep_of> {arg2} 0.0157
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155
{rel} to {arg1} nsubj> {arg2} 0.0152
be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0152
{rel} in {arg1} tmod> {arg2} 0.0151
be {rel} in {arg1} prep_at> {slot0:postag=NNP:regex=ajaccio|albany|avenue|be|birtley|brielle|bristol|brooklyn|camberwell|cheapside|circleville|clifton|cockermouth|college|cork|cowgate|devonshire|dublin|dunbar|edinburgh|fairfield|freehold|gloucestershire|ipswich|ken|kingston|lewisham|liverpool|locke|london|manchester|marbach|middletown|milston|neck|newbury|norwich|nottinghamshire|noyon|nw|of|oxford|oxfordshire|paddington|palace|pm|portsmouth|salem|schenectady|shadwell|shrewsbury|southampton|steventon|stratford|street|theatrette|ulm|warwick|waterloo|wedmore|westminster|weymouth|winchester|windsor|woolsthorpe|youngstown} >appos> {arg2} 0.0146
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0141
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offshoot|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sect|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subset|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0134
be {rel} {prep} {arg1} prep_of> {slot0:postag=NN:regex=birth|board|body|book|border|branch|brother|capital|celebration|chapter|child|city|colony|committee|commonwealth|community|congregation|constellation|continent|country|county|department|division|domain|draft|dynasty|economy|education|embodiment|family|government|graduate|grandson|incarnation|inhabitant|island|kingdom|land|language|law|life|love|magic|majority|man|mandate|member|mind|month|myth|nation|nature|nome|notation|origin|part|people|person|practice|presence|president|prophet|province|region|religion|republic|revelation|ruler|run|section|sign|son|state|structure|supercontinent|teaching|territory|town|trademark|tribe|union|version|whole|will|word} >{prep:regex=prep_(.*)}> {arg2} 0.0132
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132
be {rel} in {arg1} prep_in> {slot0:postag=NN:regex=area|borough|center|centre|city|coast|colony|constellation|continent|corner|country|county|desert|district|east|end|existence|group|heart|heartland|highland|history|middle|nation|north|northeast|northwest|part|portion|province|region|section|south|southeast|southwest|state|territory|west|whole} >prep_of> {arg2} 0.0131
{rel} {arg1:postag=NNP} nn> {rel:postag=NN:regex=appoint|attack|beat|bless|bomb|buy|call|camera|cause|close|conquer|control|convene|damn|defeat|discover|elect|endorse|executive|habe|help|impeach|invade|issue|kidnap|kiss|launch|lead|love|marry|mean|meet|mount|murder|need|obey|pardon|pick|play|release|rule|run|ship|shoot|sign|slay|star|steal|su|support|test|thru|use|visit|win} 0.0128
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0128
be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0126
{rel} at {arg1} prep_at> {slot0:postag=NN:regex=aspect|chapter|conference|congress|convention|form|history|meet|meeting|proceedings|section|seminar|session|symposium} >prep_of> {arg2} 0.0126
be {rel} in {arg1} prep_at> {slot0:postag=NNP:regex=avenue|casino|headquarters|hilton|hospital|hotel|landport|lumbinus|marton|museum|palace|pm|shadwell|stagira|steventon|street} >prep_in> {arg2} 0.0126
be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|head|president|president-elect|speaker|word} >prep_of> {arg2} 0.0126
{rel} {prep} {arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0125
be {rel} {prep} {arg1} dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0124
{rel} in {arg1} tmod> {arg2} 0.0124
be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=capital|chairman|city|crossroads|father|goddess|island|king|land|member|president|queen|secretary|speaker} >prep_of> {arg2} 0.0123
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0120
be {rel} {prep} {arg1} >appos> {slot0:postag=NN:regex=actor|actress|agency|airline|architect|artist|association|author|babe|bank|body|browser|business|candidate|career|carrier|charity|child|citizen|city|college|commander|community|company|composer|consult|consultancy|corporation|country|designer|director|distribution|economist|engineer|facility|father|firm|foundation|giant|group|hospital|institution|inventor|island|language|leader|mall|man|market|mother|operate|organisation|organization|painter|parent|philanthropist|philosopher|physicist|poet|provider|research|resort|school|service|slave|son|system|temple|territory|town|university|writer} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0118
be {rel} {prep} {arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0117
{rel} to {arg1} prep_in> {arg2} 0.0115
{rel} {arg1} dobj> {slot0:postag=NN:regex=adventure|area|author|back|backside|base|beta|body|book|capital|child|city|coast|colony|control|country|couple|creation|daughter|dialect|edition|face|form|game|gift|glory|gospel|half|hometown|house|inheritance|island|land|launch|line|majority|meet|member|message|nation|part|people|percent|piece|portion|power|province|region|release|republic|rest|role|sale|section|share|shore|sign|son|state|stockpile|support|swath|term|title|use|version|vision|vote|whole|winner|word|write|writer} >prep_of> {arg2} 0.0114
{rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=account|afternoon|al|area|believer|benefit|beta|book|branch|campaign|chairperson|chapter|chip|church|climax|column|company|compatible|computer|courtesy|cup|database|day|degree|device|dispenser|document|download|elder|energy|etc|even|evening|event|feature|file|floor|folder|force|format|friend|grant|hardware|heat|home|hospital|hypothesis|injection|kind|layer|level|liverpool|lyric|machine|magazine|man|mansion|member|moment|morning|nanosecond|network|night|no|office|package|page|pants|part|pc|peninsula|phone|platform|policy|power|preach|processor|profile|program|project|protocol|read|reading|representative|review|scripture|seat|server|service|site|soda|software|song|sound|state|system|television|thing|ticket|time|timer|town|v|verse|version|video|warrior|word|workstation} >nn> {arg2:postag=NNP} 0.0110
be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=ajaccio|anaheim|athen|baden|baltimore|beckley|beij|belfast|bellingham|birmingham|bombay|bradford|brampton|braunau|bristol|bronx|brooklyn|budapest|buffalo|burlington|burnaby|cambridge|canton|changsha|charleston|chengdu|chester|cincinnatus|cleveland|clinton|dalian|dayton|decatur|dublin|dunbar|edinburgh|essex|everett|fayette|fuzhou|galway|geneva|gloucester|haikou|hangzhou|honolulu|irve|islington|kilkenny|kilmarnock|kirkland|kunm|lancashire|lancaster|laupheim|limerick|liverpool|london|macclesfield|manchester|mineolum|newark|nottingham|nottinghamshire|ottawa|oxford|philadelphium|plymouth|queen|redmond|richmond|rochester|rome|sacramento|seattle|shanghaus|sheffield|shenyang|shenzhen|spokane|stafford|stratford|surrey|syracuse|tacoma|texa|tianjin|toronto|troy|tuscumbium|vancouver|victorium|wayne|wuhan|xian|yorkshire} >appos> {arg2} 0.0109
be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0108
be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0108
{rel} {arg1} ccomp> {slot0:postag=VBD:regex=aka|announce|appear|approve|ask|attack|attempt|be|beat|beget|begin|blame|break|bring|buy|call|capture|carry|cause|celebrate|change|choose|circa|claim|come|command|control|create|crucify|cry|decide|declare|defeat|deliver|demand|deny|die|discover|do|draw|drop|emerge|enlist|enter|establish|estimate|fall|favor|fear|feel|find|flee|fly|follow|ft|get|give|go|greet|grow|have|help|hit|hold|inspire|intend|introduce|invade|invent|join|kill|know|launch|lead|leave|lift|live|look|lose|love|make|marry|mean|meet|name|opt|pass|pick|place|play|pledge|produce|prove|publish|put|raise|reach|read|realize|receive|refuse|release|replace|respond|rise|salt|sample|say|see|send|serve|set|show|sign|speak|spend|spring|stand|start|stay|stop|suffer|surprise|take|teach|tell|think|try|turn|use|veto|vote|wake|walk|want|win|write} >nsubj> {arg2} 0.0105
be {rel} {prep} {rel:postag=VBN:regex=base|bear|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >conj> {arg2} 0.0105
be {rel} {prep} {rel:postag=VBN:regex=base|bear|locate|publish} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=ajax|alliston|ancaster|aurora|bancroft|barrie|belleville|bloomfield|brampton|brantford|brisbane|burlington|cairn|cambridge|cannington|catharine|clair|cobourg|cornwall|dashwood|dunda|etobicoke|guelph|hamilton|kana|kingston|kitchener|laval|listowel|london|markham|midland|milton|mississauga|montreal|newmarket|oakville|orangeville|oshawa|ottawa|peterborough|queenston|rockhampton|sarnium|scarborough|stratford|strathroy|sudbury|thornhill|toowoomba|toronto|townsville|waterloo|wheatley|whitby|windsor|woodstock} >appos> {arg1} >appos> {arg2} 0.0104
{rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0104
{rel} at {arg1} prep_to> {arg2} 0.0104
be {rel} in {arg1} prep_to> {arg2} 0.0102
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=birth|bishop|body|capital|cause|chairman|governor|head|incarnation|king|language|leader|mayor|member|minister|mother|part|people|president|president-elect|religion|secretary|son|source|type|word} >prep_of> {arg2} 0.0102
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0101
be {rel} in {arg1} prep_from> {arg2} 0.0101
{rel} {arg1} dobj> {rel:postag=NN:regex=close|control|end|launch|love|release|write} >prep_of> {arg2} 0.0100
{rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=album|application|approach|attack|award|battle|beta|car|card|caucus|championship|city|computer|concept|contest|course|creation|cuisine|culture|degree|design|desktop|dish|even|evening|example|family|file|flavor|format|fusion|hand|head|hypothesis|job|kind|laptop|lyric|menu|morning|movie|music|network|newspaper|night|nomination|offer|park|payment|percent|philosophy|phone|platform|player|plugin|pm|point|primary|program|programme|protocol|race|reader|room|satellite|seat|service|software|something|song|story|style|supporter|system|technology|theme|time|title|tv|type|union|version|video} >nn> {arg2:postag=NNP} 0.0100
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=albany|ame|anaheim|association|austin|bible|brighton|brisbane|brooklyn|cambridge|casper|conference|elkhart|florence|hollywood|houston|institute|ithaca|lincoln|london|medcoast|meet|midland|mose|oakland|orlando|pasadena|queen|reykjavik|seattle|spokane|sydney|university|vancouver|venice|workshop} >appos> {arg2} 0.0099
be {rel} of {arg1:postag=NNP} prep_in> {arg2:postag=NNP} 0.0098
{rel} in {rel:postag=VBD:regex=arrive|begin|come|die|hold|live|locate|meet|open|report|say|start|win|write} >nsubj> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0097
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0096
be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0095
be {rel} of {arg1} prep_in> {rel:postag=NN:regex=capital|city|heart|member|part|region|state|suburb} >prep_of> {arg2} 0.0095
be {rel} by {arg1} partmod> {rel:postag=VBN} >agent> {arg2} 0.0094
{rel} in {arg1} prep_on> {arg2} 0.0093
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=alphabet|area|bank|block|city|cook|corner|country|dish|distribution|hand|handside|language|oven|part|quarter|script|shore|side|system|territory} >amod> {arg2} 0.0093
be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0092
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=author|birth|capital|cause|chairman|father|government|governor|head|home|incarnation|king|language|leader|member|messenger|mother|officer|part|president|prophet|religion|revelation|secretary|son|speaker|type|word} >prep_of> {arg2} 0.0091
{rel} {arg1} amod> {rel:postag=JJ:regex=belate|control|edit|elect|executive|head|leave|occupy|register} 0.0091
be {rel} {prep} {arg1} dobj> {slot0:postag=NNP:regex=apr|april|aug|august|bc|ce|dec|december|feb|february|jan|january|jew|jul|july|jun|june|mar|march|may|nov|november|oct|october|paddington|protestant|saturday|sep|september} >{prep:regex=prep_(.*)}> {arg2} 0.0091
be {rel} by {arg1} >rcmod> {rel:postag=VBN} >agent> {arg2} 0.0090
{rel} in {arg1} prep_in> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|month|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|week|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0089
be {rel} at {arg1} prep_in> {arg2} 0.0089
be {rel} by {arg1} xcomp> {arg2} 0.0087
be {rel} of {rel:postag=NN:regex=author|capital|ceo|creator|director|god|home|island|king|language|leader|member|president|queen} amod> {arg2:postag=NNP} 0.0087
{rel} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086
{rel} of {arg1} prep_to> {arg2} 0.0086
be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0085
{rel} in {arg1} prep_on> {arg2} 0.0084
{rel} at {arg1} prep_at> {slot0:postag=NNP:regex=academy|association|conference|congress|meet|proceed|society} >prep_of> {arg2} 0.0084
{rel} {arg1} cop> {rel:postag=VBZ} 0.0084
be {rel} {prep} {rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0083
{rel} in {arg1} prep_at> {arg2} 0.0083
{rel} {arg1} cop> {rel:postag=VB} 0.0080
{rel} {arg1} >appos> {slot0:postag=NN:regex=actor|boy|group|movement|virus} >rcmod> {rel:postag=VBZ} >dobj> {arg2} 0.0080
{rel} {arg1} prep_in> {arg2} 0.0079
be {rel} in {arg1} prep_in> {arg2} 0.0079
{rel} {arg1} xcomp> {slot0:postag=CD:regex=one} >nsubj> {arg2} 0.0079
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079
{rel} to {arg1} prep_at> {slot0:postag=NN:regex=aspect|conference|convention|destruction|meet|meeting|proceedings|session} >prep_of> {arg2} 0.0078
be {rel} in {arg1} prep_in> {arg2} 0.0078
be {rel} in {arg1} >appos> {rel:postag=NN:regex=book|borough|city|country|island|language|neighborhood|officer|person|province|region|river|state|town} >prep_of> {arg2} 0.0077
be {rel} to {arg1} prep_of> {arg2} 0.0076
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0076
be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0076
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|gift|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0076
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=abingdon|africa|antrim|astorium|atlanta|australium|belfast|belleville|bermondsey|birmingham|brighton|bronx|brooklyn|buffalo|camberwell|cambridge|cleveland|dublin|duxbury|english|funchal|glasgow|groton|hammersmith|hampstead|harlem|honolulu|huntington|january|keresley|lewisham|leytonstone|limerick|liverpool|london|lowell|lynn|malaga|manchester|motiharus|napanee|navan|norwich|noyon|october|oxford|portland|president|preston|pymble|queen|rochester|seattle|seoul|stepney|stonington|surrey|walworth|yorkshire} >conj> {arg2} 0.0076
be {rel} by {rel:postag=VBN:regex=appoint|elect} >dobj> {arg1} >prep_of> {arg2} 0.0075
be {rel} {prep} {arg1:postag=NNP} partmod> {rel:postag=VBN:regex=base|bear|compose|design|develop|find|give|grow|headquarter|hold|list|locate|make|name|persecute|publish|quote|release|situate|speak|use|write} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0075
{rel} in {arg1} nsubj> {arg2} 0.0075
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0074
be {rel} in {arg1} >partmod> {rel:postag=VBN} >tmod> {arg2} 0.0073
be {rel} {prep} {rel:postag=NNP:regex=author|bear|capital|ceo|chairman|chief|city|creator|director|editor|executive|father|god|goddess|governor|head|king|land|lord|member|minister|mother|museum|officer|person|president|professor|region|savior|son|speaker|spirit|university} {prep:regex=prep_(.*)}> {arg2} 0.0072
{rel} in {arg1} prep_at> {arg2} 0.0072
be {rel} {prep} {arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0071
{rel} {arg1} prep_on> {arg2} 0.0071
{rel} to {arg1} nsubj> {arg2} 0.0071
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0071
be {rel} in {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0070
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} >prep_of> {arg2} 0.0069
be {rel} of {arg1:postag=NNP} poss> {arg2:postag=NNP} 0.0069
{rel} {prep} {arg1} advcl> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0068
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0068
{rel} to {arg1} prep_from> {arg2} 0.0068
{rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067
{rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=ad|alliance|app|application|arr|award|campaign|caucus|championship|description|family|feat|file|finale|game|handily|help|line|lyric|machine|man|member|minus|moment|month|night|nod|nomination|null|overdose|page|people|percent|play|plugin|power|primary|prison|program|programme|race|right|season|seat|series|sermon|software|state|strip|subcommittee|tablet|talk|time|title|tonight|trophy|version|victory|video|vote|week|year} >nn> {arg2:postag=NNP} 0.0067
be {rel} by {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0066
be {rel} {prep} {arg1} appos> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logo|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republic|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg2} 0.0065
be {rel} in {rel:postag=VBN:regex=bear|locate|situate} >prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hill|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mountain|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|portion|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg1} >appos> {arg2} 0.0065
{rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065
{rel} in {arg1} prep_on> {arg2} 0.0062
be {rel} of {arg1} poss> {arg2} 0.0062
be {rel} in {arg1} prep_on> {slot0:postag=NN:regex=afternoon|bank|beach|border|campus|coast|continent|corner|day|edge|end|even|floor|fringe|grounds|island|level|morn|outskirts|part|perimeter|periphery|region|shore|side|th|third|tip|waterfront|weekend|west} >prep_of> {arg2} 0.0061
{rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=article|bank|boutique|branch|brand|business|casino|center|column|company|course|degree|event|facility|flight|goodbye|hotel|interest|letter|line|location|lot|major|master|minor|network|nonstop|nothing|number|office|park|part|percent|piece|plan|plant|play|program|programme|property|race|report|representative|restaurant|rule|sale|service|site|something|station|store|subsidiary|superstore|thing|time|way|week|word} >{prep:regex=prep_(.*)}> {arg2} 0.0061
be {rel} in {arg1} >nsubj> {rel:postag=NN:regex=airport|book|city|country|currency|ingredient|island|language|peak|religion|river|state|town} >prep_of> {arg2} 0.0061
be {rel} {prep} {rel:postag=VBD:regex=hold|locate|publish} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0060
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0060
be {rel} {prep} {arg1:postag=NNP} >appos> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alternative|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|co-editor|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gateway|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {slot0:postag=NN:regex=a|alliance|archipelago|area|blog|board|book|cartoon|chain|committee|complex|computer|concept|cult|distribution|division|empire|faction|family|federation|group|island|king|magazine|member|movement|movie|network|novel|organization|party|porcelain|program|province|region|series|son|star|state|strip|suite|system|talk|team|temple|tribe|union} >nn> {arg2:postag=NNP} 0.0060
{rel} of {arg1} ccomp> {slot0:postag=VB:regex=abide|accept|apologize|appoint|attend|be|betray|bring|cease|come|consider|continue|convict|count|damage|damn|decide|deliver|die|disarm|discuss|do|emerge|end|face|fit|get|give|go|guide|have|head|help|hold|issue|judge|know|lead|learn|leave|let|like|live|lose|make|meet|miss|need|place|play|pose|provide|pursue|put|receive|reign|remain|remind|return|review|say|see|sign|sit|speak|spend|stand|start|stay|stop|support|take|talk|teach|tell|try|turn|understand|veto|wait|want|win|withdraw} >nsubj> {arg2} 0.0060
be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0060
be {rel} in {arg1} prep_on> {arg2} 0.0058
be {rel} {prep} {arg1} prep_in> {slot0:postag=NN:regex=ad|area|basin|bc|build|cabin|cave|center|century|city|community|cottage|country|county|datacenter|deer|district|elk|entirety|fall|family|farmhouse|heart|herd|home|hospital|house|human|island|location|manger|morn|neighborhood|oasis|office|position|poverty|province|rectory|region|section|set|shack|situation|spring|story|summer|town|valley|village|war|year} >{prep:regex=prep_(.*)}> {arg2} 0.0057
{rel} in {arg1} nsubj> {arg2} 0.0057
be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0057
{rel} {prep} {arg1:postag=NNP} partmod> {rel:postag=VBG:regex=begin|call|come|consist|convert|fall|fly|go|grow|lead|live|make|move|operate|run|start|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0057
{rel} {arg1} nn> {arg2:postag=NNP} 0.0056
{rel} to {rel:postag=VBD:regex=come|go|move|post|recommend|report|return|say|write} >nsubj> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0056
be {rel} in {arg1} prep_near> {arg2} 0.0056
be {rel} of {arg1} prep_of> {rel:postag=NN:regex=borough|capital|center|city|country|county|island|language|member|president|province|region|religion|sport|state|suburb} >prep_in> {arg2} 0.0056
be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|director|governor|justice|lord|mayor|member|president|secretary|speaker} >prep_of> {arg2} 0.0056
{rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0055
be {rel} in {rel:postag=VBN:regex=base|bear|hold|locate} >prep_at> {arg1} >appos> {arg2} 0.0055
be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0055
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0055
{rel} {prep} {rel:postag=VBN:regex=call|elect|hold|present} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0055
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0055
be {rel} on {arg1} prep_at> {arg2} 0.0055
be {rel} in {arg1} prep_of> {rel:postag=NN:regex=borough|city|country|county|festival|island|language|person|place|province|region|river|state|town} >prep_of> {arg2} 0.0054
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0054
be {rel} by {arg1} nsubj> {arg2} 0.0054
be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0054
be {rel} of {arg1} prep_in> {rel:postag=NN:regex=capital|centre|city|heart|language|member|part|province|region|state|suburb|word} >prep_of> {arg2} 0.0054
be {rel} in {arg1} dobj> {slot0:postag=NN:regex=away|block|distance|drive|hour|kilometer|kilometre|km|m|meter|metre|mile|minute|step|walk|yard} >prep_from> {arg2} 0.0053
be {rel} {prep} {arg1} xcomp> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0052
{rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0052
be {rel} in {arg1} nsubjpass> {arg2} 0.0052
{rel} to {arg1} prep_to> {slot0:postag=NN:regex=area|child|city|conference|continent|convention|descendant|desert|garden|hand|heart|home|homeland|hometown|house|island|judge|king|land|leader|man|meet|mountain|multitude|nation|part|people|port|province|region|shore|side|son|south|sovereignty|state|suburb|throne|tomb|top|town|tribe|village|voice} >prep_of> {arg2} 0.0052
{rel} at {arg1} prep_in> {arg2} 0.0052
be {rel} {prep} {rel:postag=VBN:regex=bear|cede|compare|defeat|establish|hold|locate|speak} {prep:regex=prep_(.*)}> {arg2} 0.0051
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=computer|device|download|file|form|format|garage|language|location|machine|network|office|outlet|page|phone|platform|resident|section|site|system|translation|user|version|website} >nn> {arg2:postag=NNP} 0.0051
{rel} to {arg1} prep_into> {arg2} 0.0051
be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|government|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0051
be {rel} {prep} {rel:postag=NN:regex=body|book|city|country|county|executive|festival|head|holiday|industry|island|lake|language|law|leader|member|minority|mountain|museum|novel|officer|park|part|play|problem|religion|representative|river|sport|state|time|town|trademark} >nsubj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0051
{rel} {prep} {arg1} >rcmod> {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2} 0.0051
be {rel} {prep} {arg1} >infmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0051
be {rel} in {arg1} prep_in> {slot0:postag=NNP:regex=akron|belfast|belleville|bradford|bristol|bronx|brooklyn|buffalo|cambridge|cincinnatus|cleveland|columbus|glasgow|harlem|honolulu|hull|kirriemuir|leicester|lewisham|liverpool|london|maidenhead|manchester|newark|norfolk|nunhead|philadelphium|plymouth|portsmouth|rickinghall|sheffield|suffolk|swindon|walworth|warwickshire} >appos> {arg2} 0.0050
be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0050
be {rel} {prep} {arg1} partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0050
be {rel} on {arg1} prep_in> {arg2} 0.0050
{rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0049
be {rel} in {arg1:postag=NNP} poss> {arg2:postag=NNP} 0.0049
be {rel} on {arg1} prep_on> {slot0:postag=NN:regex=amalgam|bank|coast|combination|corner|day|edge|end|expanse|foot|fringe|implementation|island|life|line|metre|north|part|principle|review|sand|seafront|shore|side|stretch|teach|teaching|tip|version} >prep_of> {arg2} 0.0049
be {rel} in {rel:postag=NNP:regex=city|island|state|town|university} >appos> {arg1} >appos> {arg2} 0.0049
{rel} to {arg1} nsubj> {arg2} 0.0049
be {rel} in {rel:postag=VBN:regex=base|bear|hold|locate|publish|situate|take} appos> {arg2} 0.0048
be {rel} {prep} {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0048
{rel} to {arg1} prep_at> {slot0:postag=NNP:regex=association|conference|meet|society} >prep_of> {arg2} 0.0048
be {rel} in {arg1} prep_at> {arg2} 0.0048
be {rel} {prep} {arg1} nsubj> {arg2} 0.0048
be {rel} of {arg1} prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chief|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|history|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|whole|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0048
be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0047
{rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=award|beisbol|beta|browser|caucus|cd|championship|code|contest|daughter|download|election|family|game|handily|line|list|lyric|match|music|phone|primary|race|recount|ring|seat|series|service|software|system|ticket|time|title|trophy|update|version|video|vote|war|website} >nn> {arg2:postag=NNP} 0.0047
{rel} of {arg1} nsubj> {arg2} 0.0046
{rel} {prep} {arg1} xcomp> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0046
{rel} {arg1} prep_of> {arg2} 0.0046
be {rel} {prep} {arg1:postag=NNP} partmod> {slot0:postag=VBN:regex=base|distribute|locate|publish|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0045
{rel} {arg1} advcl> {rel:postag=VBD} >dobj> {arg2} 0.0045
{rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0045
be {rel} of {arg1} >nsubj> {rel:postag=NN:regex=capital|city|country|currency|island|language|law|person|province|region|religion|sport|state} >prep_in> {arg2} 0.0045
{rel} in {arg1} prep_in> {arg2} 0.0044
{rel} to {arg1} advcl> {slot0:postag=VBD:regex=announce|answer|approach|ask|be|begin|bring|bury|call|cast|close|come|continue|die|do|draw|enter|entitle|follow|give|go|grab|have|heal|hold|join|leave|look|make|mock|move|nod|open|pass|pull|put|return|run|say|see|send|set|show|sin|sit|speak|stand|step|stretch|struggle|take|tell|think|thou|try|turn|visit|wa|walk|wonder|write} >nsubj> {arg2} 0.0044
be {rel} in {arg1} prep_to> {arg2} 0.0044
{rel} {rel:postag=VBD:regex=marry} >dobj> {arg1} >appos> {slot0:postag=NN:regex=brother|daughter|sister|son} >prep_of> {arg2} 0.0044
{rel} to {arg1} xcomp> {slot0:postag=VB:regex=ask|attend|bring|catch|dominate|end|establish|face|find|follow|help|join|liberate|make|meet|open|present|question|rebuild|redeem|rival|run|save|see|settle|take|tell|tempt|test|upstate|visit|watch|win} >dobj> {arg2} 0.0043
be {rel} of {arg1} nsubj> {arg2} 0.0043
be {rel} of {arg1} appos> {arg2} 0.0043
{rel} to {arg1} nsubj> {arg2} 0.0043
be {rel} by {rel:postag=VBN:regex=appoint|elect} >xcomp> {arg1} >prep_of> {arg2} 0.0043
be {rel} to {arg1} tmod> {arg2} 0.0042
{rel} {arg1} infmod> {rel:postag=VB} >dobj> {arg2} 0.0042
be {rel} {prep} {rel:postag=VBN:regex=base|bear|hold|know|locate|make|power|publish|relate|save|schedule|write} >{prep:regex=prep_(.*)}> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0042
be {rel} {prep} {arg1} >amod> {rel:postag=JJ:regex=available|different|free|full|headquarter|hold|native|own|present|president|rich|similar|subject} >{prep:regex=prep_(.*)}> {arg2} 0.0042
be {rel} {arg1} prep_through> {slot0:postag=NN:regex=server} >amod> {arg2} 0.0042
be {rel} of {arg1} poss> {arg2} 0.0042
be {rel} {prep} {rel:postag=NN:regex=book|city|home|member|name|part|son} >prep_of> {arg1} >appos> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|branch|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|component|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg2} 0.0042
{rel} {arg1} nsubj> {arg2} 0.0041
be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=antille|elizabeth|father|gen|himself|inc|incorporate|java|macromedium|matt|microsystem|nemour|psa|rom|savior|saviour|system} >nn> {arg2:postag=NNP} 0.0041
be {rel} {prep} {arg1}