##r chunk
# devtools::install_github("bradleyboehmke/harrypotter")
library(harrypotter)
##pick one of the harrypotter books to analyze with your POS text
##https://github.com/bradleyboehmke/harrypotter check out the options
##load it using data(book title)
if (packageVersion("devtools") < 1.6) {
install.packages("devtools")
}
devtools::install_github("bradleyboehmke/harrypotter", force=TRUE)
## Downloading GitHub repo bradleyboehmke/harrypotter@master
##
checking for file ‘/private/var/folders/t7/39k6tdp5769b9b61rndj5fl80000gn/T/RtmpOaHlA8/remotes181d545aff110/bradleyboehmke-harrypotter-51f7146/DESCRIPTION’ ...
✓ checking for file ‘/private/var/folders/t7/39k6tdp5769b9b61rndj5fl80000gn/T/RtmpOaHlA8/remotes181d545aff110/bradleyboehmke-harrypotter-51f7146/DESCRIPTION’ (354ms)
##
─ preparing ‘harrypotter’:
##
checking DESCRIPTION meta-information ...
✓ checking DESCRIPTION meta-information
##
─ checking for LF line-endings in source and make files and shell scripts
##
─ checking for empty or unneeded directories
##
─ building ‘harrypotter_0.1.0.tar.gz’
##
##
data("goblet_of_fire")
df_r <- goblet_of_fire
#devtools::install_github("trinker/termco")
#devtools::install_github("trinker/coreNLPsetup")
#devtools::install_github("trinker/tagger")
#install.packages("qdap")
#devtools::install_github("bnosac/RDRPOSTagger")
system("java -version")
library(tagger)
library(dplyr)
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
library(rJava)
library(qdap)
## Loading required package: qdapDictionaries
## Loading required package: qdapRegex
##
## Attaching package: 'qdapRegex'
## The following object is masked from 'package:dplyr':
##
## explain
## Loading required package: qdapTools
##
## Attaching package: 'qdapTools'
## The following object is masked from 'package:dplyr':
##
## id
## Loading required package: RColorBrewer
##
## Attaching package: 'qdap'
## The following object is masked from 'package:dplyr':
##
## %>%
## The following objects are masked from 'package:base':
##
## Filter, proportions
library(RDRPOSTagger)
library(reticulate)
py_config()
## python: /Users/zosiajiang/Library/r-miniconda/envs/r-reticulate/bin/python
## libpython: /Users/zosiajiang/Library/r-miniconda/envs/r-reticulate/lib/libpython3.6m.dylib
## pythonhome: /Users/zosiajiang/Library/r-miniconda/envs/r-reticulate:/Users/zosiajiang/Library/r-miniconda/envs/r-reticulate
## version: 3.6.10 |Anaconda, Inc.| (default, Mar 25 2020, 18:53:43) [GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)]
## numpy: /Users/zosiajiang/Library/r-miniconda/envs/r-reticulate/lib/python3.6/site-packages/numpy
## numpy_version: 1.19.0
book_data from R into Python.##python chunk
import nltk
import spacy
import en_core_web_sm
import pandas as pd
nlp = spacy.load('en_core_web_sm')
from nltk.corpus import brown
#transfer data from R to Python
df_py = r.df_r
tagger package to tag your chosen book and print out the first chapter only (i.e., row 1 of the book you chose).(book[1])[[1]][1:10] to print out the first few tags.##r chunk
tag_pos(df_r)
## 1. The/DT villagers/NNS of/IN Little/NNP Hangleron/NNP ...
## 2. Harry/NNP lay/VBD flat/JJ on/IN his/PRP$ back/NN ,/, ...
## 3. By/IN the/DT time/NN Harry/NNP arrived/VBD in/IN the/DT ...
## 4. By/IN twelve/CD o'clock/RB the/DT next/JJ day/NN ,/, ...
## 5. Harry/NNP spun/VBD faster/RBR and/CC faster/RBR ,/, ...
## .
## .
## .
## 33. Voldemort/NNP looked/VBD away/RB from/IN Harry/NNP ...
## 34. Wormtail/NN approached/VBD Harry/NNP ,/, who/WP ...
## 35. Harry/NNP felt/VBD himself/PRP slam/VB flat/JJ into/IN ...
## 36. Dumbledore/NNP stood/VBD up/RP ./. He/PRP stared/VBD ...
## 37. When/WRB he/PRP looked/VBD back/RB ,/, even/RB a/DT ...
print(tag_pos(df_r[1])[1])
## [[1]]
## DT NNS IN NNP
## "The" "villagers" "of" "Little"
## NNP RB VBD PRP
## "Hangleron" "still" "called" "it"
## `` DT NNP NNP
## "\"" "the" "Riddle" "House"
## , '' RB IN
## "," "\"" "even" "though"
## PRP VBD VBN JJ
## "it" "had" "been" "many"
## NNS IN DT NNP
## "years" "since" "the" "Riddle"
## NN VBD VBN RB
## "family" "had" "lived" "there"
## . PRP VBD IN
## "." "It" "stood" "on"
## DT NN VBG DT
## "a" "hill" "overlooking" "the"
## NN , DT IN
## "village" "," "some" "of"
## PRP$ NNS VBN ,
## "its" "windows" "boarded" ","
## NNS VBG IN PRP$
## "tiles" "missing" "from" "its"
## NN , CC NN
## "roof" "," "and" "ivy"
## VBG JJ IN PRP$
## "spreading" "unchecked" "over" "its"
## NN . RB DT
## "face" "." "Once" "a"
## JJ NN , CC
## "fine-looking" "manor" "," "and"
## RB DT JJS CC
## "easily" "the" "largest" "and"
## JJ NN IN NNS
## "grandest" "building" "for" "miles"
## RB , DT NNP
## "around" "," "the" "Riddle"
## NNP VBD RB JJ
## "House" "was" "now" "damp"
## , NN , CC
## "," "derelict" "," "and"
## JJ . DT NNP
## "unoccupied" "." "The" "Little"
## NNP DT VBD IN
## "Hagletons" "all" "agreed" "that"
## DT JJ NN VBD
## "the" "old" "house" "was"
## `` JJ . ''
## "\"" "creepy" "." "\""
## PDT DT NN RB
## "Half" "a" "century" "ago"
## , NN JJ CC
## "," "something" "strange" "and"
## JJ VBD VBN RB
## "horrible" "had" "happened" "there"
## , NN IN DT
## "," "something" "that" "the"
## JJR NNS IN DT
## "older" "inhabitants" "of" "the"
## NN RB VBD TO
## "village" "still" "liked" "to"
## VB WRB NNS IN
## "discuss" "when" "topics" "for"
## NN VBD JJ .
## "gossip" "were" "scarce" "."
## DT NN VBD VBN
## "The" "story" "had" "been"
## VBN RP RB JJ
## "picked" "over" "so" "many"
## NNS , CC VBD
## "times" "," "and" "had"
## VBN VBN IN RB
## "been" "embroidered" "in" "so"
## JJ NNS , IN
## "many" "places" "," "that"
## NN VBD RB JJ
## "nobody" "was" "quite" "sure"
## WP DT NN VBD
## "what" "the" "truth" "was"
## RB . DT NN
## "anymore" "." "Every" "version"
## IN DT NN ,
## "of" "the" "tale" ","
## RB , VBD IN
## "however" "," "started" "in"
## DT JJ NN :
## "the" "same" "place" ":"
## CD NNS RB ,
## "Fifty" "years" "before" ","
## IN NN IN DT
## "at" "daybreak" "on" "a"
## JJ NN POS NN
## "fine" "summer" "'s" "morning"
## WRB DT NNP NNP
## "when" "the" "Riddle" "House"
## VBD RB VBN RB
## "had" "still" "been" "well"
## VBN CC JJ ,
## "kept" "and" "impressive" ","
## DT NN VBD VBN
## "a" "maid" "had" "entered"
## DT NN NN TO
## "the" "drawing" "room" "to"
## VB DT CD NNS
## "find" "all" "three" "Riddles"
## JJ . DT NN
## "dead" "." "The" "maid"
## VBD VBN VBG IN
## "had" "run" "screaming" "down"
## DT NN IN DT
## "the" "hill" "into" "the"
## NN CC VBD IN
## "village" "and" "roused" "as"
## JJ NNS IN PRP
## "many" "people" "as" "she"
## MD . `` VBG
## "could" "." "\"" "Lying"
## RB IN PRP$ NNS
## "there" "with" "their" "eyes"
## JJ JJ . JJ
## "wide" "open" "!" "Cold"
## IN NN . RB
## "as" "ice" "!" "Still"
## IN PRP$ NN NNS
## "in" "their" "dinner" "things"
## . '' DT NN
## "!" "\"" "The" "police"
## VBD VBN , CC
## "were" "summoned" "," "and"
## DT NN IN NNP
## "the" "whole" "of" "Little"
## NNP VBD VBN IN
## "Hangleton" "had" "seethed" "with"
## JJ NN CC JJ
## "shocked" "curiosity" "and" "ill-disguised"
## NN . NN VBD
## "excitement" "." "Nobody" "wasted"
## PRP$ NN VBG TO
## "their" "breath" "pretending" "to"
## VB RB JJ IN
## "feel" "very" "sad" "about"
## DT NNP , IN
## "the" "Riddles" "," "for"
## PRP VBD VBN RBS
## "they" "had" "been" "most"
## JJ . NNP NNP
## "unpopular" "." "Elderly" "Mr."
## CC NNP NNP VBD
## "and" "Mrs." "Riddle" "had"
## VBN JJ , JJ
## "been" "rich" "," "snobbish"
## , CC JJ ,
## "," "and" "rude" ","
## CC PRP$ JJ NN
## "and" "their" "grown-up" "son"
## , NNP , VBD
## "," "Tom" "," "had"
## VBN , IN NN
## "been" "," "if" "anything"
## , JJR . PDT
## "," "worse" "." "All"
## DT NNS VBD IN
## "the" "villagers" "cared" "about"
## VBD DT NN IN
## "was" "the" "identity" "of"
## PRP$ NN : IN
## "their" "murderer" "--" "for"
## RB , CD RB
## "plainly" "," "three" "apparently"
## JJ NNS VBD RB
## "healthy" "people" "did" "not"
## DT NN NN IN
## "all" "drop" "dead" "of"
## JJ NNS IN DT
## "natural" "causes" "on" "the"
## JJ NN . DT
## "same" "night" "." "The"
## NNP NN , DT
## "Hanged" "Man" "," "the"
## NN NN , VBD
## "village" "pub" "," "did"
## DT NN NN IN
## "a" "roaring" "trade" "that"
## NN : DT JJ
## "night" ";" "the" "whole"
## NN VBD TO VB
## "village" "seemed" "to" "have"
## VBN RP TO VB
## "turned" "out" "to" "discuss"
## DT NNS . PRP
## "the" "murders" "." "They"
## VBD VBN IN VBG
## "were" "rewarded" "for" "leaving"
## PRP$ NNS WRB DT
## "their" "firesides" "when" "the"
## NNP POS NN VBD
## "Riddles" "'" "cook" "arrived"
## RB IN PRP$ NN
## "dramatically" "in" "their" "midst"
## CC VBD TO DT
## "and" "announced" "to" "the"
## RB JJ NN IN
## "suddenly" "silent" "pub" "that"
## DT NN VBD NNP
## "a" "man" "called" "Frank"
## NNP VBD RB VBN
## "Bryce" "had" "just" "been"
## VBN . '' NNP
## "arrested" "." "\"" "Frank"
## . '' VBD JJ
## "!" "\"" "cried" "several"
## NNS . '' RB
## "people" "." "\"" "Never"
## . '' NNP NNP
## "!" "\"" "Frank" "Bryce"
## VBD DT NNP POS
## "was" "the" "Riddles" "'"
## NN . PRP VBD
## "gardener" "." "He" "lived"
## RB IN DT NN
## "alone" "in" "a" "run-down"
## NN IN DT NNS
## "cottage" "on" "the" "grounds"
## IN DT NNP NNP
## "of" "the" "Riddle" "House"
## . NNP VBD VBN
## "." "Frank" "had" "come"
## RB IN DT NN
## "back" "from" "the" "war"
## IN DT JJ JJ
## "with" "a" "very" "stiff"
## NN CC DT JJ
## "leg" "and" "a" "great"
## NN IN NNS CC
## "dislike" "of" "crowds" "and"
## JJ NNS , CC
## "loud" "noises" "," "and"
## VBD VBN VBG IN
## "had" "been" "working" "for"
## DT NNP RB IN
## "the" "Riddles" "ever" "since"
## . EX VBD DT
## "." "There" "was" "a"
## NN TO VB DT
## "rush" "to" "buy" "the"
## NN NNS CC VB
## "cook" "drinks" "and" "hear"
## JJR NNS . ''
## "more" "details" "." "\""
## RB VBD PRP VBD
## "Always" "thought" "he" "was"
## JJ , '' PRP
## "odd" "," "\"" "she"
## VBD DT RB VBG
## "told" "the" "eagerly" "listening"
## NNS , IN PRP$
## "villagers" "," "after" "her"
## JJ NN . ''
## "fourth" "sherry" "." "\""
## RB , IN .
## "Unfriendly" "," "like" "."
## PRP VBP JJ IN
## "I" "'m" "sure" "if"
## PRP VBP VBN PRP
## "I" "'ve" "offered" "him"
## DT NN RB ,
## "a" "cuppa" "once" ","
## PRP VBP VBN PRP
## "I" "'ve" "offered" "it"
## DT CD NNS .
## "a" "hundred" "times" "."
## RB VBD TO VB
## "Never" "wanted" "to" "mix"
## , PRP VBD RB
## "," "he" "did" "n't"
## . '' `` UH
## "." "\"" "\"" "Ah"
## , RB , ''
## "," "now" "," "\""
## VBD DT NN IN
## "said" "a" "woman" "at"
## DT NN , NNP
## "the" "bar" "," "\"he"
## VBD DT JJ NN
## "had" "a" "hard" "war"
## , NNP . PRP
## "," "Frank" "." "He"
## VBZ DT JJ NN
## "likes" "the" "quiet" "life"
## . DT VBZ DT
## "." "That" "'s" "no"
## NN TO DT ``
## "reason" "to" "--\"" "\""
## WP RB VBD DT
## "Who" "else" "had" "a"
## NN TO DT NN
## "key" "to" "the" "back"
## NN , RB .
## "door" "," "then" "?"
## `` VBD DT NN
## "\"" "barked" "the" "cook"
## . `` EX VBZ
## "." "\"" "There" "'s"
## VBN DT JJ NN
## "been" "a" "spare" "key"
## VBG IN DT NN
## "hanging" "in" "the" "gardener"
## POS NN RB RB
## "'s" "cottage" "far" "back"
## IN PRP MD VB
## "as" "I" "can" "remember"
## . NN VBD DT
## "!" "Nobody" "forced" "the"
## NN JJ NN .
## "door" "last" "night" "!"
## DT VBN NNS .
## "No" "broken" "windows" "!"
## DT NNP VBD TO
## "All" "Frank" "had" "to"
## VB VBD VB RP
## "do" "was" "creep" "up"
## TO DT JJ NN
## "to" "the" "big" "house"
## IN PRP VBD DT
## "while" "we" "was" "all"
## VBG CC . ``
## "sleeping" ".." "." "\""
## DT NNS VBD JJ
## "The" "villagers" "exchanged" "dark"
## NNS . '' PRP
## "looks" "." "\"" "I"
## RB VBD IN PRP
## "always" "thought" "that" "he"
## VBD DT JJ NN
## "had" "a" "nasty" "look"
## IN PRP , RB
## "about" "him" "," "right"
## RB , `` VBD
## "enough" "," "\"" "grunted"
## DT NN IN DT
## "a" "man" "at" "the"
## NN . '' NNP
## "bar" "." "\"" "War"
## VBD PRP JJ ,
## "turned" "him" "funny" ","
## IN PRP VBP PRP
## "if" "you" "ask" "me"
## , '' VBD DT
## "," "\"" "said" "the"
## NN . '' VBD
## "landlord" "." "\"" "Told"
## PRP PRP MD RB
## "you" "I" "would" "n't"
## VB TO VB IN
## "like" "to" "get" "on"
## DT JJ NN IN
## "the" "wrong" "side" "of"
## NNP , VBD RB
## "Frank" "," "did" "n't"
## PRP , NNP .
## "I" "," "Dot" "?"
## '' VBD DT JJ
## "\"" "said" "an" "excited"
## NN IN DT NN
## "woman" "in" "the" "corner"
## . '' NNP NN
## "." "\"" "Horrible" "temper"
## , '' VBD NNP
## "," "\"" "said" "Dot"
## , VBG RB .
## "," "nodding" "fervently" "."
## '' PRP VBP ,
## "\"" "I" "remember" ","
## WRB PRP VBD DT
## "when" "he" "was" "a"
## NN . '' IN
## "kid.." "." "\"" "By"
## DT VBG NN ,
## "the" "following" "morning" ","
## RB NN IN NNP
## "hardly" "anyone" "in" "Little"
## NNP VBD IN NNP
## "Hangleton" "doubted" "that" "Frank"
## NNP VBD VBN DT
## "Bryce" "had" "killed" "the"
## NNP . CC IN
## "Riddles" "." "But" "over"
## IN DT JJ NN
## "in" "the" "neighboring" "town"
## IN NNP NNP ,
## "of" "Great" "Hangleton" ","
## IN DT JJ CC
## "in" "the" "dark" "and"
## JJ NN NN ,
## "dingy" "police" "station" ","
## NNP VBD RB VBG
## "Frank" "was" "stubbornly" "repeating"
## , RB CC RB
## "," "again" "and" "again"
## , IN PRP VBD
## "," "that" "he" "was"
## JJ , CC IN
## "innocent" "," "and" "that"
## DT JJ NN PRP
## "the" "only" "person" "he"
## VBD VBN IN DT
## "had" "seen" "near" "the"
## NN IN DT NN
## "house" "on" "the" "day"
## IN DT NNP POS
## "of" "the" "Riddles" "'"
## NNS VBD VBN DT
## "deaths" "had" "been" "a"
## NN NN , DT
## "teenage" "boy" "," "a"
## NN , JJ CC
## "stranger" "," "dark-haired" "and"
## JJ . NN RB
## "pale" "." "Nobody" "else"
## IN DT NN VBD
## "in" "the" "village" "had"
## VBN DT JJ NN
## "seen" "any" "such" "boy"
## , CC DT NN
## "," "and" "the" "police"
## VBD RB JJ NNP
## "were" "quite" "sure" "Frank"
## VBD VBN PRP .
## "had" "invented" "him" "."
## RB , RB WRB
## "Then" "," "just" "when"
## NNS VBD VBG RB
## "things" "were" "looking" "very"
## JJ IN NNP ,
## "serious" "for" "Frank" ","
## DT NN IN DT
## "the" "report" "on" "the"
## NNP POS NNS VBD
## "Riddles" "'" "bodies" "came"
## RB CC VBD NN
## "back" "and" "changed" "everything"
## . DT NN VBD
## "." "The" "police" "had"
## RB VBN DT NN
## "never" "read" "an" "odder"
## NN . DT NN
## "report" "." "A" "team"
## IN NNS VBD VBN
## "of" "doctors" "had" "examined"
## DT NNS CC VBD
## "the" "bodies" "and" "had"
## VBN IN NN IN
## "concluded" "that" "none" "of"
## DT NNP VBD VBN
## "the" "Riddles" "had" "been"
## VBN , VBD ,
## "poisoned" "," "stabbed" ","
## NN , NNS ,
## "shot" "," "strangles" ","
## VBN , CC -LRB-
## "suffocated" "," "or" "("
## RB RB IN PRP
## "as" "far" "as" "they"
## MD VB -RRB- VBN
## "could" "tell" ")" "harmed"
## IN DT . IN
## "at" "all" "." "In"
## NN -LRB- DT NN
## "fact" "(" "the" "report"
## VBD , IN DT
## "continued" "," "in" "a"
## NN IN JJ NN
## "tone" "of" "unmistakable" "bewilderment"
## -RRB- , DT NNP
## ")" "," "the" "Riddles"
## DT VBD TO VB
## "all" "appeared" "to" "be"
## IN JJ NN :
## "in" "perfet" "health" "--"
## RB IN DT NN
## "apart" "from" "the" "fact"
## IN PRP VBD DT
## "that" "they" "were" "all"
## JJ . DT NNS
## "dead" "." "The" "doctors"
## VBD NN -LRB- IN
## "did" "note" "(" "as"
## IN VBN TO VB
## "though" "determined" "to" "find"
## NN JJ IN DT
## "something" "wrong" "with" "the"
## NNS -RRB- IN DT
## "bodies" ")" "that" "each"
## IN DT NNP VBD
## "of" "the" "Riddles" "had"
## DT NN IN NN
## "a" "look" "of" "terror"
## IN PRP$ CC PRP$
## "upon" "his" "or" "her"
## NN : CC IN
## "face" "--" "but" "as"
## DT JJ NN VBD
## "the" "frustrated" "police" "said"
## , WP VBD IN
## "," "whoever" "heard" "of"
## CD NNS VBG VBN
## "three" "people" "being" "frightened"
## TO NN . IN
## "to" "death" "?" "As"
## EX VBD DT NN
## "there" "was" "no" "proof"
## IN DT NNP VBD
## "that" "the" "Riddles" "had"
## VBN VBN IN DT
## "been" "murdered" "at" "all"
## , DT NN VBD
## "," "the" "police" "were"
## VBN TO VB NNP
## "forced" "to" "let" "Frank"
## VB . DT NNPS
## "go" "." "The" "Riddles"
## VBD VBN IN DT
## "were" "buried" "in" "the"
## NNP NNP NN ,
## "Little" "Hangleton" "churchyard" ","
## CC PRP$ NNS VBD
## "and" "their" "graves" "remained"
## NNS IN NN IN
## "objects" "of" "curiosity" "for"
## DT NN . TO
## "a" "while" "." "To"
## NN POS NN ,
## "everyone" "'s" "surprise" ","
## CC IN DT NN
## "and" "amid" "a" "cloud"
## IN NN , NNP
## "of" "suspicion" "," "Frank"
## NNP VBD TO PRP$
## "Bryce" "returned" "to" "his"
## NN IN DT NNS
## "cottage" "on" "the" "grounds"
## IN DT NNP NNP
## "of" "the" "Riddle" "House"
## . '' VBZ RB
## "." "\"" "'S" "far"
## IN PRP VBP VBN
## "as" "I" "'m" "concerned"
## , PRP VBD PRP
## "," "he" "killed" "them"
## , CC PRP VBP
## "," "and" "I" "do"
## RB VB WP DT
## "n't" "care" "what" "the"
## NN VBP , ''
## "police" "say" "," "\""
## VBD NNP IN DT
## "said" "Dot" "in" "the"
## JJ NN . ''
## "Hanged" "Man" "." "\""
## CC IN PRP VBD
## "And" "if" "he" "had"
## DT NN , PRP
## "any" "decency" "," "he"
## MD VB RB ,
## "'d" "leave" "here" ","
## VBG IN WRB PRP
## "knowing" "as" "how" "we"
## VBZ PRP VBD PRP
## "knows" "he" "did" "it"
## . '' CC NNP
## "." "\"" "But" "Frank"
## VBD RB VB .
## "did" "not" "leave" "."
## PRP VBD TO VB
## "He" "stayed" "to" "tend"
## DT NN IN DT
## "the" "garden" "for" "the"
## JJ NN WP VBD
## "next" "family" "who" "lived"
## IN DT NNP NNP
## "in" "the" "Riddle" "House"
## , CC RB DT
## "," "and" "then" "the"
## JJ : IN DT
## "next" "--" "for" "neither"
## NN VBD RB .
## "family" "stayed" "long" "."
## RB PRP VBD RB
## "Perhaps" "it" "was" "partly"
## IN IN NNP IN
## "because" "of" "Frank" "that"
## DT JJ NNS VBD
## "the" "new" "owners" "said"
## EX VBD DT JJ
## "there" "was" "a" "nasty"
## NN IN DT NN
## "feeling" "about" "the" "place"
## , WDT , IN
## "," "which" "," "in"
## DT NN IN NNS
## "the" "absence" "of" "inhabitants"
## , VBD TO VB
## "," "started" "to" "fall"
## IN NN . DT
## "into" "disrepair" "." "The"
## JJ NN WP VBD
## "wealthy" "man" "who" "owned"
## DT NNP NNP DT
## "the" "Riddle" "House" "these"
## NNS CC VBD EX
## "days" "neither" "lived" "there"
## CC VB PRP TO
## "nor" "put" "it" "to"
## DT NN : PRP
## "any" "use" ";" "they"
## VBD IN DT NN
## "said" "in" "the" "village"
## IN PRP VBD PRP
## "that" "he" "kept" "it"
## IN `` NN NNS
## "for" "\"" "tax" "reasons"
## , '' IN NN
## "," "\"" "though" "nobody"
## VBD RB JJ WP
## "was" "very" "clear" "what"
## DT MD VB .
## "these" "might" "be" "."
## DT JJ NN VBD
## "The" "wealthy" "owner" "continued"
## TO VB NNP TO
## "to" "pay" "Frank" "to"
## VB DT NN ,
## "do" "the" "gardening" ","
## RB . NNP VBD
## "however" "." "Frank" "was"
## VBG PRP$ JJ NN
## "nearing" "his" "seventy-seventh" "birthday"
## RB , RB JJ
## "now" "," "very" "deaf"
## , PRP$ JJ NN
## "," "his" "bad" "leg"
## NN IN RB ,
## "stiffer" "than" "ever" ","
## CC MD VB VBN
## "but" "could" "be" "seen"
## VBG IN DT NN
## "pottering" "around" "the" "flower"
## NNS IN JJ NN
## "beds" "in" "fine" "weather"
## , RB IN DT
## "," "even" "though" "the"
## NNS VBD VBG TO
## "weeds" "were" "starting" "to"
## VB RP IN PRP
## "creep" "up" "on" "him"
## , VB IN PRP
## "," "try" "as" "he"
## MD TO VB PRP
## "might" "to" "suppress" "them"
## . NNS VBD RB
## "." "Weeds" "were" "not"
## DT JJ NNS NNP
## "the" "only" "things" "Frank"
## VBD TO VB IN
## "had" "to" "contend" "with"
## DT . NNS IN
## "either" "." "Boys" "from"
## DT NN VBN DT
## "the" "village" "made" "a"
## NN IN VBG NNS
## "habit" "of" "throwing" "stones"
## IN DT NNS IN
## "through" "the" "windows" "of"
## DT NNP NNP .
## "the" "Riddle" "House" "."
## PRP VBD PRP$ NNS
## "They" "rode" "their" "bicycles"
## IN DT NNS NNP
## "over" "the" "lawns" "Frank"
## VBD RB RB TO
## "worked" "so" "hard" "to"
## VB JJ . RB
## "keep" "smooth" "." "Once"
## CC RB , PRP
## "or" "twice" "," "they"
## VBD IN DT JJ
## "broke" "into" "the" "old"
## NN IN DT NN
## "house" "for" "a" "dare"
## . PRP VBD IN
## "." "They" "knew" "that"
## JJ NNP POS NN
## "old" "Frank" "'s" "devotion"
## TO DT NN CC
## "to" "the" "house" "and"
## DT NNS VBD RB
## "the" "grounds" "amounted" "almost"
## TO DT NN ,
## "to" "an" "obsession" ","
## CC PRP VBD PRP
## "and" "it" "amused" "them"
## TO VB PRP VBG
## "to" "see" "him" "limping"
## IN DT NN ,
## "across" "the" "garden" ","
## VBG PRP$ NN CC
## "brandishing" "his" "stick" "and"
## VBG RB IN PRP
## "yelling" "croakily" "at" "them"
## . NNP , IN
## "." "Frank" "," "for"
## PRP$ NN , VBD
## "his" "part" "," "believed"
## DT NNS VBD PRP
## "the" "boys" "tormented" "him"
## IN PRP , IN
## "because" "they" "," "like"
## PRP$ NNS CC NNS
## "their" "parents" "and" "grandparents"
## , IN PRP DT
## "," "though" "him" "a"
## NN . RB WRB
## "murderer" "." "So" "when"
## NNP VBD CD NN
## "Frank" "awoke" "one" "night"
## IN NNP CC VBD
## "in" "August" "and" "saw"
## NN RB JJ RB
## "something" "very" "odd" "up"
## IN DT JJ NN
## "at" "the" "old" "house"
## , PRP RB VBD
## "," "he" "merely" "assumed"
## IN DT NNS VBD
## "that" "the" "boys" "had"
## VBN CD NN RBR
## "gone" "one" "step" "further"
## IN PRP$ NNS TO
## "in" "their" "attempts" "to"
## VB PRP . PRP
## "punish" "him" "." "It"
## VBD NNP POS JJ
## "was" "Frank" "'s" "bad"
## NN WDT VBD PRP
## "leg" "that" "woke" "him"
## : PRP VBD VBG
## ";" "it" "was" "paining"
## PRP RBR IN RB
## "him" "worse" "than" "ever"
## IN PRP$ JJ NN
## "in" "his" "old" "age"
## . PRP VBD RB
## "." "He" "got" "up"
## CC VBD NN IN
## "and" "limped" "downstairs" "into"
## DT NN IN DT
## "the" "kitchen" "with" "the"
## NN IN VBG PRP$
## "idea" "of" "refilling" "his"
## NN NN TO VB
## "hot-water" "bottle" "to" "ease"
## DT NN IN PRP$
## "the" "stiffness" "in" "his"
## NN . VBG IN
## "knee" "." "Standing" "at"
## DT NN , VBG
## "the" "sink" "," "filling"
## DT NN , PRP
## "the" "kettle" "," "he"
## VBD RP IN DT
## "looked" "up" "at" "the"
## NNP NNP CC VBD
## "Riddle" "House" "and" "saw"
## NNS VBG IN PRP$
## "lights" "glimmering" "in" "its"
## JJ NNS . NNP
## "upper" "windows" "." "Frank"
## VBD IN RB WP
## "knew" "at" "once" "what"
## VBD VBG RP .
## "was" "going" "on" "."
## DT NNS VBD VBN
## "The" "boys" "had" "broken"
## IN DT NN RB
## "into" "the" "house" "again"
## , CC VBG IN
## "," "and" "judging" "by"
## DT VBG NN IN
## "the" "flickering" "quality" "of"
## DT NN , PRP
## "the" "light" "," "they"
## VBD VBN DT NN
## "had" "started" "a" "fire"
## . NNP VBD DT
## "." "Frank" "had" "no"
## NN , IN DT
## "telephone" "," "in" "any"
## NN , PRP VBD
## "case" "," "he" "had"
## RB VBN DT NN
## "deeply" "mistrusted" "the" "police"
## RB IN PRP VBD
## "ever" "since" "they" "had"
## VBN PRP IN IN
## "taken" "him" "in" "for"
## VBG IN DT NNP
## "questioning" "about" "the" "Riddles"
## POS NNS . PRP
## "'" "deaths" "." "He"
## VBD RP DT NN
## "put" "down" "the" "kettle"
## IN RB , VBD
## "at" "once" "," "hurried"
## RB RB RB RB
## "back" "upstairs" "as" "fast"
## IN PRP$ JJ NN
## "as" "his" "bad" "leg"
## MD VB , CC
## "would" "allow" "," "and"
## VBD RB RB IN
## "was" "soon" "back" "in"
## PRP$ NN , RB
## "his" "kitchen" "," "fully"
## VBN CC VBG DT
## "dressed" "and" "removing" "a"
## JJ JJ NN IN
## "rusty" "old" "key" "from"
## PRP$ NN IN DT
## "its" "hook" "by" "the"
## NN . PRP VBD
## "door" "." "He" "picked"
## RP PRP$ VBG NN
## "up" "his" "walking" "stick"
## , WDT VBD VBN
## "," "which" "was" "propped"
## IN DT NN ,
## "against" "the" "wall" ","
## CC VBD RP IN
## "and" "set" "off" "into"
## DT NN . DT
## "the" "night" "." "The"
## JJ NN IN DT
## "front" "door" "of" "the"
## NNP NNP VBD DT
## "Riddle" "House" "bore" "no"
## NN IN VBG VBN
## "sign" "of" "being" "forced"
## , CC VBD DT
## "," "nor" "did" "any"
## IN DT NNS .
## "of" "the" "windows" "."
## NNP VBD IN TO
## "Frank" "limped" "around" "to"
## DT NN IN DT
## "the" "back" "of" "the"
## NN IN PRP VBD
## "house" "until" "he" "reached"
## DT NN RB RB
## "a" "door" "almost" "completely"
## VBN IN NN ,
## "hidden" "by" "ivy" ","
## VBD RP DT JJ
## "took" "out" "the" "old"
## NN , VBD PRP
## "key" "," "put" "it"
## IN DT NN ,
## "into" "the" "lock" ","
## CC VBD DT NN
## "and" "opened" "the" "door"
## RB . PRP VBD
## "noiselessly" "." "He" "let"
## PRP IN DT JJ
## "himself" "into" "the" "cavernous"
## NN . NNP VBD
## "kitchen" "." "Frank" "had"
## RB VBN PRP IN
## "not" "entered" "it" "for"
## JJ NNS : RB
## "many" "years" ";" "nevertheless"
## , IN PRP VBD
## "," "although" "it" "was"
## RB JJ , PRP
## "very" "dark" "," "he"
## VBD WRB DT NN
## "remembered" "where" "the" "door"
## IN DT NN VBD
## "into" "the" "hall" "was"
## , CC PRP VBD
## "," "and" "he" "groped"
## PRP$ NN IN PRP
## "his" "way" "towards" "it"
## , PRP$ NNS JJ
## "," "his" "nostrils" "full"
## IN DT NN IN
## "of" "the" "smell" "of"
## NN , NNS VBN
## "decay" "," "ears" "pricked"
## IN DT NN IN
## "for" "any" "sound" "of"
## NNS CC NNS IN
## "footsteps" "or" "voices" "from"
## NN . PRP VBD
## "overhead" "." "He" "reached"
## DT NN , WDT
## "the" "hall" "," "which"
## VBD DT JJ JJR
## "was" "a" "little" "lighter"
## NN TO DT JJ
## "owing" "to" "the" "large"
## JJ NNS IN DT
## "mullioned" "windows" "on" "either"
## NN IN DT JJ
## "side" "of" "the" "front"
## NN , CC VBD
## "door" "," "and" "started"
## TO VB DT NNS
## "to" "climb" "the" "stairs"
## , VBG DT NN
## "," "blessing" "the" "dust"
## WDT VBD JJ IN
## "that" "lay" "thick" "upon"
## DT NN , IN
## "the" "stone" "," "because"
## PRP VBD DT NN
## "it" "muffled" "the" "sound"
## IN PRP$ NNS CC
## "of" "his" "feet" "and"
## VBP . IN DT
## "stick" "." "On" "the"
## NN , NNP VBD
## "landing" "," "Frank" "turned"
## RB , CC VBD
## "right" "," "and" "saw"
## IN RB WRB DT
## "at" "once" "where" "the"
## NNS VBD : IN
## "intruders" "were" ":" "At"
## DT DT NN IN
## "the" "every" "end" "of"
## DT NN DT NN
## "the" "passage" "a" "door"
## VBD RB , CC
## "stood" "ajar" "," "and"
## DT VBG NN NN
## "a" "flickering" "light" "shone"
## IN DT NN ,
## "through" "the" "gap" ","
## VBG DT JJ NN
## "casting" "a" "long" "sliver"
## IN NN IN DT
## "of" "gold" "across" "the"
## JJ NN . NNP
## "black" "floor" "." "Frank"
## VBD RBR CC RBR
## "edged" "closer" "and" "closer"
## , PRP VBD JJ
## "," "he" "was" "able"
## TO VB DT JJ
## "to" "see" "a" "narrow"
## NN IN DT NN
## "slice" "of" "the" "room"
## IN . DT NN
## "beyond" "." "The" "fire"
## , PRP RB VBD
## "," "he" "now" "saw"
## , VBD VBN VBN
## "," "had" "been" "lit"
## IN DT JJ .
## "in" "the" "grate" "."
## DT VBD PRP .
## "This" "surprised" "him" "."
## RB PRP VBD VBG
## "Then" "he" "stopped" "moving"
## CC VBD RB ,
## "and" "listened" "intently" ","
## IN DT NN POS
## "for" "a" "man" "'s"
## NN VBD IN DT
## "voice" "spoke" "within" "the"
## NN : PRP VBD
## "room" ";" "it" "sounded"
## JJ CC JJ .
## "timid" "and" "fearful" "."
## `` EX VBZ DT
## "\"" "There" "is" "a"
## RB RBR IN DT
## "little" "more" "in" "the"
## NN , PRP$ NNP
## "bottle" "," "My" "Lord"
## , IN PRP VBP
## "," "if" "you" "are"
## RB JJ . ''
## "still" "hungry" "." "\""
## `` RB , ''
## "\"" "Later" "," "\""
## VBD DT JJ NN
## "said" "a" "second" "voice"
## . DT RB VBN
## "." "This" "too" "belonged"
## TO DT NN :
## "to" "a" "man" "--"
## CC PRP VBD RB
## "but" "it" "was" "strangely"
## JJ , CC JJ
## "high-pitched" "," "and" "cold"
## IN DT JJ NN
## "as" "a" "sudden" "blast"
## IN JJ NN .
## "of" "icy" "wind" "."
## NN IN DT NN
## "Something" "about" "that" "voice"
## VBD DT JJ NNS
## "made" "the" "sparse" "hairs"
## IN DT NN IN
## "on" "the" "back" "of"
## NNP POS NN VB
## "Frank" "'s" "neck" "stand"
## RP . '' VB
## "up" "." "\"" "Move"
## PRP RBR TO DT
## "me" "closer" "to" "the"
## NN , JJ .
## "fire" "," "Wormtail" "."
## '' NNP VBD PRP$
## "\"" "Frank" "turned" "his"
## JJ NN IN DT
## "right" "ear" "toward" "the"
## NN , DT JJR
## "door" "," "the" "better"
## TO VB . EX
## "to" "hear" "." "There"
## VBD DT NN IN
## "came" "the" "clink" "of"
## DT NN VBG VBN
## "a" "bottle" "being" "put"
## RP IN DT JJ
## "down" "upon" "some" "hard"
## NN , CC RB
## "surface" "," "and" "then"
## DT JJ NN NN
## "the" "dull" "scraping" "noise"
## IN DT JJ NN
## "of" "a" "heavy" "chair"
## VBG VBN IN DT
## "being" "dragged" "across" "the"
## NN . NNP VBD
## "floor" "." "Frank" "caught"
## DT NN IN DT
## "a" "glimpse" "of" "a"
## JJ NN , PRP$
## "small" "man" "," "his"
## NN TO DT NN
## "back" "to" "the" "door"
## , VBG DT NN
## "," "pushing" "the" "chair"
## IN NN . PRP
## "into" "place" "." "He"
## VBD VBG DT JJ
## "was" "wearing" "a" "long"
## JJ NN , CC
## "black" "cloak" "," "and"
## EX VBD DT JJ
## "there" "was" "a" "bald"
## NN IN DT NN
## "patch" "at" "the" "back"
## IN PRP$ NN .
## "of" "his" "head" "."
## RB PRP VBD IN
## "Then" "he" "went" "out"
## IN NN RB .
## "of" "sight" "again" "."
## `` WRB VBZ NNP
## "\"" "Where" "is" "Nagini"
## . '' VBD DT
## "?" "\"" "said" "the"
## JJ NN . ''
## "cold" "voice" "." "\""
## PRP : PRP VBP
## "I" "--" "I" "do"
## RB VB , PRP$
## "n't" "know" "," "My"
## NNP , '' VBD
## "Lord" "," "\"" "said"
## DT JJ NN RB
## "the" "first" "voice" "nervously"
## . '' PRP VBD
## "." "\"" "She" "set"
## RP TO VB DT
## "out" "to" "explore" "the"
## NN , PRP VBP
## "house" "," "I" "think"
## CC . `` ``
## ".." "." "\"" "\""
## PRP MD VB PRP
## "You" "will" "milk" "her"
## IN PRP VBP ,
## "before" "we" "retire" ","
## JJ , '' VBD
## "Wormtail" "," "\"" "said"
## DT JJ NN .
## "the" "second" "voice" "."
## '' PRP MD VB
## "\"" "I" "will" "need"
## VBG IN DT NN
## "feeding" "in" "the" "night"
## . DT NN VBZ
## "." "The" "journey" "has"
## VBN PRP RB .
## "tired" "me" "greatly" "."
## '' NNP VBD ,
## "\"" "Brow" "furrowed" ","
## NNP VBN PRP$ JJ
## "Frank" "inclined" "his" "good"
## NN RB RBR TO
## "ear" "still" "closer" "to"
## DT NN , VBG
## "the" "door" "," "listening"
## RB RB . EX
## "very" "hard" "." "There"
## VBD DT NN ,
## "was" "a" "pause" ","
## CC RB DT NN
## "and" "then" "the" "man"
## VBN NNP VBD RB
## "called" "Wormtail" "spoke" "again"
## . '' PRP$ NNP
## "." "\"" "My" "Lord"
## , MD PRP VB
## "," "may" "I" "ask"
## WRB RB PRP VBP
## "how" "long" "we" "are"
## VBG TO VB RB
## "going" "to" "stay" "here"
## . '' '' DT
## "?" "\"" "\"" "A"
## NN , `` VBD
## "week" "," "\"" "said"
## DT JJ NN .
## "the" "cold" "voice" "."
## '' RB RB .
## "\"" "Perhapse" "longer" "."
## DT NN VBZ RB
## "The" "place" "is" "moderately"
## JJ , CC DT
## "comfortable" "," "and" "the"
## NN MD VB RB
## "plan" "cannot" "proceed" "yet"
## . PRP MD VB
## "." "It" "would" "be"
## JJ TO VB IN
## "foolish" "to" "act" "before"
## DT NNP NNP NNP
## "the" "Quidditch" "World" "Cup"
## VBZ RB . ''
## "is" "over" "." "\""
## NNP VBD DT VBD
## "Frank" "inserted" "a" "gnarled"
## NN IN PRP$ NN
## "finger" "into" "his" "ear"
## CC VBD PRP .
## "and" "rotated" "it" "."
## NNP , DT NN
## "Owing" "," "no" "doubt"
## , TO DT NN
## "," "to" "a" "buildup"
## IN NN , PRP
## "of" "earwax" "," "he"
## VBD VBN DT NN
## "had" "heard" "the" "word"
## `` UH , ''
## "\"" "Quidditch" "," "\""
## WDT VBD RB DT
## "which" "was" "not" "a"
## NN IN DT .
## "word" "at" "all" "."
## '' DT : DT
## "\"" "The" "--" "the"
## NNP NNP NNP ,
## "Quidditch" "World" "Cup" ","
## PRP$ NNP . ''
## "My" "Lord" "?" "\""
## VBD JJ . -LRB-
## "said" "Wormtail" "." "("
## NNP VBD PRP$ NN
## "Frank" "dug" "his" "finger"
## RB RBR RB IN
## "still" "more" "vigorously" "into"
## PRP$ NN . -RRB-
## "his" "ear" "." ")"
## `` VB PRP ,
## "\"" "Forgive" "me" ","
## CC : PRP VBP
## "but" "--" "I" "do"
## RB VB : WRB
## "not" "understand" "--" "why"
## MD PRP VB IN
## "should" "we" "wait" "until"
## DT NNP NNP VBZ
## "the" "World" "Cup" "is"
## IN . '' ``
## "over" "?" "\"" "\""
## IN , NN ,
## "Because" "," "fool" ","
## IN DT RB NN
## "at" "this" "very" "moment"
## NNS VBP VBG IN
## "wizards" "are" "pouring" "into"
## DT NN IN DT
## "the" "country" "from" "all"
## IN DT NN ,
## "over" "the" "world" ","
## CC DT NN IN
## "and" "every" "meddler" "from"
## DT NNP IN NNP
## "the" "Ministry" "of" "Magic"
## MD VB IN NN
## "will" "be" "on" "duty"
## , IN DT NN
## "," "on" "the" "watch"
## IN NNS IN JJ
## "for" "signs" "of" "ususual"
## NN , NN CC
## "activity" "," "checking" "and"
## NN NNS . PRP
## "double-checking" "identities" "." "They"
## MD VB VBN IN
## "will" "be" "obsessed" "with"
## NN , IN DT
## "security" "," "lest" "the"
## NNS VBP NN .
## "Muggles" "notice" "anything" "."
## IN PRP VBP .
## "So" "we" "wait" "."
## '' NNP VBD VBG
## "\"" "Frank" "stopped" "trying"
## TO VB RP PRP$
## "to" "clear" "out" "his"
## NN . PRP VBD
## "ear" "." "He" "had"
## RB VBN DT NNS
## "distinctly" "heard" "the" "words"
## `` NNP IN NNP
## "\"" "Ministry" "of" "Magic"
## , `` NNS ,
## "," "\"" "\"wizards" ","
## '' CC `` NNS
## "\"" "and" "\"" "Muggles"
## . '' RB ,
## "." "\"" "Plainly" ","
## DT IN DT NNS
## "each" "of" "these" "expressions"
## VBD NN JJ ,
## "meant" "something" "secret" ","
## CC NNP MD VB
## "and" "Frank" "could" "think"
## IN RB CD NNS
## "of" "only" "two" "sorts"
## IN NNS WP MD
## "of" "people" "who" "would"
## VB IN NN :
## "speak" "in" "code" ":"
## NNS CC NNS .
## "spies" "and" "criminals" "."
## NNP VBD PRP$ NN
## "Frank" "tightened" "his" "hold"
## IN PRP$ NN NN
## "on" "his" "walking" "stick"
## RB RBR , CC
## "once" "more" "," "and"
## VBD RBR RB RB
## "listened" "more" "closely" "still"
## . '' PRP$ NN
## "." "\"" "Your" "Lordship"
## VBZ RB VBN ,
## "is" "still" "determined" ","
## RB . '' NNP
## "then" "?" "\"" "Wormtail"
## VBD RB . ''
## "said" "quietly" "." "\""
## RB PRP VBP VBN
## "Certainly" "I" "am" "determined"
## , NNP . ``
## "," "Wormtail" "." "\""
## EX VBD DT NN
## "There" "was" "a" "note"
## IN NN IN DT
## "of" "menace" "in" "the"
## JJ NN RB .
## "cold" "voice" "now" "."
## DT JJ NN VBD
## "A" "slight" "pause" "followed"
## : CC DT JJ
## "--" "and" "the" "Wormtail"
## NN , DT NNS
## "spoke" "," "the" "words"
## VBG IN PRP IN
## "tumbling" "from" "him" "in"
## DT NN , IN
## "a" "rush" "," "as"
## IN PRP VBD VBG
## "though" "he" "was" "forcing"
## PRP TO VB DT
## "himself" "to" "say" "this"
## IN PRP VBD PRP$
## "before" "he" "lost" "his"
## NN . '' PRP
## "nerve" "." "\"" "It"
## MD VB VBN IN
## "could" "be" "done" "without"
## NNP NNP , PRP$
## "Harry" "Potter" "," "My"
## NNP . '' DT
## "Lord" "." "\"" "Another"
## NN , RBR VBN
## "pause" "," "more" "protracted"
## , CC RB :
## "," "and" "then" "--"
## `` IN NNP NNP
## "\"" "Without" "Harry" "Potter"
## . '' VBD DT
## "?" "\"" "breathed" "the"
## JJ NN RB .
## "second" "voice" "softly" "."
## `` PRP VBP VBP
## "\"" "I" "see" ".."
## . '' `` PRP$
## "." "\"" "\"" "My"
## NNP , PRP VBP
## "Lord" "," "I" "do"
## RB VB DT IN
## "not" "say" "this" "out"
## IN NN IN DT
## "of" "concern" "for" "the"
## NN . '' VBD
## "boy" "!" "\"" "said"
## NNP , PRP$ NN
## "Wormtail" "," "his" "voice"
## VBG RB . ''
## "rising" "squeakily" "." "\""
## DT NN VBZ NN
## "The" "boy" "is" "nothing"
## TO PRP , NN
## "to" "me" "," "nothing"
## IN DT . PRP
## "at" "all" "!" "It"
## VBZ RB IN IN
## "is" "merely" "that" "if"
## PRP VBD TO VB
## "we" "were" "to" "use"
## DT NN CC NN
## "another" "witch" "or" "wizard"
## : DT NN :
## "--" "any" "wizard" "--"
## DT NN MD VB
## "the" "thing" "could" "be"
## VBN RB RB RBR
## "done" "so" "much" "more"
## RB . IN PRP
## "quickly" "!" "If" "you"
## VBD PRP TO VB
## "allowed" "me" "to" "leave"
## PRP IN DT JJ
## "you" "for" "a" "short"
## NN : PRP VBP
## "while" "--" "you" "know"
## IN PRP MD VB
## "that" "I" "can" "disguise"
## PRP RBS RB :
## "myself" "most" "effectively" "--"
## PRP MD VB RB
## "I" "could" "be" "back"
## RB IN RB JJ
## "here" "in" "as" "little"
## IN CD NNS IN
## "as" "two" "days" "with"
## DT JJ NN JJ
## "a" "suitable" "person" "--\""
## `` PRP MD VB
## "\"" "I" "could" "use"
## DT NN , ''
## "another" "wizard" "," "\""
## VBD DT JJ NN
## "said" "the" "cold" "voice"
## RB , `` DT
## "softly" "," "\"" "that"
## VBZ JJ CC .
## "is" "true" ".." "."
## '' `` PRP$ NNP
## "\"" "\"" "My" "Lord"
## , PRP VBZ NN
## "," "it" "makes" "sense"
## , '' VBD NNP
## "," "\"" "said" "Wormtail"
## , VBG RB VBN
## "," "sounding" "thoroughly" "relieved"
## RB . '' VBG
## "now" "." "\"" "Laying"
## NNS IN NNP NNP
## "hands" "on" "Harry" "Potter"
## MD VB RB JJ
## "would" "be" "so" "difficult"
## , PRP VBZ RB
## "," "he" "is" "so"
## RB VBN NN ''
## "well" "protected" "--\"" "\""
## CC RB PRP VBP
## "And" "so" "you" "volunteer"
## TO VB CC VB
## "to" "go" "and" "fetch"
## PRP DT NN .
## "me" "a" "substitute" "?"
## PRP VBP RB DT
## "I" "wonder" "...perhaps" "the"
## NN IN VBG PRP
## "task" "of" "nursing" "me"
## VBZ VBN JJ IN
## "has" "become" "wearisome" "for"
## PRP , NNP .
## "you" "," "Wormtail" "?"
## MD DT NN IN
## "Could" "this" "suggestion" "of"
## VBG DT NN VB
## "abandoning" "the" "plan" "be"
## NN JJR IN DT
## "nothing" "more" "than" "an"
## NN TO VB PRP
## "attempt" "to" "desert" "me"
## . '' `` PRP$
## "?" "\"" "\"" "My"
## NNP . PRP :
## "Lord" "!" "I" "--"
## PRP VBP DT NN
## "I" "have" "no" "wish"
## TO VB PRP ,
## "to" "leave" "you" ","
## NN IN DT JJ
## "none" "at" "all" "--\""
## `` VB RB VB
## "\"" "Do" "not" "lie"
## TO PRP . ''
## "to" "me" "!" "\""
## VBD DT JJ NN
## "hissed" "the" "second" "voice"
## . '' PRP MD
## "." "\"" "I" "can"
## RB VB , NN
## "always" "tell" "," "Wormtail"
## . PRP VBP VBG
## "!" "You" "are" "regretting"
## IN PRP RB VBD
## "that" "you" "ever" "returned"
## TO PRP . PRP
## "to" "me" "." "I"
## NN PRP . PRP
## "revolt" "you" "." "I"
## VBP PRP VB WRB
## "see" "you" "flinch" "when"
## PRP VBP IN PRP
## "you" "look" "at" "me"
## , VB PRP VBP
## "," "feel" "you" "shudder"
## WRB PRP VBP PRP
## "when" "you" "touch" "me"
## VBP . '' ``
## ".." "." "\"" "\""
## UH . PRP$ NN
## "No" "!" "My" "devotion"
## TO PRP$ NNP ,
## "to" "Your" "Lordship" "--\""
## `` PRP$ NN VBZ
## "\"" "Your" "devotion" "is"
## NN JJR IN NN
## "nothing" "more" "than" "cowardice"
## . PRP MD RB
## "." "You" "would" "not"
## VB RB IN PRP
## "be" "here" "if" "you"
## VBD RB RB TO
## "had" "anywhere" "else" "to"
## VB . WRB VBP
## "go" "." "How" "am"
## PRP TO VB IN
## "I" "to" "survive" "without"
## PRP , WRB PRP
## "you" "," "when" "I"
## VBP VBG DT JJ
## "need" "feeding" "every" "few"
## NNS . WP VBZ
## "hours" "?" "Who" "is"
## TO VB NNP .
## "to" "milk" "Nagini" "?"
## '' `` CC PRP
## "\"" "\"" "But" "you"
## VBP RB RB JJR
## "seem" "so" "much" "stronger"
## , PRP$ NNP ,
## "," "My" "Lord" "--\""
## `` JJ , ''
## "\"" "Liar" "," "\""
## VBD DT JJ NN
## "breathed" "the" "second" "voice"
## . '' PRP VBP
## "." "\"" "I" "am"
## DT JJR , CC
## "no" "stronger" "," "and"
## DT JJ NNS RB
## "a" "few" "days" "alone"
## MD VB RB TO
## "would" "be" "enough" "to"
## VB PRP IN DT
## "rob" "me" "of" "the"
## JJ NN PRP VBP
## "little" "health" "I" "have"
## VBN IN PRP$ JJ
## "regained" "under" "your" "clumsy"
## NN . NN .
## "care" "." "Silence" "!"
## '' NNP , WP
## "\"" "Wormtail" "," "who"
## VBD VBN VBG RB
## "had" "been" "sputtering" "incoherently"
## , VBD JJ IN
## "," "fell" "silent" "at"
## RB . IN DT
## "once" "." "For" "a"
## JJ NNS , NNP
## "few" "seconds" "," "Frank"
## MD VB NN CC
## "could" "hear" "nothing" "but"
## DT NN NN .
## "the" "fire" "crackling" "."
## DT DT JJ NN
## "The" "the" "second" "man"
## VBD RB RBR ,
## "spoke" "once" "more" ","
## IN DT NN WDT
## "in" "a" "whisper" "that"
## VBD RB DT NNS
## "was" "almost" "a" "hiss"
## . `` PRP VBP
## "." "\"" "I" "have"
## PRP$ NNS IN VBG
## "my" "reasons" "for" "using"
## DT NN , IN
## "the" "boy" "," "as"
## PRP VBP RB VBN
## "I" "have" "already" "explained"
## TO PRP , CC
## "to" "you" "," "and"
## PRP MD VB DT
## "I" "will" "use" "no"
## JJ . PRP VBP
## "other" "." "I" "have"
## VBN CD NNS .
## "waited" "thirteen" "years" "."
## DT JJ JJR NNS
## "A" "few" "more" "months"
## MD VB DT NN
## "will" "make" "no" "difference"
## . IN IN DT
## "." "As" "for" "the"
## NN VBG DT NN
## "protection" "surrounding" "the" "boy"
## , PRP VBP PRP$
## "," "I" "believe" "my"
## NN MD VB JJ
## "plan" "will" "be" "effective"
## . PDT WDT VBZ
## "." "All" "that" "is"
## VBN VBZ DT JJ
## "needed" "is" "a" "little"
## NN IN PRP ,
## "courage" "from" "you" ","
## NNP : NN PRP
## "Wormtail" "--" "courage" "you"
## MD VB , IN
## "will" "find" "," "unless"
## PRP VBP TO VB
## "you" "wish" "to" "feel"
## DT JJ NN IN
## "the" "full" "extent" "of"
## NNP NNP POS NN
## "Lord" "Voldermort" "'s" "wrath"
## : `` PRP$ NNP
## "--\"" "\"" "My" "Lord"
## , PRP MD VB
## "," "I" "must" "speak"
## . '' VBD NNP
## "!" "\"" "said" "Wormtail"
## , NN IN PRP$
## "," "panic" "in" "his"
## NN RB . ''
## "voice" "now" "." "\""
## DT IN PRP$ NN
## "All" "through" "our" "journey"
## PRP VBP VBN IN
## "I" "have" "gone" "over"
## DT NN IN PRP$
## "the" "plan" "in" "my"
## NN : PRP$ NNP
## "head" "--" "My" "Lord"
## , NNP NNP POS
## "," "Bertha" "Jorkin" "'s"
## NN MD RB VB
## "disappearance" "will" "not" "go"
## JJ IN JJ ,
## "unnoticed" "for" "long" ","
## CC IN PRP VBP
## "and" "if" "we" "proceed"
## , IN PRP NN
## "," "if" "I" "murder"
## : `` IN .
## "--\"" "\"" "If" "?"
## '' VBD DT JJ
## "\"" "whispered" "the" "second"
## NN . '' IN
## "voice" "." "\"" "If"
## . IN PRP VBP
## "?" "If" "you" "follow"
## DT NN , NNP
## "the" "plan" "," "Wormtail"
## , DT NNP NN
## "," "the" "Ministry" "need"
## RB VB IN NN
## "never" "know" "that" "anyone"
## RB VBZ VBN .
## "else" "has" "died" "."
## PRP MD VB PRP
## "You" "will" "do" "it"
## RB CC IN NN
## "quietly" "and" "without" "fuss"
## : PRP RB VBP
## ";" "I" "only" "wish"
## DT NN MD VB
## "that" "i" "could" "do"
## PRP PRP , CC
## "it" "myself" "," "but"
## IN PRP$ JJ NN
## "in" "my" "present" "condition"
## NN , NNP ,
## "...Come" "," "Wormtail" ","
## CD JJR NN CC
## "one" "more" "death" "and"
## PRP$ NN TO NNP
## "our" "path" "to" "Harry"
## NNP VBZ JJ .
## "Potter" "is" "clear" "."
## PRP VBP RB VBG
## "I" "am" "not" "asking"
## PRP TO VB PRP
## "you" "to" "do" "it"
## RB . IN DT
## "alone" "." "By" "that"
## NN , PRP$ NN
## "time" "," "my" "faithful"
## NN MD VB VBN
## "serant" "will" "have" "rejoined"
## PRP : `` PRP
## "us" "--\"" "\"" "I"
## VBP DT JJ NN
## "am" "a" "faithful" "servant"
## , `` VBD JJ
## "," "\"" "said" "Wormtail"
## , DT NN NN
## "," "the" "merest" "trace"
## IN NN IN PRP$
## "of" "sullenness" "in" "his"
## NN . '' NNP
## "voice" "." "\"" "Wormtail"
## , PRP VBP NN
## "," "I" "need" "somebody"
## IN NNS , NN
## "with" "brains" "," "somebody"
## WP$ NN VBZ RB
## "whose" "loyalty" "has" "never"
## VBN , CC PRP
## "wavered" "," "and" "you"
## , RB , VBP
## "," "unfortunately" "," "fulfill"
## DT NN . ''
## "neither" "requirement" "." "\""
## `` PRP VBD PRP
## "\"" "I" "found" "you"
## , '' VBD NNP
## "," "\"" "said" "Wormtail"
## , CC EX VBD
## "," "and" "there" "was"
## RB DT JJ NN
## "definitely" "a" "sulky" "edge"
## TO PRP$ NN RB
## "to" "his" "voice" "now"
## . '' PRP VBD
## "." "\"" "I" "was"
## DT NN WP VBD
## "the" "one" "who" "found"
## PRP . PRP VBD
## "you" "." "I" "brought"
## PRP NNP NNP .
## "you" "Bertha" "Jorkins" "."
## '' `` DT VBZ
## "\"" "\"" "That" "is"
## JJ , '' VBD
## "true" "," "\"" "said"
## DT JJ NN ,
## "the" "second" "man" ","
## VBG VBN . ''
## "sounding" "amused" "." "\""
## DT NN IN NN
## "A" "stroke" "of" "brilliance"
## PRP MD RB VB
## "I" "would" "not" "have"
## VBN JJ IN PRP
## "thought" "possible" "from" "you"
## , UH : RB
## "," "Wormtail" "--" "though"
## , IN NN VB
## "," "if" "truth" "be"
## VBN , PRP VBD
## "told" "," "you" "were"
## RB JJ WRB JJ
## "not" "aware" "how" "useful"
## PRP MD VB WRB
## "she" "would" "be" "when"
## PRP VBD PRP ,
## "you" "caught" "her" ","
## VBD PRP . ''
## "were" "you" "?" "\""
## `` PRP : PRP
## "\"" "I" "--" "I"
## VBD PRP MD VB
## "thought" "she" "might" "be"
## JJ , PRP$ NNP
## "useful" "," "My" "Lord"
## , `` VB ,
## "--\"" "\"" "Liar" ","
## '' VBD DT JJ
## "\"" "said" "the" "second"
## NN RB , DT
## "voice" "again" "," "the"
## JJ NN RBR JJ
## "cruel" "amusement" "more" "pronounced"
## IN RB . ''
## "than" "ever" "." "\""
## RB , PRP VBP
## "However" "," "I" "do"
## RB VB IN PRP$
## "not" "deny" "that" "her"
## NN VBD JJ .
## "information" "was" "invaluable" "."
## IN PRP , PRP
## "Without" "it" "," "I"
## MD RB VB VBN
## "could" "never" "have" "formed"
## PRP$ NN , CC
## "our" "plan" "," "and"
## IN DT , PRP
## "for" "that" "," "you"
## MD VB PRP$ NN
## "will" "have" "your" "reward"
## , NNP . PRP
## "," "Wormtail" "." "I"
## MD VB PRP TO
## "will" "allow" "you" "to"
## VB DT JJ NN
## "perform" "an" "essential" "task"
## IN PRP , CD
## "for" "me" "," "one"
## IN JJ IN PRP$
## "that" "many" "of" "my"
## NNS MD VB PRP$
## "followers" "would" "give" "their"
## JJ NNS TO VB
## "right" "hands" "to" "perform.."
## . '' RB ,
## "." "\"" "\"R-really" ","
## PRP$ NNP . WP
## "My" "Lord" "?" "What"
## : . '' NNP
## "--" "?" "\"" "Wormtail"
## VBD VBN RB .
## "sounded" "terrified" "again" "."
## `` UH , UH
## "\"" "Ah" "," "Wormtail"
## , PRP VBP RB
## "," "you" "do" "n't"
## VB PRP TO VB
## "want" "me" "to" "spoil"
## DT NN . PRP$
## "the" "surprise" "?" "Your"
## NN MD VB IN
## "part" "will" "come" "at"
## DT JJ NN IN
## "the" "very" "end" "...but"
## PRP VBP PRP ,
## "I" "promise" "you" ","
## PRP MD VB DT
## "you" "will" "have" "the"
## NN IN VBG RB
## "honor" "of" "being" "just"
## RB JJ IN NNP
## "as" "useful" "as" "Bertha"
## NNP . '' ``
## "Jorkins" "." "\"" "\""
## PRP . '' NNP
## "You...you.." "." "\"" "Wormtail"
## POS NN RB VBD
## "'s" "voice" "suddenly" "sounded"
## JJ , IN IN
## "hoarse" "," "as" "though"
## PRP$ NN VBD VBN
## "his" "mouth" "had" "gone"
## RB JJ . ''
## "very" "dry" "." "\""
## PRP VBG TO VB
## "You...are" "going" "...to" "kill"
## PRP RB . ''
## "me" "too" "?" "\""
## `` JJ , JJ
## "\"" "Wormtail" "," "Wormtail"
## , '' VBD DT
## "," "\"" "said" "the"
## JJ NN RB ,
## "cold" "voice" "silkily" ","
## RB MD PRP VB
## "\"why" "would" "I" "kill"
## PRP . PRP VBD
## "you" "?" "I" "killed"
## NNP IN PRP VBD
## "Bertha" "because" "I" "had"
## TO . PRP VBD
## "to" "." "She" "was"
## VBN IN NN IN
## "fit" "for" "nothing" "after"
## PRP$ NN , RB
## "my" "questioning" "," "quite"
## JJ . IN DT
## "useless" "." "In" "any"
## NN , JJ NNS
## "case" "," "awkward" "questions"
## MD VB VBN VBN
## "would" "have" "been" "asked"
## IN PRP VBD VBN
## "if" "she" "had" "gone"
## RB TO DT NNP
## "back" "to" "the" "Ministry"
## IN DT NN IN
## "with" "the" "news" "that"
## PRP VBD VBN PRP
## "she" "had" "met" "you"
## IN PRP$ NNS .
## "on" "her" "holidays" "."
## NNS WP VBP VBN
## "Wizards" "who" "are" "supposed"
## TO VB JJ MD
## "to" "be" "dead" "would"
## VB RB RB TO
## "do" "well" "not" "to"
## VB IN NNP IN
## "run" "into" "Ministry" "of"
## NNP NNS IN NN
## "Magic" "witches" "at" "wayside"
## NNS VBP . ''
## "inns" ".." "." "\""
## NNP VBD NN RB
## "Wormtail" "muttered" "something" "so"
## RB IN NNP MD
## "quietly" "that" "Frank" "could"
## RB VB PRP ,
## "not" "hear" "it" ","
## CC PRP VBD DT
## "but" "it" "made" "the"
## JJ NN NN :
## "second" "man" "laugh" "--"
## DT RB JJ NN
## "an" "entirely" "mirthless" "laugh"
## , JJ IN PRP$
## "," "cold" "as" "his"
## NN . '' PRP
## "speech" "." "\"" "We"
## MD VB VBN PRP$
## "could" "have" "modified" "her"
## NN . CC NNP
## "memory" "?" "But" "Memory"
## NNP MD VB VBN
## "Charms" "can" "be" "broken"
## IN DT JJ NN
## "by" "a" "powerful" "wizard"
## , IN PRP VBD
## "," "as" "I" "proved"
## WRB PRP VBD PRP
## "when" "I" "questioned" "her"
## . PRP MD VB
## "." "It" "would" "be"
## DT NN TO PRP$
## "an" "insult" "to" "her"
## NN RB TO VB
## "memory" "not" "to" "use"
## DT NN PRP VBD
## "the" "information" "I" "extracted"
## IN PRP , JJ
## "from" "her" "," "Wormtail"
## . '' IN IN
## "." "\"" "Out" "in"
## DT NN , NNP
## "the" "corridor" "," "Frank"
## RB VBD JJ IN
## "suddenly" "became" "aware" "that"
## DT NN VBG PRP$
## "the" "hand" "gripping" "his"
## NN NN VBD VBG
## "walking" "stick" "was" "slippery"
## IN NN . DT
## "with" "sweat" "." "The"
## NN IN DT JJ
## "man" "with" "the" "cold"
## NN VBD VBN DT
## "voice" "had" "killed" "a"
## NN . PRP VBD
## "woman" "." "He" "was"
## VBG IN PRP IN
## "talking" "about" "it" "without"
## DT NN IN NN
## "any" "kind" "of" "remorse"
## : IN NN .
## "--" "with" "amusement" "."
## PRP VBD JJ :
## "He" "was" "dangerous" "--"
## DT JJ . CC
## "a" "madman" "." "And"
## PRP VBD VBG RBR
## "he" "was" "planning" "more"
## NNS : DT NN
## "murders" "--" "this" "boy"
## , NNP NNP ,
## "," "Harry" "Potter" ","
## WP PRP VBD :
## "whoever" "he" "was" "--"
## VBD IN NN :
## "was" "in" "danger" "--"
## NNP VBD WP PRP
## "Frank" "knew" "what" "he"
## MD VB . RB
## "must" "do" "." "Now"
## , IN RB ,
## "," "if" "ever" ","
## VBD DT NN TO
## "was" "the" "time" "to"
## VB TO DT NN
## "go" "to" "the" "police"
## . PRP MD VB
## "." "He" "would" "creep"
## IN IN DT NN
## "out" "of" "the" "house"
## CC NN RB IN
## "and" "head" "straight" "for"
## DT NN NN IN
## "the" "telephone" "box" "in"
## DT NN IN DT
## "the" "village" "...but" "the"
## JJ NN VBD VBG
## "cold" "voice" "was" "speaking"
## RB , CC NNP
## "again" "," "and" "Frank"
## VBD WRB PRP VBD
## "remained" "where" "he" "was"
## , VBN TO DT
## "," "frozen" "to" "the"
## NN , VBG IN
## "spot" "," "listening" "with"
## DT PRP$ NN .
## "all" "his" "might" "."
## '' CD JJR NN
## "\"" "One" "more" "murder"
## IN JJ NN IN
## "...my" "faithful" "servant" "at"
## NNS NNP NNP VBZ
## "Hogwarts" "...Harry" "Potter" "is"
## RB JJ IN PRP
## "as" "good" "as" "mine"
## , NNP . PRP
## "," "Wormtail" "." "It"
## VBZ VBN . EX
## "is" "decided" "." "There"
## MD VB DT JJR
## "will" "be" "no" "more"
## NN . CC JJ
## "argument" "." "But" "quiet"
## : PRP VBP PRP
## "..." "I" "think" "I"
## VBP NNP CC .
## "hear" "Nagini" ".." "."
## '' CC DT JJ
## "\"" "And" "the" "second"
## NN POS NN VBD
## "man" "'s" "voice" "changed"
## . PRP VBD VBG
## "." "He" "started" "making"
## NNS JJ IN NNP
## "noises" "such" "as" "Frank"
## VBD RB VBN IN
## "had" "never" "heard" "before"
## : PRP VBD VBG
## ";" "he" "was" "hissing"
## CC VBG IN VBG
## "and" "spitting" "without" "drawing"
## NN . NNP VBD
## "breath" "." "Frank" "thought"
## PRP MD VB VBG
## "he" "must" "be" "having"
## DT NN IN NN
## "some" "sort" "of" "fit"
## CC NN . CC
## "or" "seizure" "." "And"
## RB NNP VBD NN
## "then" "Frank" "heard" "movement"
## IN PRP IN DT
## "behind" "him" "in" "the"
## JJ NN . PRP
## "dark" "passageway" "." "He"
## VBD TO VB ,
## "turned" "to" "look" ","
## CC VBD PRP VBN
## "and" "found" "himself" "paralyzed"
## IN JJ . NN
## "with" "fright" "." "Something"
## VBD VBG IN PRP
## "was" "slithering" "toward" "him"
## IN DT JJ NN
## "along" "the" "dark" "corridor"
## NN , CC IN
## "floor" "," "and" "as"
## PRP VBD RBR TO
## "it" "drew" "nearer" "to"
## DT NN IN NN
## "the" "sliver" "of" "firelight"
## , PRP VBD IN
## "," "he" "realized" "with"
## DT NN IN NN
## "a" "thrill" "of" "terror"
## IN PRP VBD DT
## "that" "it" "was" "a"
## JJ NN , IN
## "gigantic" "snake" "," "at"
## JJS CD NNS JJ
## "least" "twelve" "feet" "long"
## . NNP , VBD
## "." "Horrified" "," "transfixed"
## , NNP VBD IN
## "," "Frank" "stared" "as"
## PRP$ JJ NN VBD
## "its" "undulating" "body" "cut"
## DT JJ , VBG
## "a" "wide" "," "curving"
## NN IN DT JJ
## "track" "through" "the" "thick"
## NN IN DT NN
## "dust" "on" "the" "floor"
## , VBG RBR CC
## "," "coming" "closer" "and"
## RBR : WP VBD
## "closer" "--" "What" "was"
## PRP TO VB .
## "he" "to" "do" "?"
## DT JJ NN IN
## "The" "only" "means" "of"
## NN VBD IN DT
## "escape" "was" "into" "the"
## NN WRB DT CD
## "room" "where" "the" "two"
## NNS VBD VBG NN
## "men" "sat" "plotting" "murder"
## , RB IN PRP
## "," "yet" "if" "he"
## VBD WRB PRP VBD
## "stayed" "where" "he" "was"
## DT NN MD RB
## "the" "snake" "would" "surely"
## VB PRP : CC
## "kill" "him" "--" "But"
## IN PRP VBD VBN
## "before" "he" "had" "made"
## PRP$ NN , DT
## "his" "decision" "," "the"
## NN VBD NN IN
## "snake" "was" "level" "with"
## PRP , CC RB
## "him" "," "and" "then"
## , RB , RB
## "," "incredibly" "," "miraculously"
## , PRP VBD VBG
## "," "it" "was" "passing"
## : PRP VBD VBG
## ";" "it" "was" "following"
## DT NN , PRP
## "the" "spitting" "," "hissing"
## VBZ VBN IN DT
## "noises" "made" "by" "the"
## JJ NN IN DT
## "cold" "voice" "beyond" "the"
## NN , CC IN
## "door" "," "and" "in"
## NNS , DT NN
## "seconds" "," "the" "tip"
## IN PRP$ JJ NN
## "of" "its" "diamond-patterned" "tail"
## VBD VBN IN DT
## "had" "vanished" "through" "the"
## NN . EX VBD
## "gap" "." "There" "was"
## NN IN NNP POS
## "sweat" "on" "Frank" "'s"
## NN RB , CC
## "forehead" "now" "," "and"
## DT NN IN DT
## "the" "hand" "on" "the"
## NN NN VBD VBG
## "walking" "stick" "was" "trembling"
## . IN DT NN
## "." "Inside" "the" "room"
## , DT JJ NN
## "," "the" "cold" "voice"
## VBD VBG TO NNS
## "was" "continuing" "to" "hiss"
## , CC NNP VBD
## "," "and" "Frank" "was"
## VBN IN DT JJ
## "visited" "by" "a" "strange"
## NN , DT JJ
## "idea" "," "an" "impossible"
## NN DT NN MD
## "idea" "...This" "man" "could"
## VB TO NNS .
## "talk" "to" "snakes" "."
## NNP VBD RB VB
## "Frank" "did" "n't" "understand"
## WP VBD VBG RP
## "what" "was" "going" "on"
## . PRP VBD RBR
## "." "He" "wanted" "more"
## IN NN TO VB
## "than" "anything" "to" "be"
## RB IN PRP$ NN
## "back" "in" "his" "bed"
## IN PRP$ NN NN
## "with" "his" "hot-water" "bottle"
## . DT NN VBD
## "." "The" "problem" "was"
## IN PRP$ NNS VBD
## "that" "his" "legs" "did"
## RB VB TO VB
## "n't" "seem" "to" "want"
## TO VB . IN
## "to" "move" "." "As"
## PRP VBD RB VBG
## "he" "stood" "there" "shaking"
## CC VBG TO VB
## "and" "trying" "to" "master"
## PRP , DT JJ
## "himself" "," "the" "cold"
## NN VBD RB TO
## "voice" "switched" "abruptly" "to"
## NNP RB . ''
## "English" "again" "." "\""
## NNP VBZ JJ NN
## "Nagini" "has" "interesting" "news"
## , JJ , ''
## "," "Wormtail" "," "\""
## PRP VBD . ``
## "it" "said" "." "\""
## NNP , PRP$ NNP
## "In-indeed" "," "My" "Lord"
## . '' VBD JJ
## "?" "\"" "said" "Wormtail"
## . '' RB ,
## "." "\"" "Indeed" ","
## UH , '' VBD
## "yes" "," "\"" "said"
## DT NN , ``
## "the" "voice" "," "\""
## VBG TO NNP ,
## "According" "to" "Nagini" ","
## EX VBZ DT JJ
## "there" "is" "an" "old"
## NNP VBG RB IN
## "Muggle" "standing" "right" "outside"
## DT NN , VBG
## "this" "room" "," "listening"
## TO DT NN PRP
## "to" "every" "word" "we"
## VBP . '' NNP
## "say" "." "\"" "Frank"
## VBD RB VB DT
## "did" "n't" "have" "a"
## NN TO VB PRP
## "chance" "to" "hide" "himself"
## . EX VBD NNS
## "." "There" "were" "footsteps"
## CC RB DT NN
## "and" "then" "the" "door"
## IN DT NN VBD
## "of" "the" "room" "was"
## VBN RB JJ .
## "flung" "wide" "open" "."
## DT JJ , JJ
## "A" "short" "," "balding"
## NN IN VBG NN
## "man" "with" "graying" "hair"
## , DT JJ NN
## "," "a" "pointed" "nose"
## , CC JJ ,
## "," "and" "small" ","
## JJ NNS VBD IN
## "watery" "eyes" "stood" "before"
## NNP , DT NN
## "Frank" "," "a" "mixture"
## IN NN CC NN
## "of" "fear" "and" "alarm"
## IN PRP$ NN .
## "in" "his" "face" "."
## '' NNP PRP RB
## "\"" "Invite" "him" "inside"
## , NNP . WRB
## "," "Wormtail" "." "Where"
## VBP PRP$ NNS .
## "are" "your" "manners" "?"
## '' DT JJ NN
## "\"" "The" "cold" "voice"
## VBD VBG IN DT
## "was" "coming" "from" "the"
## JJ NN IN DT
## "ancient" "armchair" "before" "the"
## NN , CC NNP
## "fire" "," "but" "Frank"
## MD RB VB DT
## "could" "n't" "see" "the"
## NN . DT NN
## "speaker" "." "the" "snake"
## , IN DT JJ
## "," "on" "the" "other"
## NN , VBD VBN
## "hand" "," "was" "curled"
## RP IN DT VBG
## "up" "on" "the" "rotting"
## NN NN , IN
## "hearth" "rug" "," "like"
## DT JJ NN IN
## "some" "horrible" "travesty" "of"
## DT JJ NN .
## "a" "pet" "dog" "."
## NN VBD NNP IN
## "Wormtail" "beckoned" "Frank" "into"
## DT NN . IN
## "the" "room" "." "Though"
## RB RB VBN ,
## "still" "deeply" "shaken" ","
## NNP VBD DT JJR
## "Frank" "took" "a" "firmer"
## NN IN PRP$ NN
## "grip" "on" "his" "walking"
## NN CC VBD IN
## "stick" "and" "limped" "over"
## DT NN . DT
## "the" "threshold" "." "The"
## NN VBD DT JJ
## "fire" "was" "the" "only"
## NN IN NN IN
## "source" "of" "light" "in"
## DT NN : PRP
## "the" "room" ";" "it"
## VBD RB , JJ
## "cast" "long" "," "spidery"
## NNS IN DT NNS
## "shadows" "upon" "the" "walls"
## . NNP VBD IN
## "." "Frank" "stared" "at"
## DT NN IN DT
## "the" "back" "of" "the"
## NN : DT NN
## "armchair" ";" "the" "man"
## IN PRP VBD TO
## "inside" "it" "seemed" "to"
## VB RB JJR IN
## "be" "even" "smaller" "than"
## PRP$ NN , IN
## "his" "servant" "," "for"
## NNP MD RB RB
## "Frank" "could" "n't" "even"
## VB DT NN IN
## "see" "the" "back" "of"
## PRP$ NN . ''
## "his" "head" "." "\""
## PRP VBD NN ,
## "You" "heard" "everything" ","
## NNP . '' VBD
## "Muggle" "?" "\"" "said"
## DT JJ NN .
## "the" "cold" "voice" "."
## `` WP VBZ IN
## "\"" "What" "'s" "that"
## PRP VBP VBG PRP
## "you" "'re" "calling" "me"
## . '' VBD NNP
## "?" "\"" "said" "Frank"
## RB , IN RB
## "defiantly" "," "for" "now"
## IN PRP VBD IN
## "that" "he" "was" "inside"
## DT NN , RB
## "the" "room" "," "now"
## IN DT NN VBD
## "that" "the" "time" "had"
## VBN IN DT NN
## "come" "for" "some" "sort"
## IN NN , PRP
## "of" "action" "," "he"
## VBD NN : PRP
## "felt" "braver" ";" "it"
## VBD RB VBN RB
## "had" "always" "been" "so"
## IN DT NN .
## "in" "the" "war" "."
## '' PRP VBP VBG
## "\"" "I" "am" "calling"
## PRP DT NNP ,
## "you" "a" "Muggle" ","
## '' VBD DT NN
## "\"" "said" "the" "voice"
## RB . `` PRP
## "coolly" "." "\"" "It"
## VBZ IN PRP VBP
## "means" "that" "you" "are"
## RB DT NN .
## "not" "a" "wizard" "."
## '' `` PRP VBP
## "\"" "\"" "I" "do"
## RB VB WP PRP
## "n't" "know" "what" "you"
## VBP IN NN ,
## "mean" "by" "wizard" ","
## '' VBD NNP ,
## "\"" "said" "Frank" ","
## PRP$ NN VBG NN
## "his" "voice" "growing" "steadier"
## . '' DT PRP
## "." "\"" "All" "I"
## VBP VBZ PRP VBP
## "know" "is" "I" "'ve"
## VBN RB TO VB
## "heard" "enough" "to" "interest"
## DT NN RB ,
## "the" "police" "tonight" ","
## PRP VBP . PRP
## "I" "have" "." "You"
## VBP VBN NN CC
## "'ve" "done" "murder" "and"
## PRP VBP VBG RBR
## "you" "'re" "planning" "more"
## . CC PRP MD
## "!" "And" "I" "'ll"
## VB NNP RB ,
## "tell" "youthis" "too" ","
## '' PRP VBD ,
## "\"" "he" "added" ","
## IN DT JJ NN
## "on" "a" "sudden" "inspiration"
## , RB NN VBZ
## "," "\"my" "wife" "knows"
## PRP VBP RB RB
## "I" "'m" "up" "here"
## , CC IN PRP
## "," "and" "if" "I"
## VBP RB VB RB
## "do" "n't" "come" "back"
## , `` PRP VBP
## "--\"" "\"" "You" "have"
## DT NN , ``
## "no" "wife" "," "\""
## VBD JJ JJ NN
## "said" "te" "cold" "voice"
## , RB RB .
## "," "very" "quietly" "."
## '' NN VBZ PRP
## "\"" "Nobody" "knows" "you"
## VBP RB . PRP
## "are" "here" "." "You"
## VBD NN IN PRP
## "told" "nobody" "that" "you"
## VBD VBG . VBP
## "were" "coming" "." "Do"
## RB VB TO NNP
## "not" "lie" "to" "Lord"
## NNP , NNP ,
## "Voldemort" "," "Muggle" ","
## IN PRP VBZ RB
## "for" "he" "knows" "...he"
## RB VBZ CC .
## "always" "knows" ".." "."
## '' `` VBZ DT
## "\"" "\"" "Is" "that"
## JJ . '' VBD
## "right" "?" "\"" "said"
## NNP RB . ''
## "Frank" "roughly" "." "\""
## NNP , VBZ PRP
## "Lord" "," "is" "it"
## . UH , PRP
## "?" "Well" "," "I"
## VBP RB VB RB
## "do" "n't" "think" "much"
## IN PRP$ NNS ,
## "of" "your" "manners" ","
## PRP$ NNP . NNP
## "My" "Lord" "." "Turn"
## . CC VB PRP
## "'round" "and" "face" "me"
## IN DT NN ,
## "like" "a" "man" ","
## WRB VBP RB PRP
## "why" "do" "n't" "you"
## . '' '' CC
## "?" "\"" "\"" "But"
## PRP VBP RB DT
## "I" "am" "not" "a"
## NN , NNP ,
## "man" "," "Muggle" ","
## '' VBD DT JJ
## "\"" "said" "the" "cold"
## NN , RB JJ
## "voice" "," "barely" "audible"
## RB IN DT NN
## "now" "over" "the" "crackling"
## IN DT NNS .
## "of" "the" "flames" "."
## '' PRP VBP RB
## "\"" "I" "am" "much"
## , RB JJR IN
## "," "much" "more" "than"
## DT NN . RB
## "a" "man" "." "However...why"
## RB . PRP MD
## "not" "?" "I" "will"
## VB PRP VB ,
## "face" "you" "...Wormtail" ","
## VB VB PRP$ NN
## "come" "turn" "my" "chair"
## RB . '' DT
## "around" "." "\"" "The"
## NN VBD DT NN
## "servant" "gave" "a" "whimper"
## . '' PRP VBD
## "." "\"" "You" "heard"
## PRP , UH .
## "me" "," "Wormtail" "."
## '' RB , IN
## "\"" "Slowly" "," "with"
## PRP$ NN VBD RB
## "his" "face" "screwed" "up"
## , IN IN PRP
## "," "as" "though" "he"
## MD RB VB VBN
## "would" "rather" "have" "done"
## NN IN VB PRP$
## "anything" "than" "approach" "his"
## NN CC DT NN
## "master" "and" "the" "hearth"
## NN WRB DT NN
## "rug" "where" "the" "snake"
## VBD , DT JJ
## "lay" "," "the" "small"
## NN VBD RB CC
## "man" "walked" "forward" "and"
## VBD TO VB DT
## "began" "to" "turn" "the"
## NN . DT NN
## "chair" "." "The" "snake"
## VBD PRP$ JJ NN
## "lifted" "its" "ugly" "triangular"
## NN CC VBD RB
## "head" "and" "hissed" "slightly"
## IN DT NNS IN
## "as" "the" "legs" "of"
## DT NN VBD IN
## "the" "chair" "snagged" "on"
## PRP$ NNP CC RB
## "its" "rug." "And" "then"
## DT NN VBD VBG
## "the" "chair" "was" "facing"
## NNP , CC PRP
## "Frank" "," "and" "he"
## VBD WP VBD VBG
## "saw" "what" "was" "sitting"
## IN PRP . PRP$
## "in" "it" "." "His"
## VBG NN VBD TO
## "walking" "stick" "fell" "to"
## DT NN IN DT
## "the" "floor" "with" "a"
## NN . PRP VBD
## "clatter" "." "He" "opened"
## PRP$ NN CC VB
## "his" "mouth" "and" "let"
## RP DT NN .
## "out" "a" "scream" "."
## PRP VBD VBG RB
## "He" "was" "screaming" "so"
## RB IN PRP RB
## "loudly" "that" "he" "never"
## VBD DT NNS DT
## "heard" "the" "words" "the"
## NN IN DT NN
## "thing" "in" "the" "chair"
## VBD IN PRP VBD
## "spoke" "as" "it" "raised"
## DT NN . EX
## "a" "wand" "." "There"
## VBD DT NN IN
## "was" "a" "flash" "of"
## JJ NN , DT
## "green" "light" "," "a"
## VBG NN , CC
## "rushing" "sound" "," "and"
## NNP NNP VBD .
## "Frank" "Bryce" "crumpled" "."
## PRP VBD JJ IN
## "He" "was" "dead" "before"
## PRP VBD DT NN
## "he" "hit" "the" "floor"
## . CD CD NNS
## "." "Two" "hundred" "miles"
## RB , DT NN
## "away" "," "the" "boy"
## VBD NNP NNP VBD
## "called" "Harry" "Potter" "woke"
## IN DT NN .
## "with" "a" "start" "."
print(tag_pos(df_r)[1][1][1:10])
## [[1]]
## DT NNS IN NNP
## "The" "villagers" "of" "Little"
## NNP RB VBD PRP
## "Hangleron" "still" "called" "it"
## `` DT NNP NNP
## "\"" "the" "Riddle" "House"
## , '' RB IN
## "," "\"" "even" "though"
## PRP VBD VBN JJ
## "it" "had" "been" "many"
## NNS IN DT NNP
## "years" "since" "the" "Riddle"
## NN VBD VBN RB
## "family" "had" "lived" "there"
## . PRP VBD IN
## "." "It" "stood" "on"
## DT NN VBG DT
## "a" "hill" "overlooking" "the"
## NN , DT IN
## "village" "," "some" "of"
## PRP$ NNS VBN ,
## "its" "windows" "boarded" ","
## NNS VBG IN PRP$
## "tiles" "missing" "from" "its"
## NN , CC NN
## "roof" "," "and" "ivy"
## VBG JJ IN PRP$
## "spreading" "unchecked" "over" "its"
## NN . RB DT
## "face" "." "Once" "a"
## JJ NN , CC
## "fine-looking" "manor" "," "and"
## RB DT JJS CC
## "easily" "the" "largest" "and"
## JJ NN IN NNS
## "grandest" "building" "for" "miles"
## RB , DT NNP
## "around" "," "the" "Riddle"
## NNP VBD RB JJ
## "House" "was" "now" "damp"
## , NN , CC
## "," "derelict" "," "and"
## JJ . DT NNP
## "unoccupied" "." "The" "Little"
## NNP DT VBD IN
## "Hagletons" "all" "agreed" "that"
## DT JJ NN VBD
## "the" "old" "house" "was"
## `` JJ . ''
## "\"" "creepy" "." "\""
## PDT DT NN RB
## "Half" "a" "century" "ago"
## , NN JJ CC
## "," "something" "strange" "and"
## JJ VBD VBN RB
## "horrible" "had" "happened" "there"
## , NN IN DT
## "," "something" "that" "the"
## JJR NNS IN DT
## "older" "inhabitants" "of" "the"
## NN RB VBD TO
## "village" "still" "liked" "to"
## VB WRB NNS IN
## "discuss" "when" "topics" "for"
## NN VBD JJ .
## "gossip" "were" "scarce" "."
## DT NN VBD VBN
## "The" "story" "had" "been"
## VBN RP RB JJ
## "picked" "over" "so" "many"
## NNS , CC VBD
## "times" "," "and" "had"
## VBN VBN IN RB
## "been" "embroidered" "in" "so"
## JJ NNS , IN
## "many" "places" "," "that"
## NN VBD RB JJ
## "nobody" "was" "quite" "sure"
## WP DT NN VBD
## "what" "the" "truth" "was"
## RB . DT NN
## "anymore" "." "Every" "version"
## IN DT NN ,
## "of" "the" "tale" ","
## RB , VBD IN
## "however" "," "started" "in"
## DT JJ NN :
## "the" "same" "place" ":"
## CD NNS RB ,
## "Fifty" "years" "before" ","
## IN NN IN DT
## "at" "daybreak" "on" "a"
## JJ NN POS NN
## "fine" "summer" "'s" "morning"
## WRB DT NNP NNP
## "when" "the" "Riddle" "House"
## VBD RB VBN RB
## "had" "still" "been" "well"
## VBN CC JJ ,
## "kept" "and" "impressive" ","
## DT NN VBD VBN
## "a" "maid" "had" "entered"
## DT NN NN TO
## "the" "drawing" "room" "to"
## VB DT CD NNS
## "find" "all" "three" "Riddles"
## JJ . DT NN
## "dead" "." "The" "maid"
## VBD VBN VBG IN
## "had" "run" "screaming" "down"
## DT NN IN DT
## "the" "hill" "into" "the"
## NN CC VBD IN
## "village" "and" "roused" "as"
## JJ NNS IN PRP
## "many" "people" "as" "she"
## MD . `` VBG
## "could" "." "\"" "Lying"
## RB IN PRP$ NNS
## "there" "with" "their" "eyes"
## JJ JJ . JJ
## "wide" "open" "!" "Cold"
## IN NN . RB
## "as" "ice" "!" "Still"
## IN PRP$ NN NNS
## "in" "their" "dinner" "things"
## . '' DT NN
## "!" "\"" "The" "police"
## VBD VBN , CC
## "were" "summoned" "," "and"
## DT NN IN NNP
## "the" "whole" "of" "Little"
## NNP VBD VBN IN
## "Hangleton" "had" "seethed" "with"
## JJ NN CC JJ
## "shocked" "curiosity" "and" "ill-disguised"
## NN . NN VBD
## "excitement" "." "Nobody" "wasted"
## PRP$ NN VBG TO
## "their" "breath" "pretending" "to"
## VB RB JJ IN
## "feel" "very" "sad" "about"
## DT NNP , IN
## "the" "Riddles" "," "for"
## PRP VBD VBN RBS
## "they" "had" "been" "most"
## JJ . NNP NNP
## "unpopular" "." "Elderly" "Mr."
## CC NNP NNP VBD
## "and" "Mrs." "Riddle" "had"
## VBN JJ , JJ
## "been" "rich" "," "snobbish"
## , CC JJ ,
## "," "and" "rude" ","
## CC PRP$ JJ NN
## "and" "their" "grown-up" "son"
## , NNP , VBD
## "," "Tom" "," "had"
## VBN , IN NN
## "been" "," "if" "anything"
## , JJR . PDT
## "," "worse" "." "All"
## DT NNS VBD IN
## "the" "villagers" "cared" "about"
## VBD DT NN IN
## "was" "the" "identity" "of"
## PRP$ NN : IN
## "their" "murderer" "--" "for"
## RB , CD RB
## "plainly" "," "three" "apparently"
## JJ NNS VBD RB
## "healthy" "people" "did" "not"
## DT NN NN IN
## "all" "drop" "dead" "of"
## JJ NNS IN DT
## "natural" "causes" "on" "the"
## JJ NN . DT
## "same" "night" "." "The"
## NNP NN , DT
## "Hanged" "Man" "," "the"
## NN NN , VBD
## "village" "pub" "," "did"
## DT NN NN IN
## "a" "roaring" "trade" "that"
## NN : DT JJ
## "night" ";" "the" "whole"
## NN VBD TO VB
## "village" "seemed" "to" "have"
## VBN RP TO VB
## "turned" "out" "to" "discuss"
## DT NNS . PRP
## "the" "murders" "." "They"
## VBD VBN IN VBG
## "were" "rewarded" "for" "leaving"
## PRP$ NNS WRB DT
## "their" "firesides" "when" "the"
## NNP POS NN VBD
## "Riddles" "'" "cook" "arrived"
## RB IN PRP$ NN
## "dramatically" "in" "their" "midst"
## CC VBD TO DT
## "and" "announced" "to" "the"
## RB JJ NN IN
## "suddenly" "silent" "pub" "that"
## DT NN VBD NNP
## "a" "man" "called" "Frank"
## NNP VBD RB VBN
## "Bryce" "had" "just" "been"
## VBN . '' NNP
## "arrested" "." "\"" "Frank"
## . '' VBD JJ
## "!" "\"" "cried" "several"
## NNS . '' RB
## "people" "." "\"" "Never"
## . '' NNP NNP
## "!" "\"" "Frank" "Bryce"
## VBD DT NNP POS
## "was" "the" "Riddles" "'"
## NN . PRP VBD
## "gardener" "." "He" "lived"
## RB IN DT NN
## "alone" "in" "a" "run-down"
## NN IN DT NNS
## "cottage" "on" "the" "grounds"
## IN DT NNP NNP
## "of" "the" "Riddle" "House"
## . NNP VBD VBN
## "." "Frank" "had" "come"
## RB IN DT NN
## "back" "from" "the" "war"
## IN DT JJ JJ
## "with" "a" "very" "stiff"
## NN CC DT JJ
## "leg" "and" "a" "great"
## NN IN NNS CC
## "dislike" "of" "crowds" "and"
## JJ NNS , CC
## "loud" "noises" "," "and"
## VBD VBN VBG IN
## "had" "been" "working" "for"
## DT NNP RB IN
## "the" "Riddles" "ever" "since"
## . EX VBD DT
## "." "There" "was" "a"
## NN TO VB DT
## "rush" "to" "buy" "the"
## NN NNS CC VB
## "cook" "drinks" "and" "hear"
## JJR NNS . ''
## "more" "details" "." "\""
## RB VBD PRP VBD
## "Always" "thought" "he" "was"
## JJ , '' PRP
## "odd" "," "\"" "she"
## VBD DT RB VBG
## "told" "the" "eagerly" "listening"
## NNS , IN PRP$
## "villagers" "," "after" "her"
## JJ NN . ''
## "fourth" "sherry" "." "\""
## RB , IN .
## "Unfriendly" "," "like" "."
## PRP VBP JJ IN
## "I" "'m" "sure" "if"
## PRP VBP VBN PRP
## "I" "'ve" "offered" "him"
## DT NN RB ,
## "a" "cuppa" "once" ","
## PRP VBP VBN PRP
## "I" "'ve" "offered" "it"
## DT CD NNS .
## "a" "hundred" "times" "."
## RB VBD TO VB
## "Never" "wanted" "to" "mix"
## , PRP VBD RB
## "," "he" "did" "n't"
## . '' `` UH
## "." "\"" "\"" "Ah"
## , RB , ''
## "," "now" "," "\""
## VBD DT NN IN
## "said" "a" "woman" "at"
## DT NN , NNP
## "the" "bar" "," "\"he"
## VBD DT JJ NN
## "had" "a" "hard" "war"
## , NNP . PRP
## "," "Frank" "." "He"
## VBZ DT JJ NN
## "likes" "the" "quiet" "life"
## . DT VBZ DT
## "." "That" "'s" "no"
## NN TO DT ``
## "reason" "to" "--\"" "\""
## WP RB VBD DT
## "Who" "else" "had" "a"
## NN TO DT NN
## "key" "to" "the" "back"
## NN , RB .
## "door" "," "then" "?"
## `` VBD DT NN
## "\"" "barked" "the" "cook"
## . `` EX VBZ
## "." "\"" "There" "'s"
## VBN DT JJ NN
## "been" "a" "spare" "key"
## VBG IN DT NN
## "hanging" "in" "the" "gardener"
## POS NN RB RB
## "'s" "cottage" "far" "back"
## IN PRP MD VB
## "as" "I" "can" "remember"
## . NN VBD DT
## "!" "Nobody" "forced" "the"
## NN JJ NN .
## "door" "last" "night" "!"
## DT VBN NNS .
## "No" "broken" "windows" "!"
## DT NNP VBD TO
## "All" "Frank" "had" "to"
## VB VBD VB RP
## "do" "was" "creep" "up"
## TO DT JJ NN
## "to" "the" "big" "house"
## IN PRP VBD DT
## "while" "we" "was" "all"
## VBG CC . ``
## "sleeping" ".." "." "\""
## DT NNS VBD JJ
## "The" "villagers" "exchanged" "dark"
## NNS . '' PRP
## "looks" "." "\"" "I"
## RB VBD IN PRP
## "always" "thought" "that" "he"
## VBD DT JJ NN
## "had" "a" "nasty" "look"
## IN PRP , RB
## "about" "him" "," "right"
## RB , `` VBD
## "enough" "," "\"" "grunted"
## DT NN IN DT
## "a" "man" "at" "the"
## NN . '' NNP
## "bar" "." "\"" "War"
## VBD PRP JJ ,
## "turned" "him" "funny" ","
## IN PRP VBP PRP
## "if" "you" "ask" "me"
## , '' VBD DT
## "," "\"" "said" "the"
## NN . '' VBD
## "landlord" "." "\"" "Told"
## PRP PRP MD RB
## "you" "I" "would" "n't"
## VB TO VB IN
## "like" "to" "get" "on"
## DT JJ NN IN
## "the" "wrong" "side" "of"
## NNP , VBD RB
## "Frank" "," "did" "n't"
## PRP , NNP .
## "I" "," "Dot" "?"
## '' VBD DT JJ
## "\"" "said" "an" "excited"
## NN IN DT NN
## "woman" "in" "the" "corner"
## . '' NNP NN
## "." "\"" "Horrible" "temper"
## , '' VBD NNP
## "," "\"" "said" "Dot"
## , VBG RB .
## "," "nodding" "fervently" "."
## '' PRP VBP ,
## "\"" "I" "remember" ","
## WRB PRP VBD DT
## "when" "he" "was" "a"
## NN . '' IN
## "kid.." "." "\"" "By"
## DT VBG NN ,
## "the" "following" "morning" ","
## RB NN IN NNP
## "hardly" "anyone" "in" "Little"
## NNP VBD IN NNP
## "Hangleton" "doubted" "that" "Frank"
## NNP VBD VBN DT
## "Bryce" "had" "killed" "the"
## NNP . CC IN
## "Riddles" "." "But" "over"
## IN DT JJ NN
## "in" "the" "neighboring" "town"
## IN NNP NNP ,
## "of" "Great" "Hangleton" ","
## IN DT JJ CC
## "in" "the" "dark" "and"
## JJ NN NN ,
## "dingy" "police" "station" ","
## NNP VBD RB VBG
## "Frank" "was" "stubbornly" "repeating"
## , RB CC RB
## "," "again" "and" "again"
## , IN PRP VBD
## "," "that" "he" "was"
## JJ , CC IN
## "innocent" "," "and" "that"
## DT JJ NN PRP
## "the" "only" "person" "he"
## VBD VBN IN DT
## "had" "seen" "near" "the"
## NN IN DT NN
## "house" "on" "the" "day"
## IN DT NNP POS
## "of" "the" "Riddles" "'"
## NNS VBD VBN DT
## "deaths" "had" "been" "a"
## NN NN , DT
## "teenage" "boy" "," "a"
## NN , JJ CC
## "stranger" "," "dark-haired" "and"
## JJ . NN RB
## "pale" "." "Nobody" "else"
## IN DT NN VBD
## "in" "the" "village" "had"
## VBN DT JJ NN
## "seen" "any" "such" "boy"
## , CC DT NN
## "," "and" "the" "police"
## VBD RB JJ NNP
## "were" "quite" "sure" "Frank"
## VBD VBN PRP .
## "had" "invented" "him" "."
## RB , RB WRB
## "Then" "," "just" "when"
## NNS VBD VBG RB
## "things" "were" "looking" "very"
## JJ IN NNP ,
## "serious" "for" "Frank" ","
## DT NN IN DT
## "the" "report" "on" "the"
## NNP POS NNS VBD
## "Riddles" "'" "bodies" "came"
## RB CC VBD NN
## "back" "and" "changed" "everything"
## . DT NN VBD
## "." "The" "police" "had"
## RB VBN DT NN
## "never" "read" "an" "odder"
## NN . DT NN
## "report" "." "A" "team"
## IN NNS VBD VBN
## "of" "doctors" "had" "examined"
## DT NNS CC VBD
## "the" "bodies" "and" "had"
## VBN IN NN IN
## "concluded" "that" "none" "of"
## DT NNP VBD VBN
## "the" "Riddles" "had" "been"
## VBN , VBD ,
## "poisoned" "," "stabbed" ","
## NN , NNS ,
## "shot" "," "strangles" ","
## VBN , CC -LRB-
## "suffocated" "," "or" "("
## RB RB IN PRP
## "as" "far" "as" "they"
## MD VB -RRB- VBN
## "could" "tell" ")" "harmed"
## IN DT . IN
## "at" "all" "." "In"
## NN -LRB- DT NN
## "fact" "(" "the" "report"
## VBD , IN DT
## "continued" "," "in" "a"
## NN IN JJ NN
## "tone" "of" "unmistakable" "bewilderment"
## -RRB- , DT NNP
## ")" "," "the" "Riddles"
## DT VBD TO VB
## "all" "appeared" "to" "be"
## IN JJ NN :
## "in" "perfet" "health" "--"
## RB IN DT NN
## "apart" "from" "the" "fact"
## IN PRP VBD DT
## "that" "they" "were" "all"
## JJ . DT NNS
## "dead" "." "The" "doctors"
## VBD NN -LRB- IN
## "did" "note" "(" "as"
## IN VBN TO VB
## "though" "determined" "to" "find"
## NN JJ IN DT
## "something" "wrong" "with" "the"
## NNS -RRB- IN DT
## "bodies" ")" "that" "each"
## IN DT NNP VBD
## "of" "the" "Riddles" "had"
## DT NN IN NN
## "a" "look" "of" "terror"
## IN PRP$ CC PRP$
## "upon" "his" "or" "her"
## NN : CC IN
## "face" "--" "but" "as"
## DT JJ NN VBD
## "the" "frustrated" "police" "said"
## , WP VBD IN
## "," "whoever" "heard" "of"
## CD NNS VBG VBN
## "three" "people" "being" "frightened"
## TO NN . IN
## "to" "death" "?" "As"
## EX VBD DT NN
## "there" "was" "no" "proof"
## IN DT NNP VBD
## "that" "the" "Riddles" "had"
## VBN VBN IN DT
## "been" "murdered" "at" "all"
## , DT NN VBD
## "," "the" "police" "were"
## VBN TO VB NNP
## "forced" "to" "let" "Frank"
## VB . DT NNPS
## "go" "." "The" "Riddles"
## VBD VBN IN DT
## "were" "buried" "in" "the"
## NNP NNP NN ,
## "Little" "Hangleton" "churchyard" ","
## CC PRP$ NNS VBD
## "and" "their" "graves" "remained"
## NNS IN NN IN
## "objects" "of" "curiosity" "for"
## DT NN . TO
## "a" "while" "." "To"
## NN POS NN ,
## "everyone" "'s" "surprise" ","
## CC IN DT NN
## "and" "amid" "a" "cloud"
## IN NN , NNP
## "of" "suspicion" "," "Frank"
## NNP VBD TO PRP$
## "Bryce" "returned" "to" "his"
## NN IN DT NNS
## "cottage" "on" "the" "grounds"
## IN DT NNP NNP
## "of" "the" "Riddle" "House"
## . '' VBZ RB
## "." "\"" "'S" "far"
## IN PRP VBP VBN
## "as" "I" "'m" "concerned"
## , PRP VBD PRP
## "," "he" "killed" "them"
## , CC PRP VBP
## "," "and" "I" "do"
## RB VB WP DT
## "n't" "care" "what" "the"
## NN VBP , ''
## "police" "say" "," "\""
## VBD NNP IN DT
## "said" "Dot" "in" "the"
## JJ NN . ''
## "Hanged" "Man" "." "\""
## CC IN PRP VBD
## "And" "if" "he" "had"
## DT NN , PRP
## "any" "decency" "," "he"
## MD VB RB ,
## "'d" "leave" "here" ","
## VBG IN WRB PRP
## "knowing" "as" "how" "we"
## VBZ PRP VBD PRP
## "knows" "he" "did" "it"
## . '' CC NNP
## "." "\"" "But" "Frank"
## VBD RB VB .
## "did" "not" "leave" "."
## PRP VBD TO VB
## "He" "stayed" "to" "tend"
## DT NN IN DT
## "the" "garden" "for" "the"
## JJ NN WP VBD
## "next" "family" "who" "lived"
## IN DT NNP NNP
## "in" "the" "Riddle" "House"
## , CC RB DT
## "," "and" "then" "the"
## JJ : IN DT
## "next" "--" "for" "neither"
## NN VBD RB .
## "family" "stayed" "long" "."
## RB PRP VBD RB
## "Perhaps" "it" "was" "partly"
## IN IN NNP IN
## "because" "of" "Frank" "that"
## DT JJ NNS VBD
## "the" "new" "owners" "said"
## EX VBD DT JJ
## "there" "was" "a" "nasty"
## NN IN DT NN
## "feeling" "about" "the" "place"
## , WDT , IN
## "," "which" "," "in"
## DT NN IN NNS
## "the" "absence" "of" "inhabitants"
## , VBD TO VB
## "," "started" "to" "fall"
## IN NN . DT
## "into" "disrepair" "." "The"
## JJ NN WP VBD
## "wealthy" "man" "who" "owned"
## DT NNP NNP DT
## "the" "Riddle" "House" "these"
## NNS CC VBD EX
## "days" "neither" "lived" "there"
## CC VB PRP TO
## "nor" "put" "it" "to"
## DT NN : PRP
## "any" "use" ";" "they"
## VBD IN DT NN
## "said" "in" "the" "village"
## IN PRP VBD PRP
## "that" "he" "kept" "it"
## IN `` NN NNS
## "for" "\"" "tax" "reasons"
## , '' IN NN
## "," "\"" "though" "nobody"
## VBD RB JJ WP
## "was" "very" "clear" "what"
## DT MD VB .
## "these" "might" "be" "."
## DT JJ NN VBD
## "The" "wealthy" "owner" "continued"
## TO VB NNP TO
## "to" "pay" "Frank" "to"
## VB DT NN ,
## "do" "the" "gardening" ","
## RB . NNP VBD
## "however" "." "Frank" "was"
## VBG PRP$ JJ NN
## "nearing" "his" "seventy-seventh" "birthday"
## RB , RB JJ
## "now" "," "very" "deaf"
## , PRP$ JJ NN
## "," "his" "bad" "leg"
## NN IN RB ,
## "stiffer" "than" "ever" ","
## CC MD VB VBN
## "but" "could" "be" "seen"
## VBG IN DT NN
## "pottering" "around" "the" "flower"
## NNS IN JJ NN
## "beds" "in" "fine" "weather"
## , RB IN DT
## "," "even" "though" "the"
## NNS VBD VBG TO
## "weeds" "were" "starting" "to"
## VB RP IN PRP
## "creep" "up" "on" "him"
## , VB IN PRP
## "," "try" "as" "he"
## MD TO VB PRP
## "might" "to" "suppress" "them"
## . NNS VBD RB
## "." "Weeds" "were" "not"
## DT JJ NNS NNP
## "the" "only" "things" "Frank"
## VBD TO VB IN
## "had" "to" "contend" "with"
## DT . NNS IN
## "either" "." "Boys" "from"
## DT NN VBN DT
## "the" "village" "made" "a"
## NN IN VBG NNS
## "habit" "of" "throwing" "stones"
## IN DT NNS IN
## "through" "the" "windows" "of"
## DT NNP NNP .
## "the" "Riddle" "House" "."
## PRP VBD PRP$ NNS
## "They" "rode" "their" "bicycles"
## IN DT NNS NNP
## "over" "the" "lawns" "Frank"
## VBD RB RB TO
## "worked" "so" "hard" "to"
## VB JJ . RB
## "keep" "smooth" "." "Once"
## CC RB , PRP
## "or" "twice" "," "they"
## VBD IN DT JJ
## "broke" "into" "the" "old"
## NN IN DT NN
## "house" "for" "a" "dare"
## . PRP VBD IN
## "." "They" "knew" "that"
## JJ NNP POS NN
## "old" "Frank" "'s" "devotion"
## TO DT NN CC
## "to" "the" "house" "and"
## DT NNS VBD RB
## "the" "grounds" "amounted" "almost"
## TO DT NN ,
## "to" "an" "obsession" ","
## CC PRP VBD PRP
## "and" "it" "amused" "them"
## TO VB PRP VBG
## "to" "see" "him" "limping"
## IN DT NN ,
## "across" "the" "garden" ","
## VBG PRP$ NN CC
## "brandishing" "his" "stick" "and"
## VBG RB IN PRP
## "yelling" "croakily" "at" "them"
## . NNP , IN
## "." "Frank" "," "for"
## PRP$ NN , VBD
## "his" "part" "," "believed"
## DT NNS VBD PRP
## "the" "boys" "tormented" "him"
## IN PRP , IN
## "because" "they" "," "like"
## PRP$ NNS CC NNS
## "their" "parents" "and" "grandparents"
## , IN PRP DT
## "," "though" "him" "a"
## NN . RB WRB
## "murderer" "." "So" "when"
## NNP VBD CD NN
## "Frank" "awoke" "one" "night"
## IN NNP CC VBD
## "in" "August" "and" "saw"
## NN RB JJ RB
## "something" "very" "odd" "up"
## IN DT JJ NN
## "at" "the" "old" "house"
## , PRP RB VBD
## "," "he" "merely" "assumed"
## IN DT NNS VBD
## "that" "the" "boys" "had"
## VBN CD NN RBR
## "gone" "one" "step" "further"
## IN PRP$ NNS TO
## "in" "their" "attempts" "to"
## VB PRP . PRP
## "punish" "him" "." "It"
## VBD NNP POS JJ
## "was" "Frank" "'s" "bad"
## NN WDT VBD PRP
## "leg" "that" "woke" "him"
## : PRP VBD VBG
## ";" "it" "was" "paining"
## PRP RBR IN RB
## "him" "worse" "than" "ever"
## IN PRP$ JJ NN
## "in" "his" "old" "age"
## . PRP VBD RB
## "." "He" "got" "up"
## CC VBD NN IN
## "and" "limped" "downstairs" "into"
## DT NN IN DT
## "the" "kitchen" "with" "the"
## NN IN VBG PRP$
## "idea" "of" "refilling" "his"
## NN NN TO VB
## "hot-water" "bottle" "to" "ease"
## DT NN IN PRP$
## "the" "stiffness" "in" "his"
## NN . VBG IN
## "knee" "." "Standing" "at"
## DT NN , VBG
## "the" "sink" "," "filling"
## DT NN , PRP
## "the" "kettle" "," "he"
## VBD RP IN DT
## "looked" "up" "at" "the"
## NNP NNP CC VBD
## "Riddle" "House" "and" "saw"
## NNS VBG IN PRP$
## "lights" "glimmering" "in" "its"
## JJ NNS . NNP
## "upper" "windows" "." "Frank"
## VBD IN RB WP
## "knew" "at" "once" "what"
## VBD VBG RP .
## "was" "going" "on" "."
## DT NNS VBD VBN
## "The" "boys" "had" "broken"
## IN DT NN RB
## "into" "the" "house" "again"
## , CC VBG IN
## "," "and" "judging" "by"
## DT VBG NN IN
## "the" "flickering" "quality" "of"
## DT NN , PRP
## "the" "light" "," "they"
## VBD VBN DT NN
## "had" "started" "a" "fire"
## . NNP VBD DT
## "." "Frank" "had" "no"
## NN , IN DT
## "telephone" "," "in" "any"
## NN , PRP VBD
## "case" "," "he" "had"
## RB VBN DT NN
## "deeply" "mistrusted" "the" "police"
## RB IN PRP VBD
## "ever" "since" "they" "had"
## VBN PRP IN IN
## "taken" "him" "in" "for"
## VBG IN DT NNP
## "questioning" "about" "the" "Riddles"
## POS NNS . PRP
## "'" "deaths" "." "He"
## VBD RP DT NN
## "put" "down" "the" "kettle"
## IN RB , VBD
## "at" "once" "," "hurried"
## RB RB RB RB
## "back" "upstairs" "as" "fast"
## IN PRP$ JJ NN
## "as" "his" "bad" "leg"
## MD VB , CC
## "would" "allow" "," "and"
## VBD RB RB IN
## "was" "soon" "back" "in"
## PRP$ NN , RB
## "his" "kitchen" "," "fully"
## VBN CC VBG DT
## "dressed" "and" "removing" "a"
## JJ JJ NN IN
## "rusty" "old" "key" "from"
## PRP$ NN IN DT
## "its" "hook" "by" "the"
## NN . PRP VBD
## "door" "." "He" "picked"
## RP PRP$ VBG NN
## "up" "his" "walking" "stick"
## , WDT VBD VBN
## "," "which" "was" "propped"
## IN DT NN ,
## "against" "the" "wall" ","
## CC VBD RP IN
## "and" "set" "off" "into"
## DT NN . DT
## "the" "night" "." "The"
## JJ NN IN DT
## "front" "door" "of" "the"
## NNP NNP VBD DT
## "Riddle" "House" "bore" "no"
## NN IN VBG VBN
## "sign" "of" "being" "forced"
## , CC VBD DT
## "," "nor" "did" "any"
## IN DT NNS .
## "of" "the" "windows" "."
## NNP VBD IN TO
## "Frank" "limped" "around" "to"
## DT NN IN DT
## "the" "back" "of" "the"
## NN IN PRP VBD
## "house" "until" "he" "reached"
## DT NN RB RB
## "a" "door" "almost" "completely"
## VBN IN NN ,
## "hidden" "by" "ivy" ","
## VBD RP DT JJ
## "took" "out" "the" "old"
## NN , VBD PRP
## "key" "," "put" "it"
## IN DT NN ,
## "into" "the" "lock" ","
## CC VBD DT NN
## "and" "opened" "the" "door"
## RB . PRP VBD
## "noiselessly" "." "He" "let"
## PRP IN DT JJ
## "himself" "into" "the" "cavernous"
## NN . NNP VBD
## "kitchen" "." "Frank" "had"
## RB VBN PRP IN
## "not" "entered" "it" "for"
## JJ NNS : RB
## "many" "years" ";" "nevertheless"
## , IN PRP VBD
## "," "although" "it" "was"
## RB JJ , PRP
## "very" "dark" "," "he"
## VBD WRB DT NN
## "remembered" "where" "the" "door"
## IN DT NN VBD
## "into" "the" "hall" "was"
## , CC PRP VBD
## "," "and" "he" "groped"
## PRP$ NN IN PRP
## "his" "way" "towards" "it"
## , PRP$ NNS JJ
## "," "his" "nostrils" "full"
## IN DT NN IN
## "of" "the" "smell" "of"
## NN , NNS VBN
## "decay" "," "ears" "pricked"
## IN DT NN IN
## "for" "any" "sound" "of"
## NNS CC NNS IN
## "footsteps" "or" "voices" "from"
## NN . PRP VBD
## "overhead" "." "He" "reached"
## DT NN , WDT
## "the" "hall" "," "which"
## VBD DT JJ JJR
## "was" "a" "little" "lighter"
## NN TO DT JJ
## "owing" "to" "the" "large"
## JJ NNS IN DT
## "mullioned" "windows" "on" "either"
## NN IN DT JJ
## "side" "of" "the" "front"
## NN , CC VBD
## "door" "," "and" "started"
## TO VB DT NNS
## "to" "climb" "the" "stairs"
## , VBG DT NN
## "," "blessing" "the" "dust"
## WDT VBD JJ IN
## "that" "lay" "thick" "upon"
## DT NN , IN
## "the" "stone" "," "because"
## PRP VBD DT NN
## "it" "muffled" "the" "sound"
## IN PRP$ NNS CC
## "of" "his" "feet" "and"
## VBP . IN DT
## "stick" "." "On" "the"
## NN , NNP VBD
## "landing" "," "Frank" "turned"
## RB , CC VBD
## "right" "," "and" "saw"
## IN RB WRB DT
## "at" "once" "where" "the"
## NNS VBD : IN
## "intruders" "were" ":" "At"
## DT DT NN IN
## "the" "every" "end" "of"
## DT NN DT NN
## "the" "passage" "a" "door"
## VBD RB , CC
## "stood" "ajar" "," "and"
## DT VBG NN NN
## "a" "flickering" "light" "shone"
## IN DT NN ,
## "through" "the" "gap" ","
## VBG DT JJ NN
## "casting" "a" "long" "sliver"
## IN NN IN DT
## "of" "gold" "across" "the"
## JJ NN . NNP
## "black" "floor" "." "Frank"
## VBD RBR CC RBR
## "edged" "closer" "and" "closer"
## , PRP VBD JJ
## "," "he" "was" "able"
## TO VB DT JJ
## "to" "see" "a" "narrow"
## NN IN DT NN
## "slice" "of" "the" "room"
## IN . DT NN
## "beyond" "." "The" "fire"
## , PRP RB VBD
## "," "he" "now" "saw"
## , VBD VBN VBN
## "," "had" "been" "lit"
## IN DT JJ .
## "in" "the" "grate" "."
## DT VBD PRP .
## "This" "surprised" "him" "."
## RB PRP VBD VBG
## "Then" "he" "stopped" "moving"
## CC VBD RB ,
## "and" "listened" "intently" ","
## IN DT NN POS
## "for" "a" "man" "'s"
## NN VBD IN DT
## "voice" "spoke" "within" "the"
## NN : PRP VBD
## "room" ";" "it" "sounded"
## JJ CC JJ .
## "timid" "and" "fearful" "."
## `` EX VBZ DT
## "\"" "There" "is" "a"
## RB RBR IN DT
## "little" "more" "in" "the"
## NN , PRP$ NNP
## "bottle" "," "My" "Lord"
## , IN PRP VBP
## "," "if" "you" "are"
## RB JJ . ''
## "still" "hungry" "." "\""
## `` RB , ''
## "\"" "Later" "," "\""
## VBD DT JJ NN
## "said" "a" "second" "voice"
## . DT RB VBN
## "." "This" "too" "belonged"
## TO DT NN :
## "to" "a" "man" "--"
## CC PRP VBD RB
## "but" "it" "was" "strangely"
## JJ , CC JJ
## "high-pitched" "," "and" "cold"
## IN DT JJ NN
## "as" "a" "sudden" "blast"
## IN JJ NN .
## "of" "icy" "wind" "."
## NN IN DT NN
## "Something" "about" "that" "voice"
## VBD DT JJ NNS
## "made" "the" "sparse" "hairs"
## IN DT NN IN
## "on" "the" "back" "of"
## NNP POS NN VB
## "Frank" "'s" "neck" "stand"
## RP . '' VB
## "up" "." "\"" "Move"
## PRP RBR TO DT
## "me" "closer" "to" "the"
## NN , JJ .
## "fire" "," "Wormtail" "."
## '' NNP VBD PRP$
## "\"" "Frank" "turned" "his"
## JJ NN IN DT
## "right" "ear" "toward" "the"
## NN , DT JJR
## "door" "," "the" "better"
## TO VB . EX
## "to" "hear" "." "There"
## VBD DT NN IN
## "came" "the" "clink" "of"
## DT NN VBG VBN
## "a" "bottle" "being" "put"
## RP IN DT JJ
## "down" "upon" "some" "hard"
## NN , CC RB
## "surface" "," "and" "then"
## DT JJ NN NN
## "the" "dull" "scraping" "noise"
## IN DT JJ NN
## "of" "a" "heavy" "chair"
## VBG VBN IN DT
## "being" "dragged" "across" "the"
## NN . NNP VBD
## "floor" "." "Frank" "caught"
## DT NN IN DT
## "a" "glimpse" "of" "a"
## JJ NN , PRP$
## "small" "man" "," "his"
## NN TO DT NN
## "back" "to" "the" "door"
## , VBG DT NN
## "," "pushing" "the" "chair"
## IN NN . PRP
## "into" "place" "." "He"
## VBD VBG DT JJ
## "was" "wearing" "a" "long"
## JJ NN , CC
## "black" "cloak" "," "and"
## EX VBD DT JJ
## "there" "was" "a" "bald"
## NN IN DT NN
## "patch" "at" "the" "back"
## IN PRP$ NN .
## "of" "his" "head" "."
## RB PRP VBD IN
## "Then" "he" "went" "out"
## IN NN RB .
## "of" "sight" "again" "."
## `` WRB VBZ NNP
## "\"" "Where" "is" "Nagini"
## . '' VBD DT
## "?" "\"" "said" "the"
## JJ NN . ''
## "cold" "voice" "." "\""
## PRP : PRP VBP
## "I" "--" "I" "do"
## RB VB , PRP$
## "n't" "know" "," "My"
## NNP , '' VBD
## "Lord" "," "\"" "said"
## DT JJ NN RB
## "the" "first" "voice" "nervously"
## . '' PRP VBD
## "." "\"" "She" "set"
## RP TO VB DT
## "out" "to" "explore" "the"
## NN , PRP VBP
## "house" "," "I" "think"
## CC . `` ``
## ".." "." "\"" "\""
## PRP MD VB PRP
## "You" "will" "milk" "her"
## IN PRP VBP ,
## "before" "we" "retire" ","
## JJ , '' VBD
## "Wormtail" "," "\"" "said"
## DT JJ NN .
## "the" "second" "voice" "."
## '' PRP MD VB
## "\"" "I" "will" "need"
## VBG IN DT NN
## "feeding" "in" "the" "night"
## . DT NN VBZ
## "." "The" "journey" "has"
## VBN PRP RB .
## "tired" "me" "greatly" "."
## '' NNP VBD ,
## "\"" "Brow" "furrowed" ","
## NNP VBN PRP$ JJ
## "Frank" "inclined" "his" "good"
## NN RB RBR TO
## "ear" "still" "closer" "to"
## DT NN , VBG
## "the" "door" "," "listening"
## RB RB . EX
## "very" "hard" "." "There"
## VBD DT NN ,
## "was" "a" "pause" ","
## CC RB DT NN
## "and" "then" "the" "man"
## VBN NNP VBD RB
## "called" "Wormtail" "spoke" "again"
## . '' PRP$ NNP
## "." "\"" "My" "Lord"
## , MD PRP VB
## "," "may" "I" "ask"
## WRB RB PRP VBP
## "how" "long" "we" "are"
## VBG TO VB RB
## "going" "to" "stay" "here"
## . '' '' DT
## "?" "\"" "\"" "A"
## NN , `` VBD
## "week" "," "\"" "said"
## DT JJ NN .
## "the" "cold" "voice" "."
## '' RB RB .
## "\"" "Perhapse" "longer" "."
## DT NN VBZ RB
## "The" "place" "is" "moderately"
## JJ , CC DT
## "comfortable" "," "and" "the"
## NN MD VB RB
## "plan" "cannot" "proceed" "yet"
## . PRP MD VB
## "." "It" "would" "be"
## JJ TO VB IN
## "foolish" "to" "act" "before"
## DT NNP NNP NNP
## "the" "Quidditch" "World" "Cup"
## VBZ RB . ''
## "is" "over" "." "\""
## NNP VBD DT VBD
## "Frank" "inserted" "a" "gnarled"
## NN IN PRP$ NN
## "finger" "into" "his" "ear"
## CC VBD PRP .
## "and" "rotated" "it" "."
## NNP , DT NN
## "Owing" "," "no" "doubt"
## , TO DT NN
## "," "to" "a" "buildup"
## IN NN , PRP
## "of" "earwax" "," "he"
## VBD VBN DT NN
## "had" "heard" "the" "word"
## `` UH , ''
## "\"" "Quidditch" "," "\""
## WDT VBD RB DT
## "which" "was" "not" "a"
## NN IN DT .
## "word" "at" "all" "."
## '' DT : DT
## "\"" "The" "--" "the"
## NNP NNP NNP ,
## "Quidditch" "World" "Cup" ","
## PRP$ NNP . ''
## "My" "Lord" "?" "\""
## VBD JJ . -LRB-
## "said" "Wormtail" "." "("
## NNP VBD PRP$ NN
## "Frank" "dug" "his" "finger"
## RB RBR RB IN
## "still" "more" "vigorously" "into"
## PRP$ NN . -RRB-
## "his" "ear" "." ")"
## `` VB PRP ,
## "\"" "Forgive" "me" ","
## CC : PRP VBP
## "but" "--" "I" "do"
## RB VB : WRB
## "not" "understand" "--" "why"
## MD PRP VB IN
## "should" "we" "wait" "until"
## DT NNP NNP VBZ
## "the" "World" "Cup" "is"
## IN . '' ``
## "over" "?" "\"" "\""
## IN , NN ,
## "Because" "," "fool" ","
## IN DT RB NN
## "at" "this" "very" "moment"
## NNS VBP VBG IN
## "wizards" "are" "pouring" "into"
## DT NN IN DT
## "the" "country" "from" "all"
## IN DT NN ,
## "over" "the" "world" ","
## CC DT NN IN
## "and" "every" "meddler" "from"
## DT NNP IN NNP
## "the" "Ministry" "of" "Magic"
## MD VB IN NN
## "will" "be" "on" "duty"
## , IN DT NN
## "," "on" "the" "watch"
## IN NNS IN JJ
## "for" "signs" "of" "ususual"
## NN , NN CC
## "activity" "," "checking" "and"
## NN NNS . PRP
## "double-checking" "identities" "." "They"
## MD VB VBN IN
## "will" "be" "obsessed" "with"
## NN , IN DT
## "security" "," "lest" "the"
## NNS VBP NN .
## "Muggles" "notice" "anything" "."
## IN PRP VBP .
## "So" "we" "wait" "."
## '' NNP VBD VBG
## "\"" "Frank" "stopped" "trying"
## TO VB RP PRP$
## "to" "clear" "out" "his"
## NN . PRP VBD
## "ear" "." "He" "had"
## RB VBN DT NNS
## "distinctly" "heard" "the" "words"
## `` NNP IN NNP
## "\"" "Ministry" "of" "Magic"
## , `` NNS ,
## "," "\"" "\"wizards" ","
## '' CC `` NNS
## "\"" "and" "\"" "Muggles"
## . '' RB ,
## "." "\"" "Plainly" ","
## DT IN DT NNS
## "each" "of" "these" "expressions"
## VBD NN JJ ,
## "meant" "something" "secret" ","
## CC NNP MD VB
## "and" "Frank" "could" "think"
## IN RB CD NNS
## "of" "only" "two" "sorts"
## IN NNS WP MD
## "of" "people" "who" "would"
## VB IN NN :
## "speak" "in" "code" ":"
## NNS CC NNS .
## "spies" "and" "criminals" "."
## NNP VBD PRP$ NN
## "Frank" "tightened" "his" "hold"
## IN PRP$ NN NN
## "on" "his" "walking" "stick"
## RB RBR , CC
## "once" "more" "," "and"
## VBD RBR RB RB
## "listened" "more" "closely" "still"
## . '' PRP$ NN
## "." "\"" "Your" "Lordship"
## VBZ RB VBN ,
## "is" "still" "determined" ","
## RB . '' NNP
## "then" "?" "\"" "Wormtail"
## VBD RB . ''
## "said" "quietly" "." "\""
## RB PRP VBP VBN
## "Certainly" "I" "am" "determined"
## , NNP . ``
## "," "Wormtail" "." "\""
## EX VBD DT NN
## "There" "was" "a" "note"
## IN NN IN DT
## "of" "menace" "in" "the"
## JJ NN RB .
## "cold" "voice" "now" "."
## DT JJ NN VBD
## "A" "slight" "pause" "followed"
## : CC DT JJ
## "--" "and" "the" "Wormtail"
## NN , DT NNS
## "spoke" "," "the" "words"
## VBG IN PRP IN
## "tumbling" "from" "him" "in"
## DT NN , IN
## "a" "rush" "," "as"
## IN PRP VBD VBG
## "though" "he" "was" "forcing"
## PRP TO VB DT
## "himself" "to" "say" "this"
## IN PRP VBD PRP$
## "before" "he" "lost" "his"
## NN . '' PRP
## "nerve" "." "\"" "It"
## MD VB VBN IN
## "could" "be" "done" "without"
## NNP NNP , PRP$
## "Harry" "Potter" "," "My"
## NNP . '' DT
## "Lord" "." "\"" "Another"
## NN , RBR VBN
## "pause" "," "more" "protracted"
## , CC RB :
## "," "and" "then" "--"
## `` IN NNP NNP
## "\"" "Without" "Harry" "Potter"
## . '' VBD DT
## "?" "\"" "breathed" "the"
## JJ NN RB .
## "second" "voice" "softly" "."
## `` PRP VBP VBP
## "\"" "I" "see" ".."
## . '' `` PRP$
## "." "\"" "\"" "My"
## NNP , PRP VBP
## "Lord" "," "I" "do"
## RB VB DT IN
## "not" "say" "this" "out"
## IN NN IN DT
## "of" "concern" "for" "the"
## NN . '' VBD
## "boy" "!" "\"" "said"
## NNP , PRP$ NN
## "Wormtail" "," "his" "voice"
## VBG RB . ''
## "rising" "squeakily" "." "\""
## DT NN VBZ NN
## "The" "boy" "is" "nothing"
## TO PRP , NN
## "to" "me" "," "nothing"
## IN DT . PRP
## "at" "all" "!" "It"
## VBZ RB IN IN
## "is" "merely" "that" "if"
## PRP VBD TO VB
## "we" "were" "to" "use"
## DT NN CC NN
## "another" "witch" "or" "wizard"
## : DT NN :
## "--" "any" "wizard" "--"
## DT NN MD VB
## "the" "thing" "could" "be"
## VBN RB RB RBR
## "done" "so" "much" "more"
## RB . IN PRP
## "quickly" "!" "If" "you"
## VBD PRP TO VB
## "allowed" "me" "to" "leave"
## PRP IN DT JJ
## "you" "for" "a" "short"
## NN : PRP VBP
## "while" "--" "you" "know"
## IN PRP MD VB
## "that" "I" "can" "disguise"
## PRP RBS RB :
## "myself" "most" "effectively" "--"
## PRP MD VB RB
## "I" "could" "be" "back"
## RB IN RB JJ
## "here" "in" "as" "little"
## IN CD NNS IN
## "as" "two" "days" "with"
## DT JJ NN JJ
## "a" "suitable" "person" "--\""
## `` PRP MD VB
## "\"" "I" "could" "use"
## DT NN , ''
## "another" "wizard" "," "\""
## VBD DT JJ NN
## "said" "the" "cold" "voice"
## RB , `` DT
## "softly" "," "\"" "that"
## VBZ JJ CC .
## "is" "true" ".." "."
## '' `` PRP$ NNP
## "\"" "\"" "My" "Lord"
## , PRP VBZ NN
## "," "it" "makes" "sense"
## , '' VBD NNP
## "," "\"" "said" "Wormtail"
## , VBG RB VBN
## "," "sounding" "thoroughly" "relieved"
## RB . '' VBG
## "now" "." "\"" "Laying"
## NNS IN NNP NNP
## "hands" "on" "Harry" "Potter"
## MD VB RB JJ
## "would" "be" "so" "difficult"
## , PRP VBZ RB
## "," "he" "is" "so"
## RB VBN NN ''
## "well" "protected" "--\"" "\""
## CC RB PRP VBP
## "And" "so" "you" "volunteer"
## TO VB CC VB
## "to" "go" "and" "fetch"
## PRP DT NN .
## "me" "a" "substitute" "?"
## PRP VBP RB DT
## "I" "wonder" "...perhaps" "the"
## NN IN VBG PRP
## "task" "of" "nursing" "me"
## VBZ VBN JJ IN
## "has" "become" "wearisome" "for"
## PRP , NNP .
## "you" "," "Wormtail" "?"
## MD DT NN IN
## "Could" "this" "suggestion" "of"
## VBG DT NN VB
## "abandoning" "the" "plan" "be"
## NN JJR IN DT
## "nothing" "more" "than" "an"
## NN TO VB PRP
## "attempt" "to" "desert" "me"
## . '' `` PRP$
## "?" "\"" "\"" "My"
## NNP . PRP :
## "Lord" "!" "I" "--"
## PRP VBP DT NN
## "I" "have" "no" "wish"
## TO VB PRP ,
## "to" "leave" "you" ","
## NN IN DT JJ
## "none" "at" "all" "--\""
## `` VB RB VB
## "\"" "Do" "not" "lie"
## TO PRP . ''
## "to" "me" "!" "\""
## VBD DT JJ NN
## "hissed" "the" "second" "voice"
## . '' PRP MD
## "." "\"" "I" "can"
## RB VB , NN
## "always" "tell" "," "Wormtail"
## . PRP VBP VBG
## "!" "You" "are" "regretting"
## IN PRP RB VBD
## "that" "you" "ever" "returned"
## TO PRP . PRP
## "to" "me" "." "I"
## NN PRP . PRP
## "revolt" "you" "." "I"
## VBP PRP VB WRB
## "see" "you" "flinch" "when"
## PRP VBP IN PRP
## "you" "look" "at" "me"
## , VB PRP VBP
## "," "feel" "you" "shudder"
## WRB PRP VBP PRP
## "when" "you" "touch" "me"
## VBP . '' ``
## ".." "." "\"" "\""
## UH . PRP$ NN
## "No" "!" "My" "devotion"
## TO PRP$ NNP ,
## "to" "Your" "Lordship" "--\""
## `` PRP$ NN VBZ
## "\"" "Your" "devotion" "is"
## NN JJR IN NN
## "nothing" "more" "than" "cowardice"
## . PRP MD RB
## "." "You" "would" "not"
## VB RB IN PRP
## "be" "here" "if" "you"
## VBD RB RB TO
## "had" "anywhere" "else" "to"
## VB . WRB VBP
## "go" "." "How" "am"
## PRP TO VB IN
## "I" "to" "survive" "without"
## PRP , WRB PRP
## "you" "," "when" "I"
## VBP VBG DT JJ
## "need" "feeding" "every" "few"
## NNS . WP VBZ
## "hours" "?" "Who" "is"
## TO VB NNP .
## "to" "milk" "Nagini" "?"
## '' `` CC PRP
## "\"" "\"" "But" "you"
## VBP RB RB JJR
## "seem" "so" "much" "stronger"
## , PRP$ NNP ,
## "," "My" "Lord" "--\""
## `` JJ , ''
## "\"" "Liar" "," "\""
## VBD DT JJ NN
## "breathed" "the" "second" "voice"
## . '' PRP VBP
## "." "\"" "I" "am"
## DT JJR , CC
## "no" "stronger" "," "and"
## DT JJ NNS RB
## "a" "few" "days" "alone"
## MD VB RB TO
## "would" "be" "enough" "to"
## VB PRP IN DT
## "rob" "me" "of" "the"
## JJ NN PRP VBP
## "little" "health" "I" "have"
## VBN IN PRP$ JJ
## "regained" "under" "your" "clumsy"
## NN . NN .
## "care" "." "Silence" "!"
## '' NNP , WP
## "\"" "Wormtail" "," "who"
## VBD VBN VBG RB
## "had" "been" "sputtering" "incoherently"
## , VBD JJ IN
## "," "fell" "silent" "at"
## RB . IN DT
## "once" "." "For" "a"
## JJ NNS , NNP
## "few" "seconds" "," "Frank"
## MD VB NN CC
## "could" "hear" "nothing" "but"
## DT NN NN .
## "the" "fire" "crackling" "."
## DT DT JJ NN
## "The" "the" "second" "man"
## VBD RB RBR ,
## "spoke" "once" "more" ","
## IN DT NN WDT
## "in" "a" "whisper" "that"
## VBD RB DT NNS
## "was" "almost" "a" "hiss"
## . `` PRP VBP
## "." "\"" "I" "have"
## PRP$ NNS IN VBG
## "my" "reasons" "for" "using"
## DT NN , IN
## "the" "boy" "," "as"
## PRP VBP RB VBN
## "I" "have" "already" "explained"
## TO PRP , CC
## "to" "you" "," "and"
## PRP MD VB DT
## "I" "will" "use" "no"
## JJ . PRP VBP
## "other" "." "I" "have"
## VBN CD NNS .
## "waited" "thirteen" "years" "."
## DT JJ JJR NNS
## "A" "few" "more" "months"
## MD VB DT NN
## "will" "make" "no" "difference"
## . IN IN DT
## "." "As" "for" "the"
## NN VBG DT NN
## "protection" "surrounding" "the" "boy"
## , PRP VBP PRP$
## "," "I" "believe" "my"
## NN MD VB JJ
## "plan" "will" "be" "effective"
## . PDT WDT VBZ
## "." "All" "that" "is"
## VBN VBZ DT JJ
## "needed" "is" "a" "little"
## NN IN PRP ,
## "courage" "from" "you" ","
## NNP : NN PRP
## "Wormtail" "--" "courage" "you"
## MD VB , IN
## "will" "find" "," "unless"
## PRP VBP TO VB
## "you" "wish" "to" "feel"
## DT JJ NN IN
## "the" "full" "extent" "of"
## NNP NNP POS NN
## "Lord" "Voldermort" "'s" "wrath"
## : `` PRP$ NNP
## "--\"" "\"" "My" "Lord"
## , PRP MD VB
## "," "I" "must" "speak"
## . '' VBD NNP
## "!" "\"" "said" "Wormtail"
## , NN IN PRP$
## "," "panic" "in" "his"
## NN RB . ''
## "voice" "now" "." "\""
## DT IN PRP$ NN
## "All" "through" "our" "journey"
## PRP VBP VBN IN
## "I" "have" "gone" "over"
## DT NN IN PRP$
## "the" "plan" "in" "my"
## NN : PRP$ NNP
## "head" "--" "My" "Lord"
## , NNP NNP POS
## "," "Bertha" "Jorkin" "'s"
## NN MD RB VB
## "disappearance" "will" "not" "go"
## JJ IN JJ ,
## "unnoticed" "for" "long" ","
## CC IN PRP VBP
## "and" "if" "we" "proceed"
## , IN PRP NN
## "," "if" "I" "murder"
## : `` IN .
## "--\"" "\"" "If" "?"
## '' VBD DT JJ
## "\"" "whispered" "the" "second"
## NN . '' IN
## "voice" "." "\"" "If"
## . IN PRP VBP
## "?" "If" "you" "follow"
## DT NN , NNP
## "the" "plan" "," "Wormtail"
## , DT NNP NN
## "," "the" "Ministry" "need"
## RB VB IN NN
## "never" "know" "that" "anyone"
## RB VBZ VBN .
## "else" "has" "died" "."
## PRP MD VB PRP
## "You" "will" "do" "it"
## RB CC IN NN
## "quietly" "and" "without" "fuss"
## : PRP RB VBP
## ";" "I" "only" "wish"
## DT NN MD VB
## "that" "i" "could" "do"
## PRP PRP , CC
## "it" "myself" "," "but"
## IN PRP$ JJ NN
## "in" "my" "present" "condition"
## NN , NNP ,
## "...Come" "," "Wormtail" ","
## CD JJR NN CC
## "one" "more" "death" "and"
## PRP$ NN TO NNP
## "our" "path" "to" "Harry"
## NNP VBZ JJ .
## "Potter" "is" "clear" "."
## PRP VBP RB VBG
## "I" "am" "not" "asking"
## PRP TO VB PRP
## "you" "to" "do" "it"
## RB . IN DT
## "alone" "." "By" "that"
## NN , PRP$ NN
## "time" "," "my" "faithful"
## NN MD VB VBN
## "serant" "will" "have" "rejoined"
## PRP : `` PRP
## "us" "--\"" "\"" "I"
## VBP DT JJ NN
## "am" "a" "faithful" "servant"
## , `` VBD JJ
## "," "\"" "said" "Wormtail"
## , DT NN NN
## "," "the" "merest" "trace"
## IN NN IN PRP$
## "of" "sullenness" "in" "his"
## NN . '' NNP
## "voice" "." "\"" "Wormtail"
## , PRP VBP NN
## "," "I" "need" "somebody"
## IN NNS , NN
## "with" "brains" "," "somebody"
## WP$ NN VBZ RB
## "whose" "loyalty" "has" "never"
## VBN , CC PRP
## "wavered" "," "and" "you"
## , RB , VBP
## "," "unfortunately" "," "fulfill"
## DT NN . ''
## "neither" "requirement" "." "\""
## `` PRP VBD PRP
## "\"" "I" "found" "you"
## , '' VBD NNP
## "," "\"" "said" "Wormtail"
## , CC EX VBD
## "," "and" "there" "was"
## RB DT JJ NN
## "definitely" "a" "sulky" "edge"
## TO PRP$ NN RB
## "to" "his" "voice" "now"
## . '' PRP VBD
## "." "\"" "I" "was"
## DT NN WP VBD
## "the" "one" "who" "found"
## PRP . PRP VBD
## "you" "." "I" "brought"
## PRP NNP NNP .
## "you" "Bertha" "Jorkins" "."
## '' `` DT VBZ
## "\"" "\"" "That" "is"
## JJ , '' VBD
## "true" "," "\"" "said"
## DT JJ NN ,
## "the" "second" "man" ","
## VBG VBN . ''
## "sounding" "amused" "." "\""
## DT NN IN NN
## "A" "stroke" "of" "brilliance"
## PRP MD RB VB
## "I" "would" "not" "have"
## VBN JJ IN PRP
## "thought" "possible" "from" "you"
## , UH : RB
## "," "Wormtail" "--" "though"
## , IN NN VB
## "," "if" "truth" "be"
## VBN , PRP VBD
## "told" "," "you" "were"
## RB JJ WRB JJ
## "not" "aware" "how" "useful"
## PRP MD VB WRB
## "she" "would" "be" "when"
## PRP VBD PRP ,
## "you" "caught" "her" ","
## VBD PRP . ''
## "were" "you" "?" "\""
## `` PRP : PRP
## "\"" "I" "--" "I"
## VBD PRP MD VB
## "thought" "she" "might" "be"
## JJ , PRP$ NNP
## "useful" "," "My" "Lord"
## , `` VB ,
## "--\"" "\"" "Liar" ","
## '' VBD DT JJ
## "\"" "said" "the" "second"
## NN RB , DT
## "voice" "again" "," "the"
## JJ NN RBR JJ
## "cruel" "amusement" "more" "pronounced"
## IN RB . ''
## "than" "ever" "." "\""
## RB , PRP VBP
## "However" "," "I" "do"
## RB VB IN PRP$
## "not" "deny" "that" "her"
## NN VBD JJ .
## "information" "was" "invaluable" "."
## IN PRP , PRP
## "Without" "it" "," "I"
## MD RB VB VBN
## "could" "never" "have" "formed"
## PRP$ NN , CC
## "our" "plan" "," "and"
## IN DT , PRP
## "for" "that" "," "you"
## MD VB PRP$ NN
## "will" "have" "your" "reward"
## , NNP . PRP
## "," "Wormtail" "." "I"
## MD VB PRP TO
## "will" "allow" "you" "to"
## VB DT JJ NN
## "perform" "an" "essential" "task"
## IN PRP , CD
## "for" "me" "," "one"
## IN JJ IN PRP$
## "that" "many" "of" "my"
## NNS MD VB PRP$
## "followers" "would" "give" "their"
## JJ NNS TO VB
## "right" "hands" "to" "perform.."
## . '' RB ,
## "." "\"" "\"R-really" ","
## PRP$ NNP . WP
## "My" "Lord" "?" "What"
## : . '' NNP
## "--" "?" "\"" "Wormtail"
## VBD VBN RB .
## "sounded" "terrified" "again" "."
## `` UH , UH
## "\"" "Ah" "," "Wormtail"
## , PRP VBP RB
## "," "you" "do" "n't"
## VB PRP TO VB
## "want" "me" "to" "spoil"
## DT NN . PRP$
## "the" "surprise" "?" "Your"
## NN MD VB IN
## "part" "will" "come" "at"
## DT JJ NN IN
## "the" "very" "end" "...but"
## PRP VBP PRP ,
## "I" "promise" "you" ","
## PRP MD VB DT
## "you" "will" "have" "the"
## NN IN VBG RB
## "honor" "of" "being" "just"
## RB JJ IN NNP
## "as" "useful" "as" "Bertha"
## NNP . '' ``
## "Jorkins" "." "\"" "\""
## PRP . '' NNP
## "You...you.." "." "\"" "Wormtail"
## POS NN RB VBD
## "'s" "voice" "suddenly" "sounded"
## JJ , IN IN
## "hoarse" "," "as" "though"
## PRP$ NN VBD VBN
## "his" "mouth" "had" "gone"
## RB JJ . ''
## "very" "dry" "." "\""
## PRP VBG TO VB
## "You...are" "going" "...to" "kill"
## PRP RB . ''
## "me" "too" "?" "\""
## `` JJ , JJ
## "\"" "Wormtail" "," "Wormtail"
## , '' VBD DT
## "," "\"" "said" "the"
## JJ NN RB ,
## "cold" "voice" "silkily" ","
## RB MD PRP VB
## "\"why" "would" "I" "kill"
## PRP . PRP VBD
## "you" "?" "I" "killed"
## NNP IN PRP VBD
## "Bertha" "because" "I" "had"
## TO . PRP VBD
## "to" "." "She" "was"
## VBN IN NN IN
## "fit" "for" "nothing" "after"
## PRP$ NN , RB
## "my" "questioning" "," "quite"
## JJ . IN DT
## "useless" "." "In" "any"
## NN , JJ NNS
## "case" "," "awkward" "questions"
## MD VB VBN VBN
## "would" "have" "been" "asked"
## IN PRP VBD VBN
## "if" "she" "had" "gone"
## RB TO DT NNP
## "back" "to" "the" "Ministry"
## IN DT NN IN
## "with" "the" "news" "that"
## PRP VBD VBN PRP
## "she" "had" "met" "you"
## IN PRP$ NNS .
## "on" "her" "holidays" "."
## NNS WP VBP VBN
## "Wizards" "who" "are" "supposed"
## TO VB JJ MD
## "to" "be" "dead" "would"
## VB RB RB TO
## "do" "well" "not" "to"
## VB IN NNP IN
## "run" "into" "Ministry" "of"
## NNP NNS IN NN
## "Magic" "witches" "at" "wayside"
## NNS VBP . ''
## "inns" ".." "." "\""
## NNP VBD NN RB
## "Wormtail" "muttered" "something" "so"
## RB IN NNP MD
## "quietly" "that" "Frank" "could"
## RB VB PRP ,
## "not" "hear" "it" ","
## CC PRP VBD DT
## "but" "it" "made" "the"
## JJ NN NN :
## "second" "man" "laugh" "--"
## DT RB JJ NN
## "an" "entirely" "mirthless" "laugh"
## , JJ IN PRP$
## "," "cold" "as" "his"
## NN . '' PRP
## "speech" "." "\"" "We"
## MD VB VBN PRP$
## "could" "have" "modified" "her"
## NN . CC NNP
## "memory" "?" "But" "Memory"
## NNP MD VB VBN
## "Charms" "can" "be" "broken"
## IN DT JJ NN
## "by" "a" "powerful" "wizard"
## , IN PRP VBD
## "," "as" "I" "proved"
## WRB PRP VBD PRP
## "when" "I" "questioned" "her"
## . PRP MD VB
## "." "It" "would" "be"
## DT NN TO PRP$
## "an" "insult" "to" "her"
## NN RB TO VB
## "memory" "not" "to" "use"
## DT NN PRP VBD
## "the" "information" "I" "extracted"
## IN PRP , JJ
## "from" "her" "," "Wormtail"
## . '' IN IN
## "." "\"" "Out" "in"
## DT NN , NNP
## "the" "corridor" "," "Frank"
## RB VBD JJ IN
## "suddenly" "became" "aware" "that"
## DT NN VBG PRP$
## "the" "hand" "gripping" "his"
## NN NN VBD VBG
## "walking" "stick" "was" "slippery"
## IN NN . DT
## "with" "sweat" "." "The"
## NN IN DT JJ
## "man" "with" "the" "cold"
## NN VBD VBN DT
## "voice" "had" "killed" "a"
## NN . PRP VBD
## "woman" "." "He" "was"
## VBG IN PRP IN
## "talking" "about" "it" "without"
## DT NN IN NN
## "any" "kind" "of" "remorse"
## : IN NN .
## "--" "with" "amusement" "."
## PRP VBD JJ :
## "He" "was" "dangerous" "--"
## DT JJ . CC
## "a" "madman" "." "And"
## PRP VBD VBG RBR
## "he" "was" "planning" "more"
## NNS : DT NN
## "murders" "--" "this" "boy"
## , NNP NNP ,
## "," "Harry" "Potter" ","
## WP PRP VBD :
## "whoever" "he" "was" "--"
## VBD IN NN :
## "was" "in" "danger" "--"
## NNP VBD WP PRP
## "Frank" "knew" "what" "he"
## MD VB . RB
## "must" "do" "." "Now"
## , IN RB ,
## "," "if" "ever" ","
## VBD DT NN TO
## "was" "the" "time" "to"
## VB TO DT NN
## "go" "to" "the" "police"
## . PRP MD VB
## "." "He" "would" "creep"
## IN IN DT NN
## "out" "of" "the" "house"
## CC NN RB IN
## "and" "head" "straight" "for"
## DT NN NN IN
## "the" "telephone" "box" "in"
## DT NN IN DT
## "the" "village" "...but" "the"
## JJ NN VBD VBG
## "cold" "voice" "was" "speaking"
## RB , CC NNP
## "again" "," "and" "Frank"
## VBD WRB PRP VBD
## "remained" "where" "he" "was"
## , VBN TO DT
## "," "frozen" "to" "the"
## NN , VBG IN
## "spot" "," "listening" "with"
## DT PRP$ NN .
## "all" "his" "might" "."
## '' CD JJR NN
## "\"" "One" "more" "murder"
## IN JJ NN IN
## "...my" "faithful" "servant" "at"
## NNS NNP NNP VBZ
## "Hogwarts" "...Harry" "Potter" "is"
## RB JJ IN PRP
## "as" "good" "as" "mine"
## , NNP . PRP
## "," "Wormtail" "." "It"
## VBZ VBN . EX
## "is" "decided" "." "There"
## MD VB DT JJR
## "will" "be" "no" "more"
## NN . CC JJ
## "argument" "." "But" "quiet"
## : PRP VBP PRP
## "..." "I" "think" "I"
## VBP NNP CC .
## "hear" "Nagini" ".." "."
## '' CC DT JJ
## "\"" "And" "the" "second"
## NN POS NN VBD
## "man" "'s" "voice" "changed"
## . PRP VBD VBG
## "." "He" "started" "making"
## NNS JJ IN NNP
## "noises" "such" "as" "Frank"
## VBD RB VBN IN
## "had" "never" "heard" "before"
## : PRP VBD VBG
## ";" "he" "was" "hissing"
## CC VBG IN VBG
## "and" "spitting" "without" "drawing"
## NN . NNP VBD
## "breath" "." "Frank" "thought"
## PRP MD VB VBG
## "he" "must" "be" "having"
## DT NN IN NN
## "some" "sort" "of" "fit"
## CC NN . CC
## "or" "seizure" "." "And"
## RB NNP VBD NN
## "then" "Frank" "heard" "movement"
## IN PRP IN DT
## "behind" "him" "in" "the"
## JJ NN . PRP
## "dark" "passageway" "." "He"
## VBD TO VB ,
## "turned" "to" "look" ","
## CC VBD PRP VBN
## "and" "found" "himself" "paralyzed"
## IN JJ . NN
## "with" "fright" "." "Something"
## VBD VBG IN PRP
## "was" "slithering" "toward" "him"
## IN DT JJ NN
## "along" "the" "dark" "corridor"
## NN , CC IN
## "floor" "," "and" "as"
## PRP VBD RBR TO
## "it" "drew" "nearer" "to"
## DT NN IN NN
## "the" "sliver" "of" "firelight"
## , PRP VBD IN
## "," "he" "realized" "with"
## DT NN IN NN
## "a" "thrill" "of" "terror"
## IN PRP VBD DT
## "that" "it" "was" "a"
## JJ NN , IN
## "gigantic" "snake" "," "at"
## JJS CD NNS JJ
## "least" "twelve" "feet" "long"
## . NNP , VBD
## "." "Horrified" "," "transfixed"
## , NNP VBD IN
## "," "Frank" "stared" "as"
## PRP$ JJ NN VBD
## "its" "undulating" "body" "cut"
## DT JJ , VBG
## "a" "wide" "," "curving"
## NN IN DT JJ
## "track" "through" "the" "thick"
## NN IN DT NN
## "dust" "on" "the" "floor"
## , VBG RBR CC
## "," "coming" "closer" "and"
## RBR : WP VBD
## "closer" "--" "What" "was"
## PRP TO VB .
## "he" "to" "do" "?"
## DT JJ NN IN
## "The" "only" "means" "of"
## NN VBD IN DT
## "escape" "was" "into" "the"
## NN WRB DT CD
## "room" "where" "the" "two"
## NNS VBD VBG NN
## "men" "sat" "plotting" "murder"
## , RB IN PRP
## "," "yet" "if" "he"
## VBD WRB PRP VBD
## "stayed" "where" "he" "was"
## DT NN MD RB
## "the" "snake" "would" "surely"
## VB PRP : CC
## "kill" "him" "--" "But"
## IN PRP VBD VBN
## "before" "he" "had" "made"
## PRP$ NN , DT
## "his" "decision" "," "the"
## NN VBD NN IN
## "snake" "was" "level" "with"
## PRP , CC RB
## "him" "," "and" "then"
## , RB , RB
## "," "incredibly" "," "miraculously"
## , PRP VBD VBG
## "," "it" "was" "passing"
## : PRP VBD VBG
## ";" "it" "was" "following"
## DT NN , PRP
## "the" "spitting" "," "hissing"
## VBZ VBN IN DT
## "noises" "made" "by" "the"
## JJ NN IN DT
## "cold" "voice" "beyond" "the"
## NN , CC IN
## "door" "," "and" "in"
## NNS , DT NN
## "seconds" "," "the" "tip"
## IN PRP$ JJ NN
## "of" "its" "diamond-patterned" "tail"
## VBD VBN IN DT
## "had" "vanished" "through" "the"
## NN . EX VBD
## "gap" "." "There" "was"
## NN IN NNP POS
## "sweat" "on" "Frank" "'s"
## NN RB , CC
## "forehead" "now" "," "and"
## DT NN IN DT
## "the" "hand" "on" "the"
## NN NN VBD VBG
## "walking" "stick" "was" "trembling"
## . IN DT NN
## "." "Inside" "the" "room"
## , DT JJ NN
## "," "the" "cold" "voice"
## VBD VBG TO NNS
## "was" "continuing" "to" "hiss"
## , CC NNP VBD
## "," "and" "Frank" "was"
## VBN IN DT JJ
## "visited" "by" "a" "strange"
## NN , DT JJ
## "idea" "," "an" "impossible"
## NN DT NN MD
## "idea" "...This" "man" "could"
## VB TO NNS .
## "talk" "to" "snakes" "."
## NNP VBD RB VB
## "Frank" "did" "n't" "understand"
## WP VBD VBG RP
## "what" "was" "going" "on"
## . PRP VBD RBR
## "." "He" "wanted" "more"
## IN NN TO VB
## "than" "anything" "to" "be"
## RB IN PRP$ NN
## "back" "in" "his" "bed"
## IN PRP$ NN NN
## "with" "his" "hot-water" "bottle"
## . DT NN VBD
## "." "The" "problem" "was"
## IN PRP$ NNS VBD
## "that" "his" "legs" "did"
## RB VB TO VB
## "n't" "seem" "to" "want"
## TO VB . IN
## "to" "move" "." "As"
## PRP VBD RB VBG
## "he" "stood" "there" "shaking"
## CC VBG TO VB
## "and" "trying" "to" "master"
## PRP , DT JJ
## "himself" "," "the" "cold"
## NN VBD RB TO
## "voice" "switched" "abruptly" "to"
## NNP RB . ''
## "English" "again" "." "\""
## NNP VBZ JJ NN
## "Nagini" "has" "interesting" "news"
## , JJ , ''
## "," "Wormtail" "," "\""
## PRP VBD . ``
## "it" "said" "." "\""
## NNP , PRP$ NNP
## "In-indeed" "," "My" "Lord"
## . '' VBD JJ
## "?" "\"" "said" "Wormtail"
## . '' RB ,
## "." "\"" "Indeed" ","
## UH , '' VBD
## "yes" "," "\"" "said"
## DT NN , ``
## "the" "voice" "," "\""
## VBG TO NNP ,
## "According" "to" "Nagini" ","
## EX VBZ DT JJ
## "there" "is" "an" "old"
## NNP VBG RB IN
## "Muggle" "standing" "right" "outside"
## DT NN , VBG
## "this" "room" "," "listening"
## TO DT NN PRP
## "to" "every" "word" "we"
## VBP . '' NNP
## "say" "." "\"" "Frank"
## VBD RB VB DT
## "did" "n't" "have" "a"
## NN TO VB PRP
## "chance" "to" "hide" "himself"
## . EX VBD NNS
## "." "There" "were" "footsteps"
## CC RB DT NN
## "and" "then" "the" "door"
## IN DT NN VBD
## "of" "the" "room" "was"
## VBN RB JJ .
## "flung" "wide" "open" "."
## DT JJ , JJ
## "A" "short" "," "balding"
## NN IN VBG NN
## "man" "with" "graying" "hair"
## , DT JJ NN
## "," "a" "pointed" "nose"
## , CC JJ ,
## "," "and" "small" ","
## JJ NNS VBD IN
## "watery" "eyes" "stood" "before"
## NNP , DT NN
## "Frank" "," "a" "mixture"
## IN NN CC NN
## "of" "fear" "and" "alarm"
## IN PRP$ NN .
## "in" "his" "face" "."
## '' NNP PRP RB
## "\"" "Invite" "him" "inside"
## , NNP . WRB
## "," "Wormtail" "." "Where"
## VBP PRP$ NNS .
## "are" "your" "manners" "?"
## '' DT JJ NN
## "\"" "The" "cold" "voice"
## VBD VBG IN DT
## "was" "coming" "from" "the"
## JJ NN IN DT
## "ancient" "armchair" "before" "the"
## NN , CC NNP
## "fire" "," "but" "Frank"
## MD RB VB DT
## "could" "n't" "see" "the"
## NN . DT NN
## "speaker" "." "the" "snake"
## , IN DT JJ
## "," "on" "the" "other"
## NN , VBD VBN
## "hand" "," "was" "curled"
## RP IN DT VBG
## "up" "on" "the" "rotting"
## NN NN , IN
## "hearth" "rug" "," "like"
## DT JJ NN IN
## "some" "horrible" "travesty" "of"
## DT JJ NN .
## "a" "pet" "dog" "."
## NN VBD NNP IN
## "Wormtail" "beckoned" "Frank" "into"
## DT NN . IN
## "the" "room" "." "Though"
## RB RB VBN ,
## "still" "deeply" "shaken" ","
## NNP VBD DT JJR
## "Frank" "took" "a" "firmer"
## NN IN PRP$ NN
## "grip" "on" "his" "walking"
## NN CC VBD IN
## "stick" "and" "limped" "over"
## DT NN . DT
## "the" "threshold" "." "The"
## NN VBD DT JJ
## "fire" "was" "the" "only"
## NN IN NN IN
## "source" "of" "light" "in"
## DT NN : PRP
## "the" "room" ";" "it"
## VBD RB , JJ
## "cast" "long" "," "spidery"
## NNS IN DT NNS
## "shadows" "upon" "the" "walls"
## . NNP VBD IN
## "." "Frank" "stared" "at"
## DT NN IN DT
## "the" "back" "of" "the"
## NN : DT NN
## "armchair" ";" "the" "man"
## IN PRP VBD TO
## "inside" "it" "seemed" "to"
## VB RB JJR IN
## "be" "even" "smaller" "than"
## PRP$ NN , IN
## "his" "servant" "," "for"
## NNP MD RB RB
## "Frank" "could" "n't" "even"
## VB DT NN IN
## "see" "the" "back" "of"
## PRP$ NN . ''
## "his" "head" "." "\""
## PRP VBD NN ,
## "You" "heard" "everything" ","
## NNP . '' VBD
## "Muggle" "?" "\"" "said"
## DT JJ NN .
## "the" "cold" "voice" "."
## `` WP VBZ IN
## "\"" "What" "'s" "that"
## PRP VBP VBG PRP
## "you" "'re" "calling" "me"
## . '' VBD NNP
## "?" "\"" "said" "Frank"
## RB , IN RB
## "defiantly" "," "for" "now"
## IN PRP VBD IN
## "that" "he" "was" "inside"
## DT NN , RB
## "the" "room" "," "now"
## IN DT NN VBD
## "that" "the" "time" "had"
## VBN IN DT NN
## "come" "for" "some" "sort"
## IN NN , PRP
## "of" "action" "," "he"
## VBD NN : PRP
## "felt" "braver" ";" "it"
## VBD RB VBN RB
## "had" "always" "been" "so"
## IN DT NN .
## "in" "the" "war" "."
## '' PRP VBP VBG
## "\"" "I" "am" "calling"
## PRP DT NNP ,
## "you" "a" "Muggle" ","
## '' VBD DT NN
## "\"" "said" "the" "voice"
## RB . `` PRP
## "coolly" "." "\"" "It"
## VBZ IN PRP VBP
## "means" "that" "you" "are"
## RB DT NN .
## "not" "a" "wizard" "."
## '' `` PRP VBP
## "\"" "\"" "I" "do"
## RB VB WP PRP
## "n't" "know" "what" "you"
## VBP IN NN ,
## "mean" "by" "wizard" ","
## '' VBD NNP ,
## "\"" "said" "Frank" ","
## PRP$ NN VBG NN
## "his" "voice" "growing" "steadier"
## . '' DT PRP
## "." "\"" "All" "I"
## VBP VBZ PRP VBP
## "know" "is" "I" "'ve"
## VBN RB TO VB
## "heard" "enough" "to" "interest"
## DT NN RB ,
## "the" "police" "tonight" ","
## PRP VBP . PRP
## "I" "have" "." "You"
## VBP VBN NN CC
## "'ve" "done" "murder" "and"
## PRP VBP VBG RBR
## "you" "'re" "planning" "more"
## . CC PRP MD
## "!" "And" "I" "'ll"
## VB NNP RB ,
## "tell" "youthis" "too" ","
## '' PRP VBD ,
## "\"" "he" "added" ","
## IN DT JJ NN
## "on" "a" "sudden" "inspiration"
## , RB NN VBZ
## "," "\"my" "wife" "knows"
## PRP VBP RB RB
## "I" "'m" "up" "here"
## , CC IN PRP
## "," "and" "if" "I"
## VBP RB VB RB
## "do" "n't" "come" "back"
## , `` PRP VBP
## "--\"" "\"" "You" "have"
## DT NN , ``
## "no" "wife" "," "\""
## VBD JJ JJ NN
## "said" "te" "cold" "voice"
## , RB RB .
## "," "very" "quietly" "."
## '' NN VBZ PRP
## "\"" "Nobody" "knows" "you"
## VBP RB . PRP
## "are" "here" "." "You"
## VBD NN IN PRP
## "told" "nobody" "that" "you"
## VBD VBG . VBP
## "were" "coming" "." "Do"
## RB VB TO NNP
## "not" "lie" "to" "Lord"
## NNP , NNP ,
## "Voldemort" "," "Muggle" ","
## IN PRP VBZ RB
## "for" "he" "knows" "...he"
## RB VBZ CC .
## "always" "knows" ".." "."
## '' `` VBZ DT
## "\"" "\"" "Is" "that"
## JJ . '' VBD
## "right" "?" "\"" "said"
## NNP RB . ''
## "Frank" "roughly" "." "\""
## NNP , VBZ PRP
## "Lord" "," "is" "it"
## . UH , PRP
## "?" "Well" "," "I"
## VBP RB VB RB
## "do" "n't" "think" "much"
## IN PRP$ NNS ,
## "of" "your" "manners" ","
## PRP$ NNP . NNP
## "My" "Lord" "." "Turn"
## . CC VB PRP
## "'round" "and" "face" "me"
## IN DT NN ,
## "like" "a" "man" ","
## WRB VBP RB PRP
## "why" "do" "n't" "you"
## . '' '' CC
## "?" "\"" "\"" "But"
## PRP VBP RB DT
## "I" "am" "not" "a"
## NN , NNP ,
## "man" "," "Muggle" ","
## '' VBD DT JJ
## "\"" "said" "the" "cold"
## NN , RB JJ
## "voice" "," "barely" "audible"
## RB IN DT NN
## "now" "over" "the" "crackling"
## IN DT NNS .
## "of" "the" "flames" "."
## '' PRP VBP RB
## "\"" "I" "am" "much"
## , RB JJR IN
## "," "much" "more" "than"
## DT NN . RB
## "a" "man" "." "However...why"
## RB . PRP MD
## "not" "?" "I" "will"
## VB PRP VB ,
## "face" "you" "...Wormtail" ","
## VB VB PRP$ NN
## "come" "turn" "my" "chair"
## RB . '' DT
## "around" "." "\"" "The"
## NN VBD DT NN
## "servant" "gave" "a" "whimper"
## . '' PRP VBD
## "." "\"" "You" "heard"
## PRP , UH .
## "me" "," "Wormtail" "."
## '' RB , IN
## "\"" "Slowly" "," "with"
## PRP$ NN VBD RB
## "his" "face" "screwed" "up"
## , IN IN PRP
## "," "as" "though" "he"
## MD RB VB VBN
## "would" "rather" "have" "done"
## NN IN VB PRP$
## "anything" "than" "approach" "his"
## NN CC DT NN
## "master" "and" "the" "hearth"
## NN WRB DT NN
## "rug" "where" "the" "snake"
## VBD , DT JJ
## "lay" "," "the" "small"
## NN VBD RB CC
## "man" "walked" "forward" "and"
## VBD TO VB DT
## "began" "to" "turn" "the"
## NN . DT NN
## "chair" "." "The" "snake"
## VBD PRP$ JJ NN
## "lifted" "its" "ugly" "triangular"
## NN CC VBD RB
## "head" "and" "hissed" "slightly"
## IN DT NNS IN
## "as" "the" "legs" "of"
## DT NN VBD IN
## "the" "chair" "snagged" "on"
## PRP$ NNP CC RB
## "its" "rug." "And" "then"
## DT NN VBD VBG
## "the" "chair" "was" "facing"
## NNP , CC PRP
## "Frank" "," "and" "he"
## VBD WP VBD VBG
## "saw" "what" "was" "sitting"
## IN PRP . PRP$
## "in" "it" "." "His"
## VBG NN VBD TO
## "walking" "stick" "fell" "to"
## DT NN IN DT
## "the" "floor" "with" "a"
## NN . PRP VBD
## "clatter" "." "He" "opened"
## PRP$ NN CC VB
## "his" "mouth" "and" "let"
## RP DT NN .
## "out" "a" "scream" "."
## PRP VBD VBG RB
## "He" "was" "screaming" "so"
## RB IN PRP RB
## "loudly" "that" "he" "never"
## VBD DT NNS DT
## "heard" "the" "words" "the"
## NN IN DT NN
## "thing" "in" "the" "chair"
## VBD IN PRP VBD
## "spoke" "as" "it" "raised"
## DT NN . EX
## "a" "wand" "." "There"
## VBD DT NN IN
## "was" "a" "flash" "of"
## JJ NN , DT
## "green" "light" "," "a"
## VBG NN , CC
## "rushing" "sound" "," "and"
## NNP NNP VBD .
## "Frank" "Bryce" "crumpled" "."
## PRP VBD JJ IN
## "He" "was" "dead" "before"
## PRP VBD DT NN
## "he" "hit" "the" "floor"
## . CD CD NNS
## "." "Two" "hundred" "miles"
## RB , DT NN
## "away" "," "the" "boy"
## VBD NNP NNP VBD
## "called" "Harry" "Potter" "woke"
## IN DT NN .
## "with" "a" "start" "."
##
## [[2]]
## NULL
##
## [[3]]
## NULL
##
## [[4]]
## NULL
##
## [[5]]
## NULL
##
## [[6]]
## NULL
##
## [[7]]
## NULL
##
## [[8]]
## NULL
##
## [[9]]
## NULL
##
## [[10]]
## NULL
tag_pos(df_r)[1] %>% as_universal() %>% plot() ##NOUN & Verb are two most parts of speech.
## Warning: `tbl_df()` is deprecated as of dplyr 1.0.0.
## Please use `tibble::as_tibble()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_warnings()` to see where this warning was generated.
head(...(book[1])) to print out the first few examples.##r chunk
create_tagger_r <- rdr_model(language = "English", annotation = "POS")
rdr_pos(create_tagger_r, x = df_r[1][1])
## doc_id token_id token pos
## 1 d1 1 The DT
## 2 d1 2 villagers NNS
## 3 d1 3 of IN
## 4 d1 4 Little NNP
## 5 d1 5 Hangleron NNP
## 6 d1 6 still RB
## 7 d1 7 called VBN
## 8 d1 8 it PRP
## 9 d1 9 '' ''
## 10 d1 10 Riddle NN
## 11 d1 11 House NNP
## 12 d1 12 , ,
## 13 d1 13 '' ''
## 14 d1 14 even RB
## 15 d1 15 though IN
## 16 d1 16 it PRP
## 17 d1 17 had VBD
## 18 d1 18 been VBN
## 19 d1 19 many JJ
## 20 d1 20 years NNS
## 21 d1 21 since IN
## 22 d1 22 the DT
## 23 d1 23 Riddle NN
## 24 d1 24 family NN
## 25 d1 25 had VBD
## 26 d1 26 lived VBD
## 27 d1 27 there EX
## 28 d1 28 . .
## 29 d1 29 It PRP
## 30 d1 30 stood VBD
## 31 d1 31 on IN
## 32 d1 32 a DT
## 33 d1 33 hill NN
## 34 d1 34 overlooking VBG
## 35 d1 35 the DT
## 36 d1 36 village NN
## 37 d1 37 , ,
## 38 d1 38 some DT
## 39 d1 39 of IN
## 40 d1 40 its PRP$
## 41 d1 41 windows NNS
## 42 d1 42 boarded VBN
## 43 d1 43 , ,
## 44 d1 44 tiles NNS
## 45 d1 45 missing VBG
## 46 d1 46 from IN
## 47 d1 47 its PRP$
## 48 d1 48 roof NN
## 49 d1 49 , ,
## 50 d1 50 and CC
## 51 d1 51 ivy NN
## 52 d1 52 spreading VBG
## 53 d1 53 unchecked JJ
## 54 d1 54 over IN
## 55 d1 55 its PRP$
## 56 d1 56 face NN
## 57 d1 57 . .
## 58 d1 58 Once RB
## 59 d1 59 a DT
## 60 d1 60 fine NN
## 61 d1 61 - :
## 62 d1 62 looking VBG
## 63 d1 63 manor NN
## 64 d1 64 , ,
## 65 d1 65 and CC
## 66 d1 66 easily RB
## 67 d1 67 the DT
## 68 d1 68 largest JJS
## 69 d1 69 and CC
## 70 d1 70 grandest JJS
## 71 d1 71 building NN
## 72 d1 72 for IN
## 73 d1 73 miles NNS
## 74 d1 74 around IN
## 75 d1 75 , ,
## 76 d1 76 the DT
## 77 d1 77 Riddle NN
## 78 d1 78 House NNP
## 79 d1 79 was VBD
## 80 d1 80 now RB
## 81 d1 81 damp VB
## 82 d1 82 , ,
## 83 d1 83 derelict VB
## 84 d1 84 , ,
## 85 d1 85 and CC
## 86 d1 86 unoccupied JJ
## 87 d1 87 . .
## 88 d1 88 The NNP
## 89 d1 89 Little NNP
## 90 d1 90 Hagletons NNS
## 91 d1 91 all DT
## 92 d1 92 agreed VBD
## 93 d1 93 that IN
## 94 d1 94 the DT
## 95 d1 95 old JJ
## 96 d1 96 house NN
## 97 d1 97 was VBD
## 98 d1 98 '' ''
## 99 d1 99 . .
## 100 d1 100 '' ''
## 101 d1 101 Half NN
## 102 d1 102 a DT
## 103 d1 103 century NN
## 104 d1 104 ago RB
## 105 d1 105 , ,
## 106 d1 106 something NN
## 107 d1 107 strange JJ
## 108 d1 108 and CC
## 109 d1 109 horrible JJ
## 110 d1 110 had VBD
## 111 d1 111 happened VBD
## 112 d1 112 there EX
## 113 d1 113 , ,
## 114 d1 114 something NN
## 115 d1 115 that IN
## 116 d1 116 the DT
## 117 d1 117 older JJR
## 118 d1 118 inhabitants NNS
## 119 d1 119 of IN
## 120 d1 120 the DT
## 121 d1 121 village NN
## 122 d1 122 still RB
## 123 d1 123 liked VBD
## 124 d1 124 to TO
## 125 d1 125 discuss VB
## 126 d1 126 when WRB
## 127 d1 127 topics NNS
## 128 d1 128 for IN
## 129 d1 129 gossip NN
## 130 d1 130 were VBD
## 131 d1 131 scarce JJ
## 132 d1 132 . .
## 133 d1 133 The NNP
## 134 d1 134 story NN
## 135 d1 135 had VBD
## 136 d1 136 been VBN
## 137 d1 137 picked VBD
## 138 d1 138 over IN
## 139 d1 139 so RB
## 140 d1 140 many JJ
## 141 d1 141 times NNS
## 142 d1 142 , ,
## 143 d1 143 and CC
## 144 d1 144 had VBD
## 145 d1 145 been VBN
## 146 d1 146 embroidered VBN
## 147 d1 147 in IN
## 148 d1 148 so RB
## 149 d1 149 many JJ
## 150 d1 150 places NNS
## 151 d1 151 , ,
## 152 d1 152 that IN
## 153 d1 153 nobody NN
## 154 d1 154 was VBD
## 155 d1 155 quite RB
## 156 d1 156 sure JJ
## 157 d1 157 what WP
## 158 d1 158 the DT
## 159 d1 159 truth NN
## 160 d1 160 was VBD
## 161 d1 161 anymore RB
## 162 d1 162 . .
## 163 d1 163 Every DT
## 164 d1 164 version NN
## 165 d1 165 of IN
## 166 d1 166 the DT
## 167 d1 167 tale NN
## 168 d1 168 , ,
## 169 d1 169 however RB
## 170 d1 170 , ,
## 171 d1 171 started VBD
## 172 d1 172 in IN
## 173 d1 173 the DT
## 174 d1 174 same JJ
## 175 d1 175 place NN
## 176 d1 176 : :
## 177 d1 177 Fifty JJ
## 178 d1 178 years NNS
## 179 d1 179 before IN
## 180 d1 180 , ,
## 181 d1 181 at IN
## 182 d1 182 daybreak NN
## 183 d1 183 on IN
## 184 d1 184 a DT
## 185 d1 185 fine NN
## 186 d1 186 summer's NN
## 187 d1 187 morning NN
## 188 d1 188 when WRB
## 189 d1 189 the DT
## 190 d1 190 Riddle NN
## 191 d1 191 House NNP
## 192 d1 192 had VBD
## 193 d1 193 still RB
## 194 d1 194 been VBN
## 195 d1 195 well RB
## 196 d1 196 kept VBD
## 197 d1 197 and CC
## 198 d1 198 impressive JJ
## 199 d1 199 , ,
## 200 d1 200 a DT
## 201 d1 201 maid NN
## 202 d1 202 had VBD
## 203 d1 203 entered VBD
## 204 d1 204 the DT
## 205 d1 205 drawing VBG
## 206 d1 206 room NN
## 207 d1 207 to TO
## 208 d1 208 find VB
## 209 d1 209 all DT
## 210 d1 210 three CD
## 211 d1 211 Riddles VBZ
## 212 d1 212 dead JJ
## 213 d1 213 . .
## 214 d1 214 The NNP
## 215 d1 215 maid NN
## 216 d1 216 had VBD
## 217 d1 217 run VB
## 218 d1 218 screaming VBG
## 219 d1 219 down RB
## 220 d1 220 the DT
## 221 d1 221 hill NN
## 222 d1 222 into IN
## 223 d1 223 the DT
## 224 d1 224 village NN
## 225 d1 225 and CC
## 226 d1 226 roused VBN
## 227 d1 227 as IN
## 228 d1 228 many JJ
## 229 d1 229 people NNS
## 230 d1 230 as IN
## 231 d1 231 she PRP
## 232 d1 232 could MD
## 233 d1 233 . .
## 234 d1 234 '' ''
## 235 d1 235 there EX
## 236 d1 236 with IN
## 237 d1 237 their PRP$
## 238 d1 238 eyes NNS
## 239 d1 239 wide JJ
## 240 d1 240 open JJ
## 241 d1 241 ! .
## 242 d1 242 Cold NNP
## 243 d1 243 as IN
## 244 d1 244 ice NN
## 245 d1 245 ! .
## 246 d1 246 Still RB
## 247 d1 247 in IN
## 248 d1 248 their PRP$
## 249 d1 249 dinner NN
## 250 d1 250 things NNS
## 251 d1 251 ! .
## 252 d1 252 '' ''
## 253 d1 253 police NN
## 254 d1 254 were VBD
## 255 d1 255 summoned VBN
## 256 d1 256 , ,
## 257 d1 257 and CC
## 258 d1 258 the DT
## 259 d1 259 whole JJ
## 260 d1 260 of IN
## 261 d1 261 Little NNP
## 262 d1 262 Hangleton NNP
## 263 d1 263 had VBD
## 264 d1 264 seethed VBD
## 265 d1 265 with IN
## 266 d1 266 shocked VBN
## 267 d1 267 curiosity NN
## 268 d1 268 and CC
## 269 d1 269 ill JJ
## 270 d1 270 - :
## 271 d1 271 disguised VBN
## 272 d1 272 excitement NN
## 273 d1 273 . .
## 274 d1 274 Nobody NN
## 275 d1 275 wasted VBN
## 276 d1 276 their PRP$
## 277 d1 277 breath NN
## 278 d1 278 pretending VBG
## 279 d1 279 to TO
## 280 d1 280 feel VBP
## 281 d1 281 very RB
## 282 d1 282 sad JJ
## 283 d1 283 about IN
## 284 d1 284 the DT
## 285 d1 285 Riddles VBZ
## 286 d1 286 , ,
## 287 d1 287 for IN
## 288 d1 288 they PRP
## 289 d1 289 had VBD
## 290 d1 290 been VBN
## 291 d1 291 most JJS
## 292 d1 292 unpopular JJ
## 293 d1 293 . .
## 294 d1 294 Elderly JJ
## 295 d1 295 Mr NNP
## 296 d1 296 . .
## 297 d1 297 and CC
## 298 d1 298 Mrs NNP
## 299 d1 299 . .
## 300 d1 300 Riddle NN
## 301 d1 301 had VBD
## 302 d1 302 been VBN
## 303 d1 303 rich JJ
## 304 d1 304 , ,
## 305 d1 305 snobbish JJ
## 306 d1 306 , ,
## 307 d1 307 and CC
## 308 d1 308 rude JJ
## 309 d1 309 , ,
## 310 d1 310 and CC
## 311 d1 311 their PRP$
## 312 d1 312 grown VBN
## 313 d1 313 - :
## 314 d1 314 up RP
## 315 d1 315 son NN
## 316 d1 316 , ,
## 317 d1 317 Tom NNP
## 318 d1 318 , ,
## 319 d1 319 had VBD
## 320 d1 320 been VBN
## 321 d1 321 , ,
## 322 d1 322 if IN
## 323 d1 323 anything NN
## 324 d1 324 , ,
## 325 d1 325 worse JJR
## 326 d1 326 . .
## 327 d1 327 All DT
## 328 d1 328 the DT
## 329 d1 329 villagers NNS
## 330 d1 330 cared VBD
## 331 d1 331 about IN
## 332 d1 332 was VBD
## 333 d1 333 the DT
## 334 d1 334 identity NN
## 335 d1 335 of IN
## 336 d1 336 their PRP$
## 337 d1 337 murderer NN
## 338 d1 338 - :
## 339 d1 339 - :
## 340 d1 340 for IN
## 341 d1 341 plainly RB
## 342 d1 342 , ,
## 343 d1 343 three CD
## 344 d1 344 apparently RB
## 345 d1 345 healthy JJ
## 346 d1 346 people NNS
## 347 d1 347 did VBD
## 348 d1 348 not RB
## 349 d1 349 all DT
## 350 d1 350 drop NN
## 351 d1 351 dead JJ
## 352 d1 352 of IN
## 353 d1 353 natural JJ
## 354 d1 354 causes VBZ
## 355 d1 355 on IN
## 356 d1 356 the DT
## 357 d1 357 same JJ
## 358 d1 358 night NN
## 359 d1 359 . .
## 360 d1 360 The NNP
## 361 d1 361 Hanged VBN
## 362 d1 362 Man NN
## 363 d1 363 , ,
## 364 d1 364 the DT
## 365 d1 365 village NN
## 366 d1 366 pub NN
## 367 d1 367 , ,
## 368 d1 368 did VBD
## 369 d1 369 a DT
## 370 d1 370 roaring VBG
## 371 d1 371 trade NN
## 372 d1 372 that IN
## 373 d1 373 night NN
## 374 d1 374 ; :
## 375 d1 375 the DT
## 376 d1 376 whole JJ
## 377 d1 377 village NN
## 378 d1 378 seemed VBD
## 379 d1 379 to TO
## 380 d1 380 have VBP
## 381 d1 381 turned VBD
## 382 d1 382 out RP
## 383 d1 383 to TO
## 384 d1 384 discuss VB
## 385 d1 385 the DT
## 386 d1 386 murders NNS
## 387 d1 387 . .
## 388 d1 388 They PRP
## 389 d1 389 were VBD
## 390 d1 390 rewarded VBN
## 391 d1 391 for IN
## 392 d1 392 leaving VBG
## 393 d1 393 their PRP$
## 394 d1 394 firesides IN
## 395 d1 395 when WRB
## 396 d1 396 the DT
## 397 d1 397 Riddles' NNP
## 398 d1 398 cook VB
## 399 d1 399 arrived VBD
## 400 d1 400 dramatically RB
## 401 d1 401 in IN
## 402 d1 402 their PRP$
## 403 d1 403 midst NN
## 404 d1 404 and CC
## 405 d1 405 announced VBD
## 406 d1 406 to TO
## 407 d1 407 the DT
## 408 d1 408 suddenly RB
## 409 d1 409 silent JJ
## 410 d1 410 pub NN
## 411 d1 411 that IN
## 412 d1 412 a DT
## 413 d1 413 man NN
## 414 d1 414 called VBN
## 415 d1 415 Frank NNP
## 416 d1 416 Bryce NNP
## 417 d1 417 had VBD
## 418 d1 418 just RB
## 419 d1 419 been VBN
## 420 d1 420 arrested VBN
## 421 d1 421 . .
## 422 d1 422 '' ''
## 423 d1 423 ! .
## 424 d1 424 '' ''
## 425 d1 425 cried VBN
## 426 d1 426 several JJ
## 427 d1 427 people NNS
## 428 d1 428 . .
## 429 d1 429 '' ''
## 430 d1 430 ! .
## 431 d1 431 '' ''
## 432 d1 432 Bryce NNP
## 433 d1 433 was VBD
## 434 d1 434 the DT
## 435 d1 435 Riddles' NNP
## 436 d1 436 gardener NN
## 437 d1 437 . .
## 438 d1 438 He PRP
## 439 d1 439 lived VBD
## 440 d1 440 alone RB
## 441 d1 441 in IN
## 442 d1 442 a DT
## 443 d1 443 run VB
## 444 d1 444 - :
## 445 d1 445 down RB
## 446 d1 446 cottage NN
## 447 d1 447 on IN
## 448 d1 448 the DT
## 449 d1 449 grounds NNS
## 450 d1 450 of IN
## 451 d1 451 the DT
## 452 d1 452 Riddle NN
## 453 d1 453 House NNP
## 454 d1 454 . .
## 455 d1 455 Frank NNP
## 456 d1 456 had VBD
## 457 d1 457 come VB
## 458 d1 458 back RB
## 459 d1 459 from IN
## 460 d1 460 the DT
## 461 d1 461 war NN
## 462 d1 462 with IN
## 463 d1 463 a DT
## 464 d1 464 very RB
## 465 d1 465 stiff JJ
## 466 d1 466 leg NN
## 467 d1 467 and CC
## 468 d1 468 a DT
## 469 d1 469 great JJ
## 470 d1 470 dislike NN
## 471 d1 471 of IN
## 472 d1 472 crowds NNS
## 473 d1 473 and CC
## 474 d1 474 loud JJ
## 475 d1 475 noises NNS
## 476 d1 476 , ,
## 477 d1 477 and CC
## 478 d1 478 had VBD
## 479 d1 479 been VBN
## 480 d1 480 working VBG
## 481 d1 481 for IN
## 482 d1 482 the DT
## 483 d1 483 Riddles VBZ
## 484 d1 484 ever RB
## 485 d1 485 since IN
## 486 d1 486 . .
## 487 d1 487 There RB
## 488 d1 488 was VBD
## 489 d1 489 a DT
## 490 d1 490 rush NN
## 491 d1 491 to TO
## 492 d1 492 buy VB
## 493 d1 493 the DT
## 494 d1 494 cook VB
## 495 d1 495 drinks NNS
## 496 d1 496 and CC
## 497 d1 497 hear VB
## 498 d1 498 more JJR
## 499 d1 499 details NNS
## 500 d1 500 . .
## 501 d1 501 '' ''
## 502 d1 502 thought VBD
## 503 d1 503 he PRP
## 504 d1 504 was VBD
## 505 d1 505 odd JJ
## 506 d1 506 , ,
## 507 d1 507 '' ''
## 508 d1 508 she PRP
## 509 d1 509 told VBD
## 510 d1 510 the DT
## 511 d1 511 eagerly RB
## 512 d1 512 listening VBG
## 513 d1 513 villagers NNS
## 514 d1 514 , ,
## 515 d1 515 after IN
## 516 d1 516 her PRP$
## 517 d1 517 fourth JJ
## 518 d1 518 sherry NNP
## 519 d1 519 . .
## 520 d1 520 '' ''
## 521 d1 521 , ,
## 522 d1 522 like IN
## 523 d1 523 . .
## 524 d1 524 I'm NNP
## 525 d1 525 sure JJ
## 526 d1 526 if IN
## 527 d1 527 I've JJ
## 528 d1 528 offered VBN
## 529 d1 529 him PRP
## 530 d1 530 a DT
## 531 d1 531 cuppa NNP
## 532 d1 532 once RB
## 533 d1 533 , ,
## 534 d1 534 I've JJ
## 535 d1 535 offered VBN
## 536 d1 536 it PRP
## 537 d1 537 a DT
## 538 d1 538 hundred CD
## 539 d1 539 times NNS
## 540 d1 540 . .
## 541 d1 541 Never RB
## 542 d1 542 wanted VBD
## 543 d1 543 to TO
## 544 d1 544 mix NN
## 545 d1 545 , ,
## 546 d1 546 he PRP
## 547 d1 547 didn't NN
## 548 d1 548 . .
## 549 d1 549 '' ''
## 550 d1 550 , ,
## 551 d1 551 now RB
## 552 d1 552 , ,
## 553 d1 553 '' ''
## 554 d1 554 said VBD
## 555 d1 555 a DT
## 556 d1 556 woman NN
## 557 d1 557 at IN
## 558 d1 558 the DT
## 559 d1 559 bar NN
## 560 d1 560 , ,
## 561 d1 561 '' ''
## 562 d1 562 had VBD
## 563 d1 563 a DT
## 564 d1 564 hard JJ
## 565 d1 565 war NN
## 566 d1 566 , ,
## 567 d1 567 Frank NNP
## 568 d1 568 . .
## 569 d1 569 He PRP
## 570 d1 570 likes VBZ
## 571 d1 571 the DT
## 572 d1 572 quiet JJ
## 573 d1 573 life NN
## 574 d1 574 . .
## 575 d1 575 That's NNP
## 576 d1 576 no DT
## 577 d1 577 reason NN
## 578 d1 578 to TO
## 579 d1 579 - :
## 580 d1 580 - :
## 581 d1 581 '' ''
## 582 d1 582 else RB
## 583 d1 583 had VBD
## 584 d1 584 a DT
## 585 d1 585 key JJ
## 586 d1 586 to TO
## 587 d1 587 the DT
## 588 d1 588 back RB
## 589 d1 589 door NN
## 590 d1 590 , ,
## 591 d1 591 then RB
## 592 d1 592 ? .
## 593 d1 593 '' ''
## 594 d1 594 barked VBN
## 595 d1 595 the DT
## 596 d1 596 cook VB
## 597 d1 597 . .
## 598 d1 598 '' ''
## 599 d1 599 been VBN
## 600 d1 600 a DT
## 601 d1 601 spare JJ
## 602 d1 602 key JJ
## 603 d1 603 hanging VBG
## 604 d1 604 in IN
## 605 d1 605 the DT
## 606 d1 606 gardener's NN
## 607 d1 607 cottage NN
## 608 d1 608 far RB
## 609 d1 609 back RB
## 610 d1 610 as IN
## 611 d1 611 I PRP
## 612 d1 612 can MD
## 613 d1 613 remember VB
## 614 d1 614 ! .
## 615 d1 615 Nobody NN
## 616 d1 616 forced VBN
## 617 d1 617 the DT
## 618 d1 618 door NN
## 619 d1 619 last JJ
## 620 d1 620 night NN
## 621 d1 621 ! .
## 622 d1 622 No DT
## 623 d1 623 broken VBN
## 624 d1 624 windows NNS
## 625 d1 625 ! .
## 626 d1 626 All DT
## 627 d1 627 Frank NNP
## 628 d1 628 had VBD
## 629 d1 629 to TO
## 630 d1 630 do VBP
## 631 d1 631 was VBD
## 632 d1 632 creep NN
## 633 d1 633 up RP
## 634 d1 634 to TO
## 635 d1 635 the DT
## 636 d1 636 big JJ
## 637 d1 637 house NN
## 638 d1 638 while IN
## 639 d1 639 we PRP
## 640 d1 640 was VBD
## 641 d1 641 all DT
## 642 d1 642 sleeping VBG
## 643 d1 643 . .
## 644 d1 644 . .
## 645 d1 645 . .
## 646 d1 646 '' ''
## 647 d1 647 villagers NNS
## 648 d1 648 exchanged VBN
## 649 d1 649 dark JJ
## 650 d1 650 looks VBZ
## 651 d1 651 . .
## 652 d1 652 '' ''
## 653 d1 653 always RB
## 654 d1 654 thought VBD
## 655 d1 655 that IN
## 656 d1 656 he PRP
## 657 d1 657 had VBD
## 658 d1 658 a DT
## 659 d1 659 nasty JJ
## 660 d1 660 look VB
## 661 d1 661 about IN
## 662 d1 662 him PRP
## 663 d1 663 , ,
## 664 d1 664 right NN
## 665 d1 665 enough RB
## 666 d1 666 , ,
## 667 d1 667 '' ''
## 668 d1 668 grunted VBN
## 669 d1 669 a DT
## 670 d1 670 man NN
## 671 d1 671 at IN
## 672 d1 672 the DT
## 673 d1 673 bar NN
## 674 d1 674 . .
## 675 d1 675 '' ''
## 676 d1 676 turned VBD
## 677 d1 677 him PRP
## 678 d1 678 funny JJ
## 679 d1 679 , ,
## 680 d1 680 if IN
## 681 d1 681 you PRP
## 682 d1 682 ask VB
## 683 d1 683 me PRP
## 684 d1 684 , ,
## 685 d1 685 '' ''
## 686 d1 686 said VBD
## 687 d1 687 the DT
## 688 d1 688 landlord NN
## 689 d1 689 . .
## 690 d1 690 '' ''
## 691 d1 691 you PRP
## 692 d1 692 I PRP
## 693 d1 693 wouldn't NN
## 694 d1 694 like IN
## 695 d1 695 to TO
## 696 d1 696 get VB
## 697 d1 697 on IN
## 698 d1 698 the DT
## 699 d1 699 wrong JJ
## 700 d1 700 side NN
## 701 d1 701 of IN
## 702 d1 702 Frank NNP
## 703 d1 703 , ,
## 704 d1 704 didn't NN
## 705 d1 705 I PRP
## 706 d1 706 , ,
## 707 d1 707 Dot VBP
## 708 d1 708 ? .
## 709 d1 709 '' ''
## 710 d1 710 said VBD
## 711 d1 711 an DT
## 712 d1 712 excited VBN
## 713 d1 713 woman NN
## 714 d1 714 in IN
## 715 d1 715 the DT
## 716 d1 716 corner NN
## 717 d1 717 . .
## 718 d1 718 '' ''
## 719 d1 719 temper NN
## 720 d1 720 , ,
## 721 d1 721 '' ''
## 722 d1 722 said VBD
## 723 d1 723 Dot VBP
## 724 d1 724 , ,
## 725 d1 725 nodding VBG
## 726 d1 726 fervently RB
## 727 d1 727 . .
## 728 d1 728 '' ''
## 729 d1 729 remember VB
## 730 d1 730 , ,
## 731 d1 731 when WRB
## 732 d1 732 he PRP
## 733 d1 733 was VBD
## 734 d1 734 a DT
## 735 d1 735 kid NN
## 736 d1 736 . .
## 737 d1 737 . .
## 738 d1 738 . .
## 739 d1 739 '' ''
## 740 d1 740 the DT
## 741 d1 741 following VBG
## 742 d1 742 morning NN
## 743 d1 743 , ,
## 744 d1 744 hardly RB
## 745 d1 745 anyone NN
## 746 d1 746 in IN
## 747 d1 747 Little NNP
## 748 d1 748 Hangleton NNP
## 749 d1 749 doubted VBD
## 750 d1 750 that IN
## 751 d1 751 Frank NNP
## 752 d1 752 Bryce NNP
## 753 d1 753 had VBD
## 754 d1 754 killed VBN
## 755 d1 755 the DT
## 756 d1 756 Riddles VBZ
## 757 d1 757 . .
## 758 d1 758 But NN
## 759 d1 759 over IN
## 760 d1 760 in IN
## 761 d1 761 the DT
## 762 d1 762 neighboring VBG
## 763 d1 763 town NN
## 764 d1 764 of IN
## 765 d1 765 Great NNP
## 766 d1 766 Hangleton NNP
## 767 d1 767 , ,
## 768 d1 768 in IN
## 769 d1 769 the DT
## 770 d1 770 dark JJ
## 771 d1 771 and CC
## 772 d1 772 dingy NN
## 773 d1 773 police NN
## 774 d1 774 station NN
## 775 d1 775 , ,
## 776 d1 776 Frank NNP
## 777 d1 777 was VBD
## 778 d1 778 stubbornly RB
## 779 d1 779 repeating VBG
## 780 d1 780 , ,
## 781 d1 781 again RB
## 782 d1 782 and CC
## 783 d1 783 again RB
## 784 d1 784 , ,
## 785 d1 785 that IN
## 786 d1 786 he PRP
## 787 d1 787 was VBD
## 788 d1 788 innocent JJ
## 789 d1 789 , ,
## 790 d1 790 and CC
## 791 d1 791 that IN
## 792 d1 792 the DT
## 793 d1 793 only RB
## 794 d1 794 person NN
## 795 d1 795 he PRP
## 796 d1 796 had VBD
## 797 d1 797 seen VBN
## 798 d1 798 near IN
## 799 d1 799 the DT
## 800 d1 800 house NN
## 801 d1 801 on IN
## 802 d1 802 the DT
## 803 d1 803 day NN
## 804 d1 804 of IN
## 805 d1 805 the DT
## 806 d1 806 Riddles' NNP
## 807 d1 807 deaths NNS
## 808 d1 808 had VBD
## 809 d1 809 been VBN
## 810 d1 810 a DT
## 811 d1 811 teenage JJ
## 812 d1 812 boy NN
## 813 d1 813 , ,
## 814 d1 814 a DT
## 815 d1 815 stranger NN
## 816 d1 816 , ,
## 817 d1 817 dark JJ
## 818 d1 818 - :
## 819 d1 819 haired VBN
## 820 d1 820 and CC
## 821 d1 821 pale JJ
## 822 d1 822 . .
## 823 d1 823 Nobody NN
## 824 d1 824 else RB
## 825 d1 825 in IN
## 826 d1 826 the DT
## 827 d1 827 village NN
## 828 d1 828 had VBD
## 829 d1 829 seen VBN
## 830 d1 830 any DT
## 831 d1 831 such JJ
## 832 d1 832 boy NN
## 833 d1 833 , ,
## 834 d1 834 and CC
## 835 d1 835 the DT
## 836 d1 836 police NN
## 837 d1 837 were VBD
## 838 d1 838 quite RB
## 839 d1 839 sure JJ
## 840 d1 840 Frank NNP
## 841 d1 841 had VBD
## 842 d1 842 invented VBD
## 843 d1 843 him PRP
## 844 d1 844 . .
## 845 d1 845 Then NNP
## 846 d1 846 , ,
## 847 d1 847 just RB
## 848 d1 848 when WRB
## 849 d1 849 things NNS
## 850 d1 850 were VBD
## 851 d1 851 looking VBG
## 852 d1 852 very RB
## 853 d1 853 serious JJ
## 854 d1 854 for IN
## 855 d1 855 Frank NNP
## 856 d1 856 , ,
## 857 d1 857 the DT
## 858 d1 858 report NN
## 859 d1 859 on IN
## 860 d1 860 the DT
## 861 d1 861 Riddles' NNP
## 862 d1 862 bodies NNS
## 863 d1 863 came VBD
## 864 d1 864 back RB
## 865 d1 865 and CC
## 866 d1 866 changed VBN
## 867 d1 867 everything NN
## 868 d1 868 . .
## 869 d1 869 The NNP
## 870 d1 870 police NN
## 871 d1 871 had VBD
## 872 d1 872 never RB
## 873 d1 873 read VB
## 874 d1 874 an DT
## 875 d1 875 odder NN
## 876 d1 876 report NN
## 877 d1 877 . .
## 878 d1 878 A DT
## 879 d1 879 team NN
## 880 d1 880 of IN
## 881 d1 881 doctors NNS
## 882 d1 882 had VBD
## 883 d1 883 examined VBD
## 884 d1 884 the DT
## 885 d1 885 bodies NNS
## 886 d1 886 and CC
## 887 d1 887 had VBD
## 888 d1 888 concluded VBD
## 889 d1 889 that IN
## 890 d1 890 none NN
## 891 d1 891 of IN
## 892 d1 892 the DT
## 893 d1 893 Riddles VBZ
## 894 d1 894 had VBD
## 895 d1 895 been VBN
## 896 d1 896 poisoned VBN
## 897 d1 897 , ,
## 898 d1 898 stabbed VBN
## 899 d1 899 , ,
## 900 d1 900 shot NN
## 901 d1 901 , ,
## 902 d1 902 strangles VBZ
## 903 d1 903 , ,
## 904 d1 904 suffocated VBN
## 905 d1 905 , ,
## 906 d1 906 or CC
## 907 d1 907 (as NN
## 908 d1 908 far RB
## 909 d1 909 as IN
## 910 d1 910 they PRP
## 911 d1 911 could MD
## 912 d1 912 tell) NN
## 913 d1 913 harmed VBN
## 914 d1 914 at IN
## 915 d1 915 all DT
## 916 d1 916 . .
## 917 d1 917 In IN
## 918 d1 918 fact NN
## 919 d1 919 (the NNP
## 920 d1 920 report NN
## 921 d1 921 continued VBD
## 922 d1 922 , ,
## 923 d1 923 in IN
## 924 d1 924 a DT
## 925 d1 925 tone NN
## 926 d1 926 of IN
## 927 d1 927 unmistakable JJ
## 928 d1 928 bewilderment) NN
## 929 d1 929 , ,
## 930 d1 930 the DT
## 931 d1 931 Riddles VBZ
## 932 d1 932 all DT
## 933 d1 933 appeared VBD
## 934 d1 934 to TO
## 935 d1 935 be VB
## 936 d1 936 in IN
## 937 d1 937 perfet NN
## 938 d1 938 health NN
## 939 d1 939 - :
## 940 d1 940 - :
## 941 d1 941 apart RB
## 942 d1 942 from IN
## 943 d1 943 the DT
## 944 d1 944 fact NN
## 945 d1 945 that IN
## 946 d1 946 they PRP
## 947 d1 947 were VBD
## 948 d1 948 all DT
## 949 d1 949 dead JJ
## 950 d1 950 . .
## 951 d1 951 The DT
## 952 d1 952 doctors NNS
## 953 d1 953 did VBD
## 954 d1 954 note NN
## 955 d1 955 (as NN
## 956 d1 956 though IN
## 957 d1 957 determined VBN
## 958 d1 958 to TO
## 959 d1 959 find VB
## 960 d1 960 something NN
## 961 d1 961 wrong JJ
## 962 d1 962 with IN
## 963 d1 963 the DT
## 964 d1 964 bodies) NN
## 965 d1 965 that IN
## 966 d1 966 each DT
## 967 d1 967 of IN
## 968 d1 968 the DT
## 969 d1 969 Riddles VBZ
## 970 d1 970 had VBD
## 971 d1 971 a DT
## 972 d1 972 look VB
## 973 d1 973 of IN
## 974 d1 974 terror NN
## 975 d1 975 upon IN
## 976 d1 976 his PRP$
## 977 d1 977 or CC
## 978 d1 978 her PRP$
## 979 d1 979 face NN
## 980 d1 980 - :
## 981 d1 981 - :
## 982 d1 982 but CC
## 983 d1 983 as IN
## 984 d1 984 the DT
## 985 d1 985 frustrated VBN
## 986 d1 986 police NN
## 987 d1 987 said VBD
## 988 d1 988 , ,
## 989 d1 989 whoever WP
## 990 d1 990 heard VBN
## 991 d1 991 of IN
## 992 d1 992 three CD
## 993 d1 993 people NNS
## 994 d1 994 being VBG
## 995 d1 995 frightened VBN
## 996 d1 996 to TO
## 997 d1 997 death NN
## 998 d1 998 ? .
## 999 d1 999 As NN
## 1000 d1 1000 there EX
## 1001 d1 1001 was VBD
## 1002 d1 1002 no DT
## 1003 d1 1003 proof NN
## 1004 d1 1004 that IN
## 1005 d1 1005 the DT
## 1006 d1 1006 Riddles VBZ
## 1007 d1 1007 had VBD
## 1008 d1 1008 been VBN
## 1009 d1 1009 murdered VBN
## 1010 d1 1010 at IN
## 1011 d1 1011 all DT
## 1012 d1 1012 , ,
## 1013 d1 1013 the DT
## 1014 d1 1014 police NN
## 1015 d1 1015 were VBD
## 1016 d1 1016 forced VBN
## 1017 d1 1017 to TO
## 1018 d1 1018 let VB
## 1019 d1 1019 Frank NNP
## 1020 d1 1020 go VB
## 1021 d1 1021 . .
## 1022 d1 1022 The DT
## 1023 d1 1023 Riddles VBZ
## 1024 d1 1024 were VBD
## 1025 d1 1025 buried VBN
## 1026 d1 1026 in IN
## 1027 d1 1027 the DT
## 1028 d1 1028 Little NNP
## 1029 d1 1029 Hangleton NNP
## 1030 d1 1030 churchyard NN
## 1031 d1 1031 , ,
## 1032 d1 1032 and CC
## 1033 d1 1033 their PRP$
## 1034 d1 1034 graves VBZ
## 1035 d1 1035 remained VBD
## 1036 d1 1036 objects NNS
## 1037 d1 1037 of IN
## 1038 d1 1038 curiosity NN
## 1039 d1 1039 for IN
## 1040 d1 1040 a DT
## 1041 d1 1041 while IN
## 1042 d1 1042 . .
## 1043 d1 1043 To TO
## 1044 d1 1044 everyone's NN
## 1045 d1 1045 surprise NN
## 1046 d1 1046 , ,
## 1047 d1 1047 and CC
## 1048 d1 1048 amid IN
## 1049 d1 1049 a DT
## 1050 d1 1050 cloud NN
## 1051 d1 1051 of IN
## 1052 d1 1052 suspicion NN
## 1053 d1 1053 , ,
## 1054 d1 1054 Frank NNP
## 1055 d1 1055 Bryce NNP
## 1056 d1 1056 returned VBN
## 1057 d1 1057 to TO
## 1058 d1 1058 his PRP$
## 1059 d1 1059 cottage NN
## 1060 d1 1060 on IN
## 1061 d1 1061 the DT
## 1062 d1 1062 grounds NNS
## 1063 d1 1063 of IN
## 1064 d1 1064 the DT
## 1065 d1 1065 Riddle NN
## 1066 d1 1066 House NNP
## 1067 d1 1067 . .
## 1068 d1 1068 '' ''
## 1069 d1 1069 far RB
## 1070 d1 1070 as IN
## 1071 d1 1071 I'm NNP
## 1072 d1 1072 concerned VBN
## 1073 d1 1073 , ,
## 1074 d1 1074 he PRP
## 1075 d1 1075 killed VBN
## 1076 d1 1076 them PRP
## 1077 d1 1077 , ,
## 1078 d1 1078 and CC
## 1079 d1 1079 I PRP
## 1080 d1 1080 don't NN
## 1081 d1 1081 care NN
## 1082 d1 1082 what WP
## 1083 d1 1083 the DT
## 1084 d1 1084 police NN
## 1085 d1 1085 say VBP
## 1086 d1 1086 , ,
## 1087 d1 1087 '' ''
## 1088 d1 1088 Dot VBP
## 1089 d1 1089 in IN
## 1090 d1 1090 the DT
## 1091 d1 1091 Hanged VBN
## 1092 d1 1092 Man NN
## 1093 d1 1093 . .
## 1094 d1 1094 '' ''
## 1095 d1 1095 if IN
## 1096 d1 1096 he PRP
## 1097 d1 1097 had VBD
## 1098 d1 1098 any DT
## 1099 d1 1099 decency NN
## 1100 d1 1100 , ,
## 1101 d1 1101 he'd NN
## 1102 d1 1102 leave VB
## 1103 d1 1103 here RB
## 1104 d1 1104 , ,
## 1105 d1 1105 knowing VBG
## 1106 d1 1106 as IN
## 1107 d1 1107 how WRB
## 1108 d1 1108 we PRP
## 1109 d1 1109 knows VBZ
## 1110 d1 1110 he PRP
## 1111 d1 1111 did VBD
## 1112 d1 1112 it PRP
## 1113 d1 1113 . .
## 1114 d1 1114 '' ''
## 1115 d1 1115 Frank NNP
## 1116 d1 1116 did VBD
## 1117 d1 1117 not RB
## 1118 d1 1118 leave VB
## 1119 d1 1119 . .
## 1120 d1 1120 He PRP
## 1121 d1 1121 stayed VBD
## 1122 d1 1122 to TO
## 1123 d1 1123 tend VBP
## 1124 d1 1124 the DT
## 1125 d1 1125 garden NN
## 1126 d1 1126 for IN
## 1127 d1 1127 the DT
## 1128 d1 1128 next JJ
## 1129 d1 1129 family NN
## 1130 d1 1130 who WP
## 1131 d1 1131 lived VBD
## 1132 d1 1132 in IN
## 1133 d1 1133 the DT
## 1134 d1 1134 Riddle NN
## 1135 d1 1135 House NNP
## 1136 d1 1136 , ,
## 1137 d1 1137 and CC
## 1138 d1 1138 then RB
## 1139 d1 1139 the DT
## 1140 d1 1140 next JJ
## 1141 d1 1141 - :
## 1142 d1 1142 - :
## 1143 d1 1143 for IN
## 1144 d1 1144 neither DT
## 1145 d1 1145 family NN
## 1146 d1 1146 stayed VBD
## 1147 d1 1147 long JJ
## 1148 d1 1148 . .
## 1149 d1 1149 Perhaps RB
## 1150 d1 1150 it PRP
## 1151 d1 1151 was VBD
## 1152 d1 1152 partly RB
## 1153 d1 1153 because IN
## 1154 d1 1154 of IN
## 1155 d1 1155 Frank NNP
## 1156 d1 1156 that IN
## 1157 d1 1157 the DT
## 1158 d1 1158 new JJ
## 1159 d1 1159 owners NNS
## 1160 d1 1160 said VBD
## 1161 d1 1161 there EX
## 1162 d1 1162 was VBD
## 1163 d1 1163 a DT
## 1164 d1 1164 nasty JJ
## 1165 d1 1165 feeling NN
## 1166 d1 1166 about IN
## 1167 d1 1167 the DT
## 1168 d1 1168 place NN
## 1169 d1 1169 , ,
## 1170 d1 1170 which WDT
## 1171 d1 1171 , ,
## 1172 d1 1172 in IN
## 1173 d1 1173 the DT
## 1174 d1 1174 absence NN
## 1175 d1 1175 of IN
## 1176 d1 1176 inhabitants NNS
## 1177 d1 1177 , ,
## 1178 d1 1178 started VBD
## 1179 d1 1179 to TO
## 1180 d1 1180 fall NN
## 1181 d1 1181 into IN
## 1182 d1 1182 disrepair NN
## 1183 d1 1183 . .
## 1184 d1 1184 The NNP
## 1185 d1 1185 wealthy JJ
## 1186 d1 1186 man NN
## 1187 d1 1187 who WP
## 1188 d1 1188 owned VBN
## 1189 d1 1189 the DT
## 1190 d1 1190 Riddle NN
## 1191 d1 1191 House NNP
## 1192 d1 1192 these DT
## 1193 d1 1193 days NNS
## 1194 d1 1194 neither DT
## 1195 d1 1195 lived VBD
## 1196 d1 1196 there EX
## 1197 d1 1197 nor CC
## 1198 d1 1198 put VB
## 1199 d1 1199 it PRP
## 1200 d1 1200 to TO
## 1201 d1 1201 any DT
## 1202 d1 1202 use NN
## 1203 d1 1203 ; :
## 1204 d1 1204 they PRP
## 1205 d1 1205 said VBD
## 1206 d1 1206 in IN
## 1207 d1 1207 the DT
## 1208 d1 1208 village NN
## 1209 d1 1209 that IN
## 1210 d1 1210 he PRP
## 1211 d1 1211 kept VBD
## 1212 d1 1212 it PRP
## 1213 d1 1213 for IN
## 1214 d1 1214 '' ''
## 1215 d1 1215 reasons NNS
## 1216 d1 1216 , ,
## 1217 d1 1217 '' ''
## 1218 d1 1218 though IN
## 1219 d1 1219 nobody NN
## 1220 d1 1220 was VBD
## 1221 d1 1221 very RB
## 1222 d1 1222 clear JJ
## 1223 d1 1223 what WP
## 1224 d1 1224 these DT
## 1225 d1 1225 might MD
## 1226 d1 1226 be VB
## 1227 d1 1227 . .
## 1228 d1 1228 The DT
## 1229 d1 1229 wealthy JJ
## 1230 d1 1230 owner NN
## 1231 d1 1231 continued VBD
## 1232 d1 1232 to TO
## 1233 d1 1233 pay VB
## 1234 d1 1234 Frank NNP
## 1235 d1 1235 to TO
## 1236 d1 1236 do VBP
## 1237 d1 1237 the DT
## 1238 d1 1238 gardening NN
## 1239 d1 1239 , ,
## 1240 d1 1240 however RB
## 1241 d1 1241 . .
## 1242 d1 1242 Frank NNP
## 1243 d1 1243 was VBD
## 1244 d1 1244 nearing VBG
## 1245 d1 1245 his PRP$
## 1246 d1 1246 seventy CD
## 1247 d1 1247 - :
## 1248 d1 1248 seventh JJ
## 1249 d1 1249 birthday NN
## 1250 d1 1250 now RB
## 1251 d1 1251 , ,
## 1252 d1 1252 very RB
## 1253 d1 1253 deaf JJ
## 1254 d1 1254 , ,
## 1255 d1 1255 his PRP$
## 1256 d1 1256 bad JJ
## 1257 d1 1257 leg NN
## 1258 d1 1258 stiffer JJR
## 1259 d1 1259 than IN
## 1260 d1 1260 ever RB
## 1261 d1 1261 , ,
## 1262 d1 1262 but CC
## 1263 d1 1263 could MD
## 1264 d1 1264 be VB
## 1265 d1 1265 seen VBN
## 1266 d1 1266 pottering VBG
## 1267 d1 1267 around IN
## 1268 d1 1268 the DT
## 1269 d1 1269 flower NN
## 1270 d1 1270 beds NNS
## 1271 d1 1271 in IN
## 1272 d1 1272 fine NN
## 1273 d1 1273 weather NN
## 1274 d1 1274 , ,
## 1275 d1 1275 even RB
## 1276 d1 1276 though IN
## 1277 d1 1277 the DT
## 1278 d1 1278 weeds NNS
## 1279 d1 1279 were VBD
## 1280 d1 1280 starting VBG
## 1281 d1 1281 to TO
## 1282 d1 1282 creep NN
## 1283 d1 1283 up RP
## 1284 d1 1284 on IN
## 1285 d1 1285 him PRP
## 1286 d1 1286 , ,
## 1287 d1 1287 try VB
## 1288 d1 1288 as IN
## 1289 d1 1289 he PRP
## 1290 d1 1290 might MD
## 1291 d1 1291 to TO
## 1292 d1 1292 suppress VB
## 1293 d1 1293 them PRP
## 1294 d1 1294 . .
## 1295 d1 1295 Weeds NNS
## 1296 d1 1296 were VBD
## 1297 d1 1297 not RB
## 1298 d1 1298 the DT
## 1299 d1 1299 only RB
## 1300 d1 1300 things NNS
## 1301 d1 1301 Frank NNP
## 1302 d1 1302 had VBD
## 1303 d1 1303 to TO
## 1304 d1 1304 contend VBP
## 1305 d1 1305 with IN
## 1306 d1 1306 either CC
## 1307 d1 1307 . .
## 1308 d1 1308 Boys NNPS
## 1309 d1 1309 from IN
## 1310 d1 1310 the DT
## 1311 d1 1311 village NN
## 1312 d1 1312 made VBN
## 1313 d1 1313 a DT
## 1314 d1 1314 habit NN
## 1315 d1 1315 of IN
## 1316 d1 1316 throwing VBG
## 1317 d1 1317 stones NNS
## 1318 d1 1318 through IN
## 1319 d1 1319 the DT
## 1320 d1 1320 windows NNS
## 1321 d1 1321 of IN
## 1322 d1 1322 the DT
## 1323 d1 1323 Riddle NN
## 1324 d1 1324 House NNP
## 1325 d1 1325 . .
## 1326 d1 1326 They PRP
## 1327 d1 1327 rode VBD
## 1328 d1 1328 their PRP$
## 1329 d1 1329 bicycles NNS
## 1330 d1 1330 over IN
## 1331 d1 1331 the DT
## 1332 d1 1332 lawns NNS
## 1333 d1 1333 Frank NNP
## 1334 d1 1334 worked VBD
## 1335 d1 1335 so RB
## 1336 d1 1336 hard JJ
## 1337 d1 1337 to TO
## 1338 d1 1338 keep VB
## 1339 d1 1339 smooth JJ
## 1340 d1 1340 . .
## 1341 d1 1341 Once RB
## 1342 d1 1342 or CC
## 1343 d1 1343 twice RB
## 1344 d1 1344 , ,
## 1345 d1 1345 they PRP
## 1346 d1 1346 broke VBD
## 1347 d1 1347 into IN
## 1348 d1 1348 the DT
## 1349 d1 1349 old JJ
## 1350 d1 1350 house NN
## 1351 d1 1351 for IN
## 1352 d1 1352 a DT
## 1353 d1 1353 dare MD
## 1354 d1 1354 . .
## 1355 d1 1355 They PRP
## 1356 d1 1356 knew VBD
## 1357 d1 1357 that IN
## 1358 d1 1358 old JJ
## 1359 d1 1359 Frank's NNP
## 1360 d1 1360 devotion NN
## 1361 d1 1361 to TO
## 1362 d1 1362 the DT
## 1363 d1 1363 house NN
## 1364 d1 1364 and CC
## 1365 d1 1365 the DT
## 1366 d1 1366 grounds NNS
## 1367 d1 1367 amounted VBD
## 1368 d1 1368 almost RB
## 1369 d1 1369 to TO
## 1370 d1 1370 an DT
## 1371 d1 1371 obsession NN
## 1372 d1 1372 , ,
## 1373 d1 1373 and CC
## 1374 d1 1374 it PRP
## 1375 d1 1375 amused VBN
## 1376 d1 1376 them PRP
## 1377 d1 1377 to TO
## 1378 d1 1378 see VB
## 1379 d1 1379 him PRP
## 1380 d1 1380 limping VBG
## 1381 d1 1381 across IN
## 1382 d1 1382 the DT
## 1383 d1 1383 garden NN
## 1384 d1 1384 , ,
## 1385 d1 1385 brandishing VBG
## 1386 d1 1386 his PRP$
## 1387 d1 1387 stick VB
## 1388 d1 1388 and CC
## 1389 d1 1389 yelling VBG
## 1390 d1 1390 croakily RB
## 1391 d1 1391 at IN
## 1392 d1 1392 them PRP
## 1393 d1 1393 . .
## 1394 d1 1394 Frank NNP
## 1395 d1 1395 , ,
## 1396 d1 1396 for IN
## 1397 d1 1397 his PRP$
## 1398 d1 1398 part NN
## 1399 d1 1399 , ,
## 1400 d1 1400 believed VBN
## 1401 d1 1401 the DT
## 1402 d1 1402 boys NNS
## 1403 d1 1403 tormented JJ
## 1404 d1 1404 him PRP
## 1405 d1 1405 because IN
## 1406 d1 1406 they PRP
## 1407 d1 1407 , ,
## 1408 d1 1408 like IN
## 1409 d1 1409 their PRP$
## 1410 d1 1410 parents NNS
## 1411 d1 1411 and CC
## 1412 d1 1412 grandparents NNS
## 1413 d1 1413 , ,
## 1414 d1 1414 though IN
## 1415 d1 1415 him PRP
## 1416 d1 1416 a DT
## 1417 d1 1417 murderer NN
## 1418 d1 1418 . .
## 1419 d1 1419 So RB
## 1420 d1 1420 when WRB
## 1421 d1 1421 Frank NNP
## 1422 d1 1422 awoke VBD
## 1423 d1 1423 one CD
## 1424 d1 1424 night NN
## 1425 d1 1425 in IN
## 1426 d1 1426 August NNP
## 1427 d1 1427 and CC
## 1428 d1 1428 saw VBD
## 1429 d1 1429 something NN
## 1430 d1 1430 very RB
## 1431 d1 1431 odd JJ
## 1432 d1 1432 up RP
## 1433 d1 1433 at IN
## 1434 d1 1434 the DT
## 1435 d1 1435 old JJ
## 1436 d1 1436 house NN
## 1437 d1 1437 , ,
## 1438 d1 1438 he PRP
## 1439 d1 1439 merely RB
## 1440 d1 1440 assumed VBD
## 1441 d1 1441 that IN
## 1442 d1 1442 the DT
## 1443 d1 1443 boys NNS
## 1444 d1 1444 had VBD
## 1445 d1 1445 gone VBN
## 1446 d1 1446 one CD
## 1447 d1 1447 step NN
## 1448 d1 1448 further JJ
## 1449 d1 1449 in IN
## 1450 d1 1450 their PRP$
## 1451 d1 1451 attempts NNS
## 1452 d1 1452 to TO
## 1453 d1 1453 punish VB
## 1454 d1 1454 him PRP
## 1455 d1 1455 . .
## 1456 d1 1456 It NN
## 1457 d1 1457 was VBD
## 1458 d1 1458 Frank's NNP
## 1459 d1 1459 bad JJ
## 1460 d1 1460 leg NN
## 1461 d1 1461 that IN
## 1462 d1 1462 woke VBD
## 1463 d1 1463 him PRP
## 1464 d1 1464 ; :
## 1465 d1 1465 it PRP
## 1466 d1 1466 was VBD
## 1467 d1 1467 paining VBG
## 1468 d1 1468 him PRP
## 1469 d1 1469 worse JJR
## 1470 d1 1470 than IN
## 1471 d1 1471 ever RB
## 1472 d1 1472 in IN
## 1473 d1 1473 his PRP$
## 1474 d1 1474 old JJ
## 1475 d1 1475 age NN
## 1476 d1 1476 . .
## 1477 d1 1477 He PRP
## 1478 d1 1478 got VBD
## 1479 d1 1479 up RP
## 1480 d1 1480 and CC
## 1481 d1 1481 limped VBN
## 1482 d1 1482 downstairs NNS
## 1483 d1 1483 into IN
## 1484 d1 1484 the DT
## 1485 d1 1485 kitchen NN
## 1486 d1 1486 with IN
## 1487 d1 1487 the DT
## 1488 d1 1488 idea NN
## 1489 d1 1489 of IN
## 1490 d1 1490 refilling VBG
## 1491 d1 1491 his PRP$
## 1492 d1 1492 hot JJ
## 1493 d1 1493 - :
## 1494 d1 1494 water NN
## 1495 d1 1495 bottle NN
## 1496 d1 1496 to TO
## 1497 d1 1497 ease VB
## 1498 d1 1498 the DT
## 1499 d1 1499 stiffness NN
## 1500 d1 1500 in IN
## 1501 d1 1501 his PRP$
## 1502 d1 1502 knee NN
## 1503 d1 1503 . .
## 1504 d1 1504 Standing VBG
## 1505 d1 1505 at IN
## 1506 d1 1506 the DT
## 1507 d1 1507 sink VB
## 1508 d1 1508 , ,
## 1509 d1 1509 filling VBG
## 1510 d1 1510 the DT
## 1511 d1 1511 kettle NN
## 1512 d1 1512 , ,
## 1513 d1 1513 he PRP
## 1514 d1 1514 looked VBD
## 1515 d1 1515 up RP
## 1516 d1 1516 at IN
## 1517 d1 1517 the DT
## 1518 d1 1518 Riddle NN
## 1519 d1 1519 House NNP
## 1520 d1 1520 and CC
## 1521 d1 1521 saw VBD
## 1522 d1 1522 lights NNS
## 1523 d1 1523 glimmering VBG
## 1524 d1 1524 in IN
## 1525 d1 1525 its PRP$
## 1526 d1 1526 upper JJ
## 1527 d1 1527 windows NNS
## 1528 d1 1528 . .
## 1529 d1 1529 Frank NNP
## 1530 d1 1530 knew VBD
## 1531 d1 1531 at IN
## 1532 d1 1532 once RB
## 1533 d1 1533 what WP
## 1534 d1 1534 was VBD
## 1535 d1 1535 going VBG
## 1536 d1 1536 on IN
## 1537 d1 1537 . .
## 1538 d1 1538 The DT
## 1539 d1 1539 boys NNS
## 1540 d1 1540 had VBD
## 1541 d1 1541 broken VBN
## 1542 d1 1542 into IN
## 1543 d1 1543 the DT
## 1544 d1 1544 house NN
## 1545 d1 1545 again RB
## 1546 d1 1546 , ,
## 1547 d1 1547 and CC
## 1548 d1 1548 judging VBG
## 1549 d1 1549 by IN
## 1550 d1 1550 the DT
## 1551 d1 1551 flickering VBG
## 1552 d1 1552 quality NN
## 1553 d1 1553 of IN
## 1554 d1 1554 the DT
## 1555 d1 1555 light JJ
## 1556 d1 1556 , ,
## 1557 d1 1557 they PRP
## 1558 d1 1558 had VBD
## 1559 d1 1559 started VBD
## 1560 d1 1560 a DT
## 1561 d1 1561 fire NN
## 1562 d1 1562 . .
## 1563 d1 1563 Frank NNP
## 1564 d1 1564 had VBD
## 1565 d1 1565 no DT
## 1566 d1 1566 telephone NN
## 1567 d1 1567 , ,
## 1568 d1 1568 in IN
## 1569 d1 1569 any DT
## 1570 d1 1570 case NN
## 1571 d1 1571 , ,
## 1572 d1 1572 he PRP
## 1573 d1 1573 had VBD
## 1574 d1 1574 deeply RB
## 1575 d1 1575 mistrusted VBN
## 1576 d1 1576 the DT
## 1577 d1 1577 police NN
## 1578 d1 1578 ever RB
## 1579 d1 1579 since IN
## 1580 d1 1580 they PRP
## 1581 d1 1581 had VBD
## 1582 d1 1582 taken VBN
## 1583 d1 1583 him PRP
## 1584 d1 1584 in IN
## 1585 d1 1585 for IN
## 1586 d1 1586 questioning VBG
## 1587 d1 1587 about IN
## 1588 d1 1588 the DT
## 1589 d1 1589 Riddles' NNP
## 1590 d1 1590 deaths NNS
## 1591 d1 1591 . .
## 1592 d1 1592 He PRP
## 1593 d1 1593 put VB
## 1594 d1 1594 down RB
## 1595 d1 1595 the DT
## 1596 d1 1596 kettle NN
## 1597 d1 1597 at IN
## 1598 d1 1598 once RB
## 1599 d1 1599 , ,
## 1600 d1 1600 hurried VBN
## 1601 d1 1601 back RB
## 1602 d1 1602 upstairs NN
## 1603 d1 1603 as IN
## 1604 d1 1604 fast RB
## 1605 d1 1605 as IN
## 1606 d1 1606 his PRP$
## 1607 d1 1607 bad JJ
## 1608 d1 1608 leg NN
## 1609 d1 1609 would MD
## 1610 d1 1610 allow VB
## 1611 d1 1611 , ,
## 1612 d1 1612 and CC
## 1613 d1 1613 was VBD
## 1614 d1 1614 soon RB
## 1615 d1 1615 back RB
## 1616 d1 1616 in IN
## 1617 d1 1617 his PRP$
## 1618 d1 1618 kitchen NN
## 1619 d1 1619 , ,
## 1620 d1 1620 fully RB
## 1621 d1 1621 dressed VBN
## 1622 d1 1622 and CC
## 1623 d1 1623 removing VBG
## 1624 d1 1624 a DT
## 1625 d1 1625 rusty JJ
## 1626 d1 1626 old JJ
## 1627 d1 1627 key JJ
## 1628 d1 1628 from IN
## 1629 d1 1629 its PRP$
## 1630 d1 1630 hook NN
## 1631 d1 1631 by IN
## 1632 d1 1632 the DT
## 1633 d1 1633 door NN
## 1634 d1 1634 . .
## 1635 d1 1635 He PRP
## 1636 d1 1636 picked VBD
## 1637 d1 1637 up RP
## 1638 d1 1638 his PRP$
## 1639 d1 1639 walking VBG
## 1640 d1 1640 stick VB
## 1641 d1 1641 , ,
## 1642 d1 1642 which WDT
## 1643 d1 1643 was VBD
## 1644 d1 1644 propped VBD
## 1645 d1 1645 against IN
## 1646 d1 1646 the DT
## 1647 d1 1647 wall NN
## 1648 d1 1648 , ,
## 1649 d1 1649 and CC
## 1650 d1 1650 set VBN
## 1651 d1 1651 off RP
## 1652 d1 1652 into IN
## 1653 d1 1653 the DT
## 1654 d1 1654 night NN
## 1655 d1 1655 . .
## 1656 d1 1656 The NNP
## 1657 d1 1657 front NN
## 1658 d1 1658 door NN
## 1659 d1 1659 of IN
## 1660 d1 1660 the DT
## 1661 d1 1661 Riddle NN
## 1662 d1 1662 House NNP
## 1663 d1 1663 bore VBD
## 1664 d1 1664 no DT
## 1665 d1 1665 sign NN
## 1666 d1 1666 of IN
## 1667 d1 1667 being VBG
## 1668 d1 1668 forced VBN
## 1669 d1 1669 , ,
## 1670 d1 1670 nor CC
## 1671 d1 1671 did VBD
## 1672 d1 1672 any DT
## 1673 d1 1673 of IN
## 1674 d1 1674 the DT
## 1675 d1 1675 windows NNS
## 1676 d1 1676 . .
## 1677 d1 1677 Frank NNP
## 1678 d1 1678 limped VBN
## 1679 d1 1679 around IN
## 1680 d1 1680 to TO
## 1681 d1 1681 the DT
## 1682 d1 1682 back RB
## 1683 d1 1683 of IN
## 1684 d1 1684 the DT
## 1685 d1 1685 house NN
## 1686 d1 1686 until IN
## 1687 d1 1687 he PRP
## 1688 d1 1688 reached VBN
## 1689 d1 1689 a DT
## 1690 d1 1690 door NN
## 1691 d1 1691 almost RB
## 1692 d1 1692 completely RB
## 1693 d1 1693 hidden VBN
## 1694 d1 1694 by IN
## 1695 d1 1695 ivy NN
## 1696 d1 1696 , ,
## 1697 d1 1697 took VBD
## 1698 d1 1698 out RP
## 1699 d1 1699 the DT
## 1700 d1 1700 old JJ
## 1701 d1 1701 key JJ
## 1702 d1 1702 , ,
## 1703 d1 1703 put VB
## 1704 d1 1704 it PRP
## 1705 d1 1705 into IN
## 1706 d1 1706 the DT
## 1707 d1 1707 lock VB
## 1708 d1 1708 , ,
## 1709 d1 1709 and CC
## 1710 d1 1710 opened VBD
## 1711 d1 1711 the DT
## 1712 d1 1712 door NN
## 1713 d1 1713 noiselessly RB
## 1714 d1 1714 . .
## 1715 d1 1715 He NN
## 1716 d1 1716 let VB
## 1717 d1 1717 himself PRP
## 1718 d1 1718 into IN
## 1719 d1 1719 the DT
## 1720 d1 1720 cavernous JJ
## 1721 d1 1721 kitchen NN
## 1722 d1 1722 . .
## 1723 d1 1723 Frank NNP
## 1724 d1 1724 had VBD
## 1725 d1 1725 not RB
## 1726 d1 1726 entered VBD
## 1727 d1 1727 it PRP
## 1728 d1 1728 for IN
## 1729 d1 1729 many JJ
## 1730 d1 1730 years NNS
## 1731 d1 1731 ; :
## 1732 d1 1732 nevertheless RB
## 1733 d1 1733 , ,
## 1734 d1 1734 although IN
## 1735 d1 1735 it PRP
## 1736 d1 1736 was VBD
## 1737 d1 1737 very RB
## 1738 d1 1738 dark JJ
## 1739 d1 1739 , ,
## 1740 d1 1740 he PRP
## 1741 d1 1741 remembered VBD
## 1742 d1 1742 where WRB
## 1743 d1 1743 the DT
## 1744 d1 1744 door NN
## 1745 d1 1745 into IN
## 1746 d1 1746 the DT
## 1747 d1 1747 hall NN
## 1748 d1 1748 was VBD
## 1749 d1 1749 , ,
## 1750 d1 1750 and CC
## 1751 d1 1751 he PRP
## 1752 d1 1752 groped JJ
## 1753 d1 1753 his PRP$
## 1754 d1 1754 way NN
## 1755 d1 1755 towards IN
## 1756 d1 1756 it PRP
## 1757 d1 1757 , ,
## 1758 d1 1758 his PRP$
## 1759 d1 1759 nostrils NNS
## 1760 d1 1760 full JJ
## 1761 d1 1761 of IN
## 1762 d1 1762 the DT
## 1763 d1 1763 smell NN
## 1764 d1 1764 of IN
## 1765 d1 1765 decay NN
## 1766 d1 1766 , ,
## 1767 d1 1767 ears NNS
## 1768 d1 1768 pricked VBN
## 1769 d1 1769 for IN
## 1770 d1 1770 any DT
## 1771 d1 1771 sound NN
## 1772 d1 1772 of IN
## 1773 d1 1773 footsteps NNS
## 1774 d1 1774 or CC
## 1775 d1 1775 voices NNS
## 1776 d1 1776 from IN
## 1777 d1 1777 overhead NN
## 1778 d1 1778 . .
## 1779 d1 1779 He PRP
## 1780 d1 1780 reached VBN
## 1781 d1 1781 the DT
## 1782 d1 1782 hall NN
## 1783 d1 1783 , ,
## 1784 d1 1784 which WDT
## 1785 d1 1785 was VBD
## 1786 d1 1786 a DT
## 1787 d1 1787 little JJ
## 1788 d1 1788 lighter JJR
## 1789 d1 1789 owing VBG
## 1790 d1 1790 to TO
## 1791 d1 1791 the DT
## 1792 d1 1792 large JJ
## 1793 d1 1793 mullioned VBN
## 1794 d1 1794 windows NNS
## 1795 d1 1795 on IN
## 1796 d1 1796 either CC
## 1797 d1 1797 side NN
## 1798 d1 1798 of IN
## 1799 d1 1799 the DT
## 1800 d1 1800 front NN
## 1801 d1 1801 door NN
## 1802 d1 1802 , ,
## 1803 d1 1803 and CC
## 1804 d1 1804 started VBD
## 1805 d1 1805 to TO
## 1806 d1 1806 climb NN
## 1807 d1 1807 the DT
## 1808 d1 1808 stairs NNS
## 1809 d1 1809 , ,
## 1810 d1 1810 blessing NN
## 1811 d1 1811 the DT
## 1812 d1 1812 dust NN
## 1813 d1 1813 that IN
## 1814 d1 1814 lay VBD
## 1815 d1 1815 thick JJ
## 1816 d1 1816 upon IN
## 1817 d1 1817 the DT
## 1818 d1 1818 stone NN
## 1819 d1 1819 , ,
## 1820 d1 1820 because IN
## 1821 d1 1821 it PRP
## 1822 d1 1822 muffled VBN
## 1823 d1 1823 the DT
## 1824 d1 1824 sound NN
## 1825 d1 1825 of IN
## 1826 d1 1826 his PRP$
## 1827 d1 1827 feet NNS
## 1828 d1 1828 and CC
## 1829 d1 1829 stick VB
## 1830 d1 1830 . .
## 1831 d1 1831 On NN
## 1832 d1 1832 the DT
## 1833 d1 1833 landing NN
## 1834 d1 1834 , ,
## 1835 d1 1835 Frank NNP
## 1836 d1 1836 turned VBD
## 1837 d1 1837 right NN
## 1838 d1 1838 , ,
## 1839 d1 1839 and CC
## 1840 d1 1840 saw VBD
## 1841 d1 1841 at IN
## 1842 d1 1842 once RB
## 1843 d1 1843 where WRB
## 1844 d1 1844 the DT
## 1845 d1 1845 intruders NNS
## 1846 d1 1846 were VBD
## 1847 d1 1847 : :
## 1848 d1 1848 At IN
## 1849 d1 1849 the DT
## 1850 d1 1850 every DT
## 1851 d1 1851 end NN
## 1852 d1 1852 of IN
## 1853 d1 1853 the DT
## 1854 d1 1854 passage NN
## 1855 d1 1855 a DT
## 1856 d1 1856 door NN
## 1857 d1 1857 stood VBD
## 1858 d1 1858 ajar JJ
## 1859 d1 1859 , ,
## 1860 d1 1860 and CC
## 1861 d1 1861 a DT
## 1862 d1 1862 flickering VBG
## 1863 d1 1863 light JJ
## 1864 d1 1864 shone JJ
## 1865 d1 1865 through IN
## 1866 d1 1866 the DT
## 1867 d1 1867 gap NN
## 1868 d1 1868 , ,
## 1869 d1 1869 casting VBG
## 1870 d1 1870 a DT
## 1871 d1 1871 long JJ
## 1872 d1 1872 sliver NN
## 1873 d1 1873 of IN
## 1874 d1 1874 gold NN
## 1875 d1 1875 across IN
## 1876 d1 1876 the DT
## 1877 d1 1877 black JJ
## 1878 d1 1878 floor NN
## 1879 d1 1879 . .
## 1880 d1 1880 Frank NNP
## 1881 d1 1881 edged VBD
## 1882 d1 1882 closer JJR
## 1883 d1 1883 and CC
## 1884 d1 1884 closer JJR
## 1885 d1 1885 , ,
## 1886 d1 1886 he PRP
## 1887 d1 1887 was VBD
## 1888 d1 1888 able JJ
## 1889 d1 1889 to TO
## 1890 d1 1890 see VB
## 1891 d1 1891 a DT
## 1892 d1 1892 narrow JJ
## 1893 d1 1893 slice NN
## 1894 d1 1894 of IN
## 1895 d1 1895 the DT
## 1896 d1 1896 room NN
## 1897 d1 1897 beyond IN
## 1898 d1 1898 . .
## 1899 d1 1899 The NNP
## 1900 d1 1900 fire NN
## 1901 d1 1901 , ,
## 1902 d1 1902 he PRP
## 1903 d1 1903 now RB
## 1904 d1 1904 saw VBD
## 1905 d1 1905 , ,
## 1906 d1 1906 had VBD
## 1907 d1 1907 been VBN
## 1908 d1 1908 lit VBD
## 1909 d1 1909 in IN
## 1910 d1 1910 the DT
## 1911 d1 1911 grate JJ
## 1912 d1 1912 . .
## 1913 d1 1913 This DT
## 1914 d1 1914 surprised VBN
## 1915 d1 1915 him PRP
## 1916 d1 1916 . .
## 1917 d1 1917 Then RB
## 1918 d1 1918 he PRP
## 1919 d1 1919 stopped VBD
## 1920 d1 1920 moving VBG
## 1921 d1 1921 and CC
## 1922 d1 1922 listened VBD
## 1923 d1 1923 intently RB
## 1924 d1 1924 , ,
## 1925 d1 1925 for IN
## 1926 d1 1926 a DT
## 1927 d1 1927 man's NN
## 1928 d1 1928 voice NN
## 1929 d1 1929 spoke VBD
## 1930 d1 1930 within IN
## 1931 d1 1931 the DT
## 1932 d1 1932 room NN
## 1933 d1 1933 ; :
## 1934 d1 1934 it PRP
## 1935 d1 1935 sounded VBD
## 1936 d1 1936 timid JJ
## 1937 d1 1937 and CC
## 1938 d1 1938 fearful JJ
## 1939 d1 1939 . .
## 1940 d1 1940 '' ''
## 1941 d1 1941 is VBZ
## 1942 d1 1942 a DT
## 1943 d1 1943 little JJ
## 1944 d1 1944 more JJR
## 1945 d1 1945 in IN
## 1946 d1 1946 the DT
## 1947 d1 1947 bottle NN
## 1948 d1 1948 , ,
## 1949 d1 1949 My PRP$
## 1950 d1 1950 Lord NNP
## 1951 d1 1951 , ,
## 1952 d1 1952 if IN
## 1953 d1 1953 you PRP
## 1954 d1 1954 are VBP
## 1955 d1 1955 still RB
## 1956 d1 1956 hungry JJ
## 1957 d1 1957 . .
## 1958 d1 1958 '' ''
## 1959 d1 1959 , ,
## 1960 d1 1960 '' ''
## 1961 d1 1961 said VBD
## 1962 d1 1962 a DT
## 1963 d1 1963 second JJ
## 1964 d1 1964 voice NN
## 1965 d1 1965 . .
## 1966 d1 1966 This DT
## 1967 d1 1967 too RB
## 1968 d1 1968 belonged VBD
## 1969 d1 1969 to TO
## 1970 d1 1970 a DT
## 1971 d1 1971 man NN
## 1972 d1 1972 - :
## 1973 d1 1973 - :
## 1974 d1 1974 but CC
## 1975 d1 1975 it PRP
## 1976 d1 1976 was VBD
## 1977 d1 1977 strangely RB
## 1978 d1 1978 high JJ
## 1979 d1 1979 - :
## 1980 d1 1980 pitched VBD
## 1981 d1 1981 , ,
## 1982 d1 1982 and CC
## 1983 d1 1983 cold JJ
## 1984 d1 1984 as IN
## 1985 d1 1985 a DT
## 1986 d1 1986 sudden JJ
## 1987 d1 1987 blast NN
## 1988 d1 1988 of IN
## 1989 d1 1989 icy NN
## 1990 d1 1990 wind NN
## 1991 d1 1991 . .
## 1992 d1 1992 Something NN
## 1993 d1 1993 about IN
## 1994 d1 1994 that IN
## 1995 d1 1995 voice NN
## 1996 d1 1996 made VBN
## 1997 d1 1997 the DT
## 1998 d1 1998 sparse NN
## 1999 d1 1999 hairs NNS
## 2000 d1 2000 on IN
## 2001 d1 2001 the DT
## 2002 d1 2002 back RB
## 2003 d1 2003 of IN
## 2004 d1 2004 Frank's NNP
## 2005 d1 2005 neck NN
## 2006 d1 2006 stand VBP
## 2007 d1 2007 up RP
## 2008 d1 2008 . .
## 2009 d1 2009 '' ''
## 2010 d1 2010 me PRP
## 2011 d1 2011 closer JJR
## 2012 d1 2012 to TO
## 2013 d1 2013 the DT
## 2014 d1 2014 fire NN
## 2015 d1 2015 , ,
## 2016 d1 2016 Wormtail JJ
## 2017 d1 2017 . .
## 2018 d1 2018 '' ''
## 2019 d1 2019 turned VBD
## 2020 d1 2020 his PRP$
## 2021 d1 2021 right NN
## 2022 d1 2022 ear NN
## 2023 d1 2023 toward IN
## 2024 d1 2024 the DT
## 2025 d1 2025 door NN
## 2026 d1 2026 , ,
## 2027 d1 2027 the DT
## 2028 d1 2028 better JJR
## 2029 d1 2029 to TO
## 2030 d1 2030 hear VB
## 2031 d1 2031 . .
## 2032 d1 2032 There EX
## 2033 d1 2033 came VBD
## 2034 d1 2034 the DT
## 2035 d1 2035 clink NN
## 2036 d1 2036 of IN
## 2037 d1 2037 a DT
## 2038 d1 2038 bottle NN
## 2039 d1 2039 being VBG
## 2040 d1 2040 put VB
## 2041 d1 2041 down RB
## 2042 d1 2042 upon IN
## 2043 d1 2043 some DT
## 2044 d1 2044 hard JJ
## 2045 d1 2045 surface NN
## 2046 d1 2046 , ,
## 2047 d1 2047 and CC
## 2048 d1 2048 then RB
## 2049 d1 2049 the DT
## 2050 d1 2050 dull JJ
## 2051 d1 2051 scraping VBG
## 2052 d1 2052 noise NN
## 2053 d1 2053 of IN
## 2054 d1 2054 a DT
## 2055 d1 2055 heavy JJ
## 2056 d1 2056 chair NN
## 2057 d1 2057 being VBG
## 2058 d1 2058 dragged VBN
## 2059 d1 2059 across IN
## 2060 d1 2060 the DT
## 2061 d1 2061 floor NN
## 2062 d1 2062 . .
## 2063 d1 2063 Frank NNP
## 2064 d1 2064 caught VBN
## 2065 d1 2065 a DT
## 2066 d1 2066 glimpse NN
## 2067 d1 2067 of IN
## 2068 d1 2068 a DT
## 2069 d1 2069 small JJ
## 2070 d1 2070 man NN
## 2071 d1 2071 , ,
## 2072 d1 2072 his PRP$
## 2073 d1 2073 back RB
## 2074 d1 2074 to TO
## 2075 d1 2075 the DT
## 2076 d1 2076 door NN
## 2077 d1 2077 , ,
## 2078 d1 2078 pushing VBG
## 2079 d1 2079 the DT
## 2080 d1 2080 chair NN
## 2081 d1 2081 into IN
## 2082 d1 2082 place NN
## 2083 d1 2083 . .
## 2084 d1 2084 He PRP
## 2085 d1 2085 was VBD
## 2086 d1 2086 wearing VBG
## 2087 d1 2087 a DT
## 2088 d1 2088 long JJ
## 2089 d1 2089 black JJ
## 2090 d1 2090 cloak VBP
## 2091 d1 2091 , ,
## 2092 d1 2092 and CC
## 2093 d1 2093 there EX
## 2094 d1 2094 was VBD
## 2095 d1 2095 a DT
## 2096 d1 2096 bald JJ
## 2097 d1 2097 patch NN
## 2098 d1 2098 at IN
## 2099 d1 2099 the DT
## 2100 d1 2100 back RB
## 2101 d1 2101 of IN
## 2102 d1 2102 his PRP$
## 2103 d1 2103 head NN
## 2104 d1 2104 . .
## 2105 d1 2105 Then RB
## 2106 d1 2106 he PRP
## 2107 d1 2107 went VBD
## 2108 d1 2108 out RP
## 2109 d1 2109 of IN
## 2110 d1 2110 sight NN
## 2111 d1 2111 again RB
## 2112 d1 2112 . .
## 2113 d1 2113 '' ''
## 2114 d1 2114 is VBZ
## 2115 d1 2115 Nagini NNP
## 2116 d1 2116 ? .
## 2117 d1 2117 '' ''
## 2118 d1 2118 said VBD
## 2119 d1 2119 the DT
## 2120 d1 2120 cold JJ
## 2121 d1 2121 voice NN
## 2122 d1 2122 . .
## 2123 d1 2123 '' ''
## 2124 d1 2124 - :
## 2125 d1 2125 - :
## 2126 d1 2126 I PRP
## 2127 d1 2127 don't NN
## 2128 d1 2128 know VB
## 2129 d1 2129 , ,
## 2130 d1 2130 My PRP$
## 2131 d1 2131 Lord NNP
## 2132 d1 2132 , ,
## 2133 d1 2133 '' ''
## 2134 d1 2134 said VBD
## 2135 d1 2135 the DT
## 2136 d1 2136 first JJ
## 2137 d1 2137 voice NN
## 2138 d1 2138 nervously RB
## 2139 d1 2139 . .
## 2140 d1 2140 '' ''
## 2141 d1 2141 set VBN
## 2142 d1 2142 out RP
## 2143 d1 2143 to TO
## 2144 d1 2144 explore VB
## 2145 d1 2145 the DT
## 2146 d1 2146 house NN
## 2147 d1 2147 , ,
## 2148 d1 2148 I PRP
## 2149 d1 2149 think VBP
## 2150 d1 2150 . .
## 2151 d1 2151 . .
## 2152 d1 2152 . .
## 2153 d1 2153 '' ''
## 2154 d1 2154 will MD
## 2155 d1 2155 milk NN
## 2156 d1 2156 her PRP$
## 2157 d1 2157 before IN
## 2158 d1 2158 we PRP
## 2159 d1 2159 retire VB
## 2160 d1 2160 , ,
## 2161 d1 2161 Wormtail JJ
## 2162 d1 2162 , ,
## 2163 d1 2163 '' ''
## 2164 d1 2164 said VBD
## 2165 d1 2165 the DT
## 2166 d1 2166 second JJ
## 2167 d1 2167 voice NN
## 2168 d1 2168 . .
## 2169 d1 2169 '' ''
## 2170 d1 2170 will MD
## 2171 d1 2171 need VBP
## 2172 d1 2172 feeding VBG
## 2173 d1 2173 in IN
## 2174 d1 2174 the DT
## 2175 d1 2175 night NN
## 2176 d1 2176 . .
## 2177 d1 2177 The DT
## 2178 d1 2178 journey NN
## 2179 d1 2179 has VBZ
## 2180 d1 2180 tired JJ
## 2181 d1 2181 me PRP
## 2182 d1 2182 greatly RB
## 2183 d1 2183 . .
## 2184 d1 2184 '' ''
## 2185 d1 2185 furrowed VBN
## 2186 d1 2186 , ,
## 2187 d1 2187 Frank NNP
## 2188 d1 2188 inclined VBN
## 2189 d1 2189 his PRP$
## 2190 d1 2190 good JJ
## 2191 d1 2191 ear NN
## 2192 d1 2192 still RB
## 2193 d1 2193 closer JJR
## 2194 d1 2194 to TO
## 2195 d1 2195 the DT
## 2196 d1 2196 door NN
## 2197 d1 2197 , ,
## 2198 d1 2198 listening VBG
## 2199 d1 2199 very RB
## 2200 d1 2200 hard JJ
## 2201 d1 2201 . .
## 2202 d1 2202 There EX
## 2203 d1 2203 was VBD
## 2204 d1 2204 a DT
## 2205 d1 2205 pause NN
## 2206 d1 2206 , ,
## 2207 d1 2207 and CC
## 2208 d1 2208 then RB
## 2209 d1 2209 the DT
## 2210 d1 2210 man NN
## 2211 d1 2211 called VBN
## 2212 d1 2212 Wormtail JJ
## 2213 d1 2213 spoke VBD
## 2214 d1 2214 again RB
## 2215 d1 2215 . .
## 2216 d1 2216 '' ''
## 2217 d1 2217 Lord NNP
## 2218 d1 2218 , ,
## 2219 d1 2219 may MD
## 2220 d1 2220 I PRP
## 2221 d1 2221 ask VB
## 2222 d1 2222 how WRB
## 2223 d1 2223 long JJ
## 2224 d1 2224 we PRP
## 2225 d1 2225 are VBP
## 2226 d1 2226 going VBG
## 2227 d1 2227 to TO
## 2228 d1 2228 stay VB
## 2229 d1 2229 here RB
## 2230 d1 2230 ? .
## 2231 d1 2231 '' ''
## 2232 d1 2232 week NN
## 2233 d1 2233 , ,
## 2234 d1 2234 '' ''
## 2235 d1 2235 said VBD
## 2236 d1 2236 the DT
## 2237 d1 2237 cold JJ
## 2238 d1 2238 voice NN
## 2239 d1 2239 . .
## 2240 d1 2240 '' ''
## 2241 d1 2241 longer RB
## 2242 d1 2242 . .
## 2243 d1 2243 The DT
## 2244 d1 2244 place NN
## 2245 d1 2245 is VBZ
## 2246 d1 2246 moderately RB
## 2247 d1 2247 comfortable JJ
## 2248 d1 2248 , ,
## 2249 d1 2249 and CC
## 2250 d1 2250 the DT
## 2251 d1 2251 plan NN
## 2252 d1 2252 cannot NN
## 2253 d1 2253 proceed VB
## 2254 d1 2254 yet RB
## 2255 d1 2255 . .
## 2256 d1 2256 It PRP
## 2257 d1 2257 would MD
## 2258 d1 2258 be VB
## 2259 d1 2259 foolish JJ
## 2260 d1 2260 to TO
## 2261 d1 2261 act NN
## 2262 d1 2262 before IN
## 2263 d1 2263 the DT
## 2264 d1 2264 Quidditch NN
## 2265 d1 2265 World NNP
## 2266 d1 2266 Cup NNP
## 2267 d1 2267 is VBZ
## 2268 d1 2268 over IN
## 2269 d1 2269 . .
## 2270 d1 2270 '' ''
## 2271 d1 2271 inserted VBN
## 2272 d1 2272 a DT
## 2273 d1 2273 gnarled VBN
## 2274 d1 2274 finger NN
## 2275 d1 2275 into IN
## 2276 d1 2276 his PRP$
## 2277 d1 2277 ear NN
## 2278 d1 2278 and CC
## 2279 d1 2279 rotated VBD
## 2280 d1 2280 it PRP
## 2281 d1 2281 . .
## 2282 d1 2282 Owing VBG
## 2283 d1 2283 , ,
## 2284 d1 2284 no DT
## 2285 d1 2285 doubt NN
## 2286 d1 2286 , ,
## 2287 d1 2287 to TO
## 2288 d1 2288 a DT
## 2289 d1 2289 buildup NN
## 2290 d1 2290 of IN
## 2291 d1 2291 earwax JJ
## 2292 d1 2292 , ,
## 2293 d1 2293 he PRP
## 2294 d1 2294 had VBD
## 2295 d1 2295 heard VBN
## 2296 d1 2296 the DT
## 2297 d1 2297 word NN
## 2298 d1 2298 '' ''
## 2299 d1 2299 , ,
## 2300 d1 2300 '' ''
## 2301 d1 2301 which WDT
## 2302 d1 2302 was VBD
## 2303 d1 2303 not RB
## 2304 d1 2304 a DT
## 2305 d1 2305 word NN
## 2306 d1 2306 at IN
## 2307 d1 2307 all DT
## 2308 d1 2308 . .
## 2309 d1 2309 '' ''
## 2310 d1 2310 - :
## 2311 d1 2311 - :
## 2312 d1 2312 the DT
## 2313 d1 2313 Quidditch NN
## 2314 d1 2314 World NNP
## 2315 d1 2315 Cup NNP
## 2316 d1 2316 , ,
## 2317 d1 2317 My PRP$
## 2318 d1 2318 Lord NNP
## 2319 d1 2319 ? .
## 2320 d1 2320 '' ''
## 2321 d1 2321 said VBD
## 2322 d1 2322 Wormtail JJ
## 2323 d1 2323 . .
## 2324 d1 2324 (Frank NNP
## 2325 d1 2325 dug VBD
## 2326 d1 2326 his PRP$
## 2327 d1 2327 finger NN
## 2328 d1 2328 still RB
## 2329 d1 2329 more JJR
## 2330 d1 2330 vigorously RB
## 2331 d1 2331 into IN
## 2332 d1 2332 his PRP$
## 2333 d1 2333 ear NN
## 2334 d1 2334 . .
## 2335 d1 2335 ) )
## 2336 d1 2336 '' ''
## 2337 d1 2337 me PRP
## 2338 d1 2338 , ,
## 2339 d1 2339 but CC
## 2340 d1 2340 - :
## 2341 d1 2341 - :
## 2342 d1 2342 I PRP
## 2343 d1 2343 do VBP
## 2344 d1 2344 not RB
## 2345 d1 2345 understand VB
## 2346 d1 2346 - :
## 2347 d1 2347 - :
## 2348 d1 2348 why WRB
## 2349 d1 2349 should MD
## 2350 d1 2350 we PRP
## 2351 d1 2351 wait VB
## 2352 d1 2352 until IN
## 2353 d1 2353 the DT
## 2354 d1 2354 World NNP
## 2355 d1 2355 Cup NNP
## 2356 d1 2356 is VBZ
## 2357 d1 2357 over IN
## 2358 d1 2358 ? .
## 2359 d1 2359 '' ''
## 2360 d1 2360 , ,
## 2361 d1 2361 fool NN
## 2362 d1 2362 , ,
## 2363 d1 2363 at IN
## 2364 d1 2364 this DT
## 2365 d1 2365 very RB
## 2366 d1 2366 moment NN
## 2367 d1 2367 wizards NNS
## 2368 d1 2368 are VBP
## 2369 d1 2369 pouring VBG
## 2370 d1 2370 into IN
## 2371 d1 2371 the DT
## 2372 d1 2372 country NN
## 2373 d1 2373 from IN
## 2374 d1 2374 all DT
## 2375 d1 2375 over IN
## 2376 d1 2376 the DT
## 2377 d1 2377 world NN
## 2378 d1 2378 , ,
## 2379 d1 2379 and CC
## 2380 d1 2380 every DT
## 2381 d1 2381 meddler NN
## 2382 d1 2382 from IN
## 2383 d1 2383 the DT
## 2384 d1 2384 Ministry NNP
## 2385 d1 2385 of IN
## 2386 d1 2386 Magic NNP
## 2387 d1 2387 will MD
## 2388 d1 2388 be VB
## 2389 d1 2389 on IN
## 2390 d1 2390 duty NN
## 2391 d1 2391 , ,
## 2392 d1 2392 on IN
## 2393 d1 2393 the DT
## 2394 d1 2394 watch VB
## 2395 d1 2395 for IN
## 2396 d1 2396 signs NNS
## 2397 d1 2397 of IN
## 2398 d1 2398 ususual JJ
## 2399 d1 2399 activity NN
## 2400 d1 2400 , ,
## 2401 d1 2401 checking NN
## 2402 d1 2402 and CC
## 2403 d1 2403 double JJ
## 2404 d1 2404 - :
## 2405 d1 2405 checking NN
## 2406 d1 2406 identities NNS
## 2407 d1 2407 . .
## 2408 d1 2408 They PRP
## 2409 d1 2409 will MD
## 2410 d1 2410 be VB
## 2411 d1 2411 obsessed VBN
## 2412 d1 2412 with IN
## 2413 d1 2413 security NN
## 2414 d1 2414 , ,
## 2415 d1 2415 lest IN
## 2416 d1 2416 the DT
## 2417 d1 2417 Muggles VBZ
## 2418 d1 2418 notice NN
## 2419 d1 2419 anything NN
## 2420 d1 2420 . .
## 2421 d1 2421 So RB
## 2422 d1 2422 we PRP
## 2423 d1 2423 wait VB
## 2424 d1 2424 . .
## 2425 d1 2425 '' ''
## 2426 d1 2426 stopped VBD
## 2427 d1 2427 trying VBG
## 2428 d1 2428 to TO
## 2429 d1 2429 clear JJ
## 2430 d1 2430 out RP
## 2431 d1 2431 his PRP$
## 2432 d1 2432 ear NN
## 2433 d1 2433 . .
## 2434 d1 2434 He PRP
## 2435 d1 2435 had VBD
## 2436 d1 2436 distinctly RB
## 2437 d1 2437 heard VBN
## 2438 d1 2438 the DT
## 2439 d1 2439 words NNS
## 2440 d1 2440 '' ''
## 2441 d1 2441 of IN
## 2442 d1 2442 Magic NNP
## 2443 d1 2443 , ,
## 2444 d1 2444 '' ''
## 2445 d1 2445 '' ''
## 2446 d1 2446 , ,
## 2447 d1 2447 '' ''
## 2448 d1 2448 and CC
## 2449 d1 2449 '' ''
## 2450 d1 2450 . .
## 2451 d1 2451 '' ''
## 2452 d1 2452 Plainly RB
## 2453 d1 2453 , ,
## 2454 d1 2454 each DT
## 2455 d1 2455 of IN
## 2456 d1 2456 these DT
## 2457 d1 2457 expressions NNS
## 2458 d1 2458 meant VBN
## 2459 d1 2459 something NN
## 2460 d1 2460 secret JJ
## 2461 d1 2461 , ,
## 2462 d1 2462 and CC
## 2463 d1 2463 Frank NNP
## 2464 d1 2464 could MD
## 2465 d1 2465 think VBP
## 2466 d1 2466 of IN
## 2467 d1 2467 only RB
## 2468 d1 2468 two CD
## 2469 d1 2469 sorts NNS
## 2470 d1 2470 of IN
## 2471 d1 2471 people NNS
## 2472 d1 2472 who WP
## 2473 d1 2473 would MD
## 2474 d1 2474 speak VB
## 2475 d1 2475 in IN
## 2476 d1 2476 code NN
## 2477 d1 2477 : :
## 2478 d1 2478 spies NNS
## 2479 d1 2479 and CC
## 2480 d1 2480 criminals NNS
## 2481 d1 2481 . .
## 2482 d1 2482 Frank NNP
## 2483 d1 2483 tightened VBD
## 2484 d1 2484 his PRP$
## 2485 d1 2485 hold VB
## 2486 d1 2486 on IN
## 2487 d1 2487 his PRP$
## 2488 d1 2488 walking VBG
## 2489 d1 2489 stick VB
## 2490 d1 2490 once RB
## 2491 d1 2491 more JJR
## 2492 d1 2492 , ,
## 2493 d1 2493 and CC
## 2494 d1 2494 listened VBD
## 2495 d1 2495 more JJR
## 2496 d1 2496 closely RB
## 2497 d1 2497 still RB
## 2498 d1 2498 . .
## 2499 d1 2499 '' ''
## 2500 d1 2500 Lordship NN
## 2501 d1 2501 is VBZ
## 2502 d1 2502 still RB
## 2503 d1 2503 determined VBN
## 2504 d1 2504 , ,
## 2505 d1 2505 then RB
## 2506 d1 2506 ? .
## 2507 d1 2507 '' ''
## 2508 d1 2508 Wormtail JJ
## 2509 d1 2509 said VBD
## 2510 d1 2510 quietly RB
## 2511 d1 2511 . .
## 2512 d1 2512 '' ''
## 2513 d1 2513 I PRP
## 2514 d1 2514 am VBP
## 2515 d1 2515 determined VBN
## 2516 d1 2516 , ,
## 2517 d1 2517 Wormtail JJ
## 2518 d1 2518 . .
## 2519 d1 2519 '' ''
## 2520 d1 2520 There EX
## 2521 d1 2521 was VBD
## 2522 d1 2522 a DT
## 2523 d1 2523 note NN
## 2524 d1 2524 of IN
## 2525 d1 2525 menace NN
## 2526 d1 2526 in IN
## 2527 d1 2527 the DT
## 2528 d1 2528 cold JJ
## 2529 d1 2529 voice NN
## 2530 d1 2530 now RB
## 2531 d1 2531 . .
## 2532 d1 2532 A NN
## 2533 d1 2533 slight JJ
## 2534 d1 2534 pause NN
## 2535 d1 2535 followed VBN
## 2536 d1 2536 - :
## 2537 d1 2537 - :
## 2538 d1 2538 and CC
## 2539 d1 2539 the DT
## 2540 d1 2540 Wormtail JJ
## 2541 d1 2541 spoke VBD
## 2542 d1 2542 , ,
## 2543 d1 2543 the DT
## 2544 d1 2544 words NNS
## 2545 d1 2545 tumbling VBG
## 2546 d1 2546 from IN
## 2547 d1 2547 him PRP
## 2548 d1 2548 in IN
## 2549 d1 2549 a DT
## 2550 d1 2550 rush NN
## 2551 d1 2551 , ,
## 2552 d1 2552 as IN
## 2553 d1 2553 though IN
## 2554 d1 2554 he PRP
## 2555 d1 2555 was VBD
## 2556 d1 2556 forcing VBG
## 2557 d1 2557 himself PRP
## 2558 d1 2558 to TO
## 2559 d1 2559 say VBP
## 2560 d1 2560 this DT
## 2561 d1 2561 before IN
## 2562 d1 2562 he PRP
## 2563 d1 2563 lost VBD
## 2564 d1 2564 his PRP$
## 2565 d1 2565 nerve NN
## 2566 d1 2566 . .
## 2567 d1 2567 '' ''
## 2568 d1 2568 could MD
## 2569 d1 2569 be VB
## 2570 d1 2570 done VBN
## 2571 d1 2571 without IN
## 2572 d1 2572 Harry NNP
## 2573 d1 2573 Potter NNP
## 2574 d1 2574 , ,
## 2575 d1 2575 My PRP$
## 2576 d1 2576 Lord NNP
## 2577 d1 2577 . .
## 2578 d1 2578 '' ''
## 2579 d1 2579 pause NN
## 2580 d1 2580 , ,
## 2581 d1 2581 more JJR
## 2582 d1 2582 protracted JJ
## 2583 d1 2583 , ,
## 2584 d1 2584 and CC
## 2585 d1 2585 then RB
## 2586 d1 2586 - :
## 2587 d1 2587 - :
## 2588 d1 2588 '' ''
## 2589 d1 2589 Harry NNP
## 2590 d1 2590 Potter NNP
## 2591 d1 2591 ? .
## 2592 d1 2592 '' ''
## 2593 d1 2593 breathed VBD
## 2594 d1 2594 the DT
## 2595 d1 2595 second JJ
## 2596 d1 2596 voice NN
## 2597 d1 2597 softly RB
## 2598 d1 2598 . .
## 2599 d1 2599 '' ''
## 2600 d1 2600 see VB
## 2601 d1 2601 . .
## 2602 d1 2602 . .
## 2603 d1 2603 . .
## 2604 d1 2604 '' ''
## 2605 d1 2605 Lord NNP
## 2606 d1 2606 , ,
## 2607 d1 2607 I PRP
## 2608 d1 2608 do VBP
## 2609 d1 2609 not RB
## 2610 d1 2610 say VBP
## 2611 d1 2611 this DT
## 2612 d1 2612 out RP
## 2613 d1 2613 of IN
## 2614 d1 2614 concern NN
## 2615 d1 2615 for IN
## 2616 d1 2616 the DT
## 2617 d1 2617 boy NN
## 2618 d1 2618 ! .
## 2619 d1 2619 '' ''
## 2620 d1 2620 said VBD
## 2621 d1 2621 Wormtail JJ
## 2622 d1 2622 , ,
## 2623 d1 2623 his PRP$
## 2624 d1 2624 voice NN
## 2625 d1 2625 rising VBG
## 2626 d1 2626 squeakily RB
## 2627 d1 2627 . .
## 2628 d1 2628 '' ''
## 2629 d1 2629 boy NN
## 2630 d1 2630 is VBZ
## 2631 d1 2631 nothing NN
## 2632 d1 2632 to TO
## 2633 d1 2633 me PRP
## 2634 d1 2634 , ,
## 2635 d1 2635 nothing NN
## 2636 d1 2636 at IN
## 2637 d1 2637 all DT
## 2638 d1 2638 ! .
## 2639 d1 2639 It PRP
## 2640 d1 2640 is VBZ
## 2641 d1 2641 merely RB
## 2642 d1 2642 that IN
## 2643 d1 2643 if IN
## 2644 d1 2644 we PRP
## 2645 d1 2645 were VBD
## 2646 d1 2646 to TO
## 2647 d1 2647 use NN
## 2648 d1 2648 another DT
## 2649 d1 2649 witch NN
## 2650 d1 2650 or CC
## 2651 d1 2651 wizard NNP
## 2652 d1 2652 - :
## 2653 d1 2653 - :
## 2654 d1 2654 any DT
## 2655 d1 2655 wizard NNP
## 2656 d1 2656 - :
## 2657 d1 2657 - :
## 2658 d1 2658 the DT
## 2659 d1 2659 thing NN
## 2660 d1 2660 could MD
## 2661 d1 2661 be VB
## 2662 d1 2662 done VBN
## 2663 d1 2663 so RB
## 2664 d1 2664 much JJ
## 2665 d1 2665 more JJR
## 2666 d1 2666 quickly RB
## 2667 d1 2667 ! .
## 2668 d1 2668 If IN
## 2669 d1 2669 you PRP
## 2670 d1 2670 allowed VBN
## 2671 d1 2671 me PRP
## 2672 d1 2672 to TO
## 2673 d1 2673 leave VB
## 2674 d1 2674 you PRP
## 2675 d1 2675 for IN
## 2676 d1 2676 a DT
## 2677 d1 2677 short JJ
## 2678 d1 2678 while IN
## 2679 d1 2679 - :
## 2680 d1 2680 - :
## 2681 d1 2681 you PRP
## 2682 d1 2682 know VB
## 2683 d1 2683 that IN
## 2684 d1 2684 I PRP
## 2685 d1 2685 can MD
## 2686 d1 2686 disguise VB
## 2687 d1 2687 myself PRP
## 2688 d1 2688 most JJS
## 2689 d1 2689 effectively RB
## 2690 d1 2690 - :
## 2691 d1 2691 - :
## 2692 d1 2692 I PRP
## 2693 d1 2693 could MD
## 2694 d1 2694 be VB
## 2695 d1 2695 back RB
## 2696 d1 2696 here RB
## 2697 d1 2697 in IN
## 2698 d1 2698 as IN
## 2699 d1 2699 little JJ
## 2700 d1 2700 as IN
## 2701 d1 2701 two CD
## 2702 d1 2702 days NNS
## 2703 d1 2703 with IN
## 2704 d1 2704 a DT
## 2705 d1 2705 suitable JJ
## 2706 d1 2706 person NN
## 2707 d1 2707 - :
## 2708 d1 2708 - :
## 2709 d1 2709 '' ''
## 2710 d1 2710 could MD
## 2711 d1 2711 use NN
## 2712 d1 2712 another DT
## 2713 d1 2713 wizard NNP
## 2714 d1 2714 , ,
## 2715 d1 2715 '' ''
## 2716 d1 2716 said VBD
## 2717 d1 2717 the DT
## 2718 d1 2718 cold JJ
## 2719 d1 2719 voice NN
## 2720 d1 2720 softly RB
## 2721 d1 2721 , ,
## 2722 d1 2722 '' ''
## 2723 d1 2723 is VBZ
## 2724 d1 2724 true JJ
## 2725 d1 2725 . .
## 2726 d1 2726 . .
## 2727 d1 2727 . .
## 2728 d1 2728 '' ''
## 2729 d1 2729 Lord NNP
## 2730 d1 2730 , ,
## 2731 d1 2731 it PRP
## 2732 d1 2732 makes VBZ
## 2733 d1 2733 sense NN
## 2734 d1 2734 , ,
## 2735 d1 2735 '' ''
## 2736 d1 2736 said VBD
## 2737 d1 2737 Wormtail JJ
## 2738 d1 2738 , ,
## 2739 d1 2739 sounding VBG
## 2740 d1 2740 thoroughly RB
## 2741 d1 2741 relieved VBN
## 2742 d1 2742 now RB
## 2743 d1 2743 . .
## 2744 d1 2744 '' ''
## 2745 d1 2745 hands NNS
## 2746 d1 2746 on IN
## 2747 d1 2747 Harry NNP
## 2748 d1 2748 Potter NNP
## 2749 d1 2749 would MD
## 2750 d1 2750 be VB
## 2751 d1 2751 so RB
## 2752 d1 2752 difficult JJ
## 2753 d1 2753 , ,
## 2754 d1 2754 he PRP
## 2755 d1 2755 is VBZ
## 2756 d1 2756 so RB
## 2757 d1 2757 well RB
## 2758 d1 2758 protected VBN
## 2759 d1 2759 - :
## 2760 d1 2760 - :
## 2761 d1 2761 '' ''
## 2762 d1 2762 so RB
## 2763 d1 2763 you PRP
## 2764 d1 2764 volunteer NN
## 2765 d1 2765 to TO
## 2766 d1 2766 go VB
## 2767 d1 2767 and CC
## 2768 d1 2768 fetch VB
## 2769 d1 2769 me PRP
## 2770 d1 2770 a DT
## 2771 d1 2771 substitute NN
## 2772 d1 2772 ? .
## 2773 d1 2773 I PRP
## 2774 d1 2774 wonder VBP
## 2775 d1 2775 . .
## 2776 d1 2776 . .
## 2777 d1 2777 . .
## 2778 d1 2778 perhaps RB
## 2779 d1 2779 the DT
## 2780 d1 2780 task NN
## 2781 d1 2781 of IN
## 2782 d1 2782 nursing NN
## 2783 d1 2783 me PRP
## 2784 d1 2784 has VBZ
## 2785 d1 2785 become VB
## 2786 d1 2786 wearisome JJ
## 2787 d1 2787 for IN
## 2788 d1 2788 you PRP
## 2789 d1 2789 , ,
## 2790 d1 2790 Wormtail JJ
## 2791 d1 2791 ? .
## 2792 d1 2792 Could MD
## 2793 d1 2793 this DT
## 2794 d1 2794 suggestion NN
## 2795 d1 2795 of IN
## 2796 d1 2796 abandoning VBG
## 2797 d1 2797 the DT
## 2798 d1 2798 plan NN
## 2799 d1 2799 be VB
## 2800 d1 2800 nothing NN
## 2801 d1 2801 more JJR
## 2802 d1 2802 than IN
## 2803 d1 2803 an DT
## 2804 d1 2804 attempt NN
## 2805 d1 2805 to TO
## 2806 d1 2806 desert NN
## 2807 d1 2807 me PRP
## 2808 d1 2808 ? .
## 2809 d1 2809 '' ''
## 2810 d1 2810 Lord NNP
## 2811 d1 2811 ! .
## 2812 d1 2812 I PRP
## 2813 d1 2813 - :
## 2814 d1 2814 - :
## 2815 d1 2815 I PRP
## 2816 d1 2816 have VBP
## 2817 d1 2817 no DT
## 2818 d1 2818 wish VBP
## 2819 d1 2819 to TO
## 2820 d1 2820 leave VB
## 2821 d1 2821 you PRP
## 2822 d1 2822 , ,
## 2823 d1 2823 none NN
## 2824 d1 2824 at IN
## 2825 d1 2825 all DT
## 2826 d1 2826 - :
## 2827 d1 2827 - :
## 2828 d1 2828 '' ''
## 2829 d1 2829 not RB
## 2830 d1 2830 lie VB
## 2831 d1 2831 to TO
## 2832 d1 2832 me PRP
## 2833 d1 2833 ! .
## 2834 d1 2834 '' ''
## 2835 d1 2835 hissed VBD
## 2836 d1 2836 the DT
## 2837 d1 2837 second JJ
## 2838 d1 2838 voice NN
## 2839 d1 2839 . .
## 2840 d1 2840 '' ''
## 2841 d1 2841 can MD
## 2842 d1 2842 always RB
## 2843 d1 2843 tell VB
## 2844 d1 2844 , ,
## 2845 d1 2845 Wormtail JJ
## 2846 d1 2846 ! .
## 2847 d1 2847 You PRP
## 2848 d1 2848 are VBP
## 2849 d1 2849 regretting VBG
## 2850 d1 2850 that IN
## 2851 d1 2851 you PRP
## 2852 d1 2852 ever RB
## 2853 d1 2853 returned VBN
## 2854 d1 2854 to TO
## 2855 d1 2855 me PRP
## 2856 d1 2856 . .
## 2857 d1 2857 I PRP
## 2858 d1 2858 revolt NN
## 2859 d1 2859 you PRP
## 2860 d1 2860 . .
## 2861 d1 2861 I PRP
## 2862 d1 2862 see VB
## 2863 d1 2863 you PRP
## 2864 d1 2864 flinch VB
## 2865 d1 2865 when WRB
## 2866 d1 2866 you PRP
## 2867 d1 2867 look VB
## 2868 d1 2868 at IN
## 2869 d1 2869 me PRP
## 2870 d1 2870 , ,
## 2871 d1 2871 feel VBP
## 2872 d1 2872 you PRP
## 2873 d1 2873 shudder NN
## 2874 d1 2874 when WRB
## 2875 d1 2875 you PRP
## 2876 d1 2876 touch NN
## 2877 d1 2877 me PRP
## 2878 d1 2878 . .
## 2879 d1 2879 . .
## 2880 d1 2880 . .
## 2881 d1 2881 '' ''
## 2882 d1 2882 ! .
## 2883 d1 2883 My PRP$
## 2884 d1 2884 devotion NN
## 2885 d1 2885 to TO
## 2886 d1 2886 Your PRP$
## 2887 d1 2887 Lordship NN
## 2888 d1 2888 - :
## 2889 d1 2889 - :
## 2890 d1 2890 '' ''
## 2891 d1 2891 devotion NN
## 2892 d1 2892 is VBZ
## 2893 d1 2893 nothing NN
## 2894 d1 2894 more JJR
## 2895 d1 2895 than IN
## 2896 d1 2896 cowardice NN
## 2897 d1 2897 . .
## 2898 d1 2898 You PRP
## 2899 d1 2899 would MD
## 2900 d1 2900 not RB
## 2901 d1 2901 be VB
## 2902 d1 2902 here RB
## 2903 d1 2903 if IN
## 2904 d1 2904 you PRP
## 2905 d1 2905 had VBD
## 2906 d1 2906 anywhere RB
## 2907 d1 2907 else RB
## 2908 d1 2908 to TO
## 2909 d1 2909 go VB
## 2910 d1 2910 . .
## 2911 d1 2911 How WRB
## 2912 d1 2912 am VBP
## 2913 d1 2913 I PRP
## 2914 d1 2914 to TO
## 2915 d1 2915 survive VB
## 2916 d1 2916 without IN
## 2917 d1 2917 you PRP
## 2918 d1 2918 , ,
## 2919 d1 2919 when WRB
## 2920 d1 2920 I PRP
## 2921 d1 2921 need VBP
## 2922 d1 2922 feeding VBG
## 2923 d1 2923 every DT
## 2924 d1 2924 few JJ
## 2925 d1 2925 hours NNS
## 2926 d1 2926 ? .
## 2927 d1 2927 Who WP
## 2928 d1 2928 is VBZ
## 2929 d1 2929 to TO
## 2930 d1 2930 milk NN
## 2931 d1 2931 Nagini NNP
## 2932 d1 2932 ? .
## 2933 d1 2933 '' ''
## 2934 d1 2934 you PRP
## 2935 d1 2935 seem VBP
## 2936 d1 2936 so RB
## 2937 d1 2937 much JJ
## 2938 d1 2938 stronger JJR
## 2939 d1 2939 , ,
## 2940 d1 2940 My PRP$
## 2941 d1 2941 Lord NNP
## 2942 d1 2942 - :
## 2943 d1 2943 - :
## 2944 d1 2944 '' ''
## 2945 d1 2945 , ,
## 2946 d1 2946 '' ''
## 2947 d1 2947 breathed VBD
## 2948 d1 2948 the DT
## 2949 d1 2949 second JJ
## 2950 d1 2950 voice NN
## 2951 d1 2951 . .
## 2952 d1 2952 '' ''
## 2953 d1 2953 am VBP
## 2954 d1 2954 no DT
## 2955 d1 2955 stronger JJR
## 2956 d1 2956 , ,
## 2957 d1 2957 and CC
## 2958 d1 2958 a DT
## 2959 d1 2959 few JJ
## 2960 d1 2960 days NNS
## 2961 d1 2961 alone RB
## 2962 d1 2962 would MD
## 2963 d1 2963 be VB
## 2964 d1 2964 enough RB
## 2965 d1 2965 to TO
## 2966 d1 2966 rob NN
## 2967 d1 2967 me PRP
## 2968 d1 2968 of IN
## 2969 d1 2969 the DT
## 2970 d1 2970 little JJ
## 2971 d1 2971 health NN
## 2972 d1 2972 I PRP
## 2973 d1 2973 have VBP
## 2974 d1 2974 regained VBN
## 2975 d1 2975 under IN
## 2976 d1 2976 your PRP$
## 2977 d1 2977 clumsy JJ
## 2978 d1 2978 care NN
## 2979 d1 2979 . .
## 2980 d1 2980 Silence NN
## 2981 d1 2981 ! .
## 2982 d1 2982 '' ''
## 2983 d1 2983 , ,
## 2984 d1 2984 who WP
## 2985 d1 2985 had VBD
## 2986 d1 2986 been VBN
## 2987 d1 2987 sputtering VBG
## 2988 d1 2988 incoherently RB
## 2989 d1 2989 , ,
## 2990 d1 2990 fell VBD
## 2991 d1 2991 silent JJ
## 2992 d1 2992 at IN
## 2993 d1 2993 once RB
## 2994 d1 2994 . .
## 2995 d1 2995 For IN
## 2996 d1 2996 a DT
## 2997 d1 2997 few JJ
## 2998 d1 2998 seconds NNS
## 2999 d1 2999 , ,
## 3000 d1 3000 Frank NNP
## 3001 d1 3001 could MD
## 3002 d1 3002 hear VB
## 3003 d1 3003 nothing NN
## 3004 d1 3004 but CC
## 3005 d1 3005 the DT
## 3006 d1 3006 fire NN
## 3007 d1 3007 crackling VBG
## 3008 d1 3008 . .
## 3009 d1 3009 The DT
## 3010 d1 3010 the DT
## 3011 d1 3011 second JJ
## 3012 d1 3012 man NN
## 3013 d1 3013 spoke VBD
## 3014 d1 3014 once RB
## 3015 d1 3015 more JJR
## 3016 d1 3016 , ,
## 3017 d1 3017 in IN
## 3018 d1 3018 a DT
## 3019 d1 3019 whisper NN
## 3020 d1 3020 that IN
## 3021 d1 3021 was VBD
## 3022 d1 3022 almost RB
## 3023 d1 3023 a DT
## 3024 d1 3024 hiss NNP
## 3025 d1 3025 . .
## 3026 d1 3026 '' ''
## 3027 d1 3027 have VBP
## 3028 d1 3028 my PRP$
## 3029 d1 3029 reasons NNS
## 3030 d1 3030 for IN
## 3031 d1 3031 using VBG
## 3032 d1 3032 the DT
## 3033 d1 3033 boy NN
## 3034 d1 3034 , ,
## 3035 d1 3035 as IN
## 3036 d1 3036 I PRP
## 3037 d1 3037 have VBP
## 3038 d1 3038 already RB
## 3039 d1 3039 explained VBD
## 3040 d1 3040 to TO
## 3041 d1 3041 you PRP
## 3042 d1 3042 , ,
## 3043 d1 3043 and CC
## 3044 d1 3044 I PRP
## 3045 d1 3045 will MD
## 3046 d1 3046 use NN
## 3047 d1 3047 no DT
## 3048 d1 3048 other JJ
## 3049 d1 3049 . .
## 3050 d1 3050 I PRP
## 3051 d1 3051 have VBP
## 3052 d1 3052 waited VBD
## 3053 d1 3053 thirteen CD
## 3054 d1 3054 years NNS
## 3055 d1 3055 . .
## 3056 d1 3056 A DT
## 3057 d1 3057 few JJ
## 3058 d1 3058 more JJR
## 3059 d1 3059 months NNS
## 3060 d1 3060 will MD
## 3061 d1 3061 make VB
## 3062 d1 3062 no DT
## 3063 d1 3063 difference NN
## 3064 d1 3064 . .
## 3065 d1 3065 As IN
## 3066 d1 3066 for IN
## 3067 d1 3067 the DT
## 3068 d1 3068 protection NN
## 3069 d1 3069 surrounding VBG
## 3070 d1 3070 the DT
## 3071 d1 3071 boy NN
## 3072 d1 3072 , ,
## 3073 d1 3073 I PRP
## 3074 d1 3074 believe VBP
## 3075 d1 3075 my PRP$
## 3076 d1 3076 plan NN
## 3077 d1 3077 will MD
## 3078 d1 3078 be VB
## 3079 d1 3079 effective JJ
## 3080 d1 3080 . .
## 3081 d1 3081 All DT
## 3082 d1 3082 that IN
## 3083 d1 3083 is VBZ
## 3084 d1 3084 needed VBN
## 3085 d1 3085 is VBZ
## 3086 d1 3086 a DT
## 3087 d1 3087 little JJ
## 3088 d1 3088 courage NN
## 3089 d1 3089 from IN
## 3090 d1 3090 you PRP
## 3091 d1 3091 , ,
## 3092 d1 3092 Wormtail JJ
## 3093 d1 3093 - :
## 3094 d1 3094 - :
## 3095 d1 3095 courage NN
## 3096 d1 3096 you PRP
## 3097 d1 3097 will MD
## 3098 d1 3098 find VB
## 3099 d1 3099 , ,
## 3100 d1 3100 unless IN
## 3101 d1 3101 you PRP
## 3102 d1 3102 wish VBP
## 3103 d1 3103 to TO
## 3104 d1 3104 feel VBP
## 3105 d1 3105 the DT
## 3106 d1 3106 full JJ
## 3107 d1 3107 extent NN
## 3108 d1 3108 of IN
## 3109 d1 3109 Lord NNP
## 3110 d1 3110 Voldermort's NNP
## 3111 d1 3111 wrath NN
## 3112 d1 3112 - :
## 3113 d1 3113 - :
## 3114 d1 3114 '' ''
## 3115 d1 3115 Lord NNP
## 3116 d1 3116 , ,
## 3117 d1 3117 I PRP
## 3118 d1 3118 must MD
## 3119 d1 3119 speak VB
## 3120 d1 3120 ! .
## 3121 d1 3121 '' ''
## 3122 d1 3122 said VBD
## 3123 d1 3123 Wormtail JJ
## 3124 d1 3124 , ,
## 3125 d1 3125 panic NN
## 3126 d1 3126 in IN
## 3127 d1 3127 his PRP$
## 3128 d1 3128 voice NN
## 3129 d1 3129 now RB
## 3130 d1 3130 . .
## 3131 d1 3131 '' ''
## 3132 d1 3132 through IN
## 3133 d1 3133 our PRP$
## 3134 d1 3134 journey NN
## 3135 d1 3135 I PRP
## 3136 d1 3136 have VBP
## 3137 d1 3137 gone VBN
## 3138 d1 3138 over IN
## 3139 d1 3139 the DT
## 3140 d1 3140 plan NN
## 3141 d1 3141 in IN
## 3142 d1 3142 my PRP$
## 3143 d1 3143 head NN
## 3144 d1 3144 - :
## 3145 d1 3145 - :
## 3146 d1 3146 My PRP$
## 3147 d1 3147 Lord NNP
## 3148 d1 3148 , ,
## 3149 d1 3149 Bertha NNP
## 3150 d1 3150 Jorkin's NNP
## 3151 d1 3151 disappearance NN
## 3152 d1 3152 will MD
## 3153 d1 3153 not RB
## 3154 d1 3154 go VB
## 3155 d1 3155 unnoticed JJ
## 3156 d1 3156 for IN
## 3157 d1 3157 long JJ
## 3158 d1 3158 , ,
## 3159 d1 3159 and CC
## 3160 d1 3160 if IN
## 3161 d1 3161 we PRP
## 3162 d1 3162 proceed VB
## 3163 d1 3163 , ,
## 3164 d1 3164 if IN
## 3165 d1 3165 I PRP
## 3166 d1 3166 murder NN
## 3167 d1 3167 - :
## 3168 d1 3168 - :
## 3169 d1 3169 '' ''
## 3170 d1 3170 ? .
## 3171 d1 3171 '' ''
## 3172 d1 3172 whispered VBN
## 3173 d1 3173 the DT
## 3174 d1 3174 second JJ
## 3175 d1 3175 voice NN
## 3176 d1 3176 . .
## 3177 d1 3177 '' ''
## 3178 d1 3178 ? .
## 3179 d1 3179 If IN
## 3180 d1 3180 you PRP
## 3181 d1 3181 follow VB
## 3182 d1 3182 the DT
## 3183 d1 3183 plan NN
## 3184 d1 3184 , ,
## 3185 d1 3185 Wormtail JJ
## 3186 d1 3186 , ,
## 3187 d1 3187 the DT
## 3188 d1 3188 Ministry NNP
## 3189 d1 3189 need VBP
## 3190 d1 3190 never RB
## 3191 d1 3191 know VB
## 3192 d1 3192 that IN
## 3193 d1 3193 anyone NN
## 3194 d1 3194 else RB
## 3195 d1 3195 has VBZ
## 3196 d1 3196 died VBD
## 3197 d1 3197 . .
## 3198 d1 3198 You PRP
## 3199 d1 3199 will MD
## 3200 d1 3200 do VBP
## 3201 d1 3201 it PRP
## 3202 d1 3202 quietly RB
## 3203 d1 3203 and CC
## 3204 d1 3204 without IN
## 3205 d1 3205 fuss NNP
## 3206 d1 3206 ; :
## 3207 d1 3207 I PRP
## 3208 d1 3208 only RB
## 3209 d1 3209 wish VBP
## 3210 d1 3210 that IN
## 3211 d1 3211 i FW
## 3212 d1 3212 could MD
## 3213 d1 3213 do VBP
## 3214 d1 3214 it PRP
## 3215 d1 3215 myself PRP
## 3216 d1 3216 , ,
## 3217 d1 3217 but CC
## 3218 d1 3218 in IN
## 3219 d1 3219 my PRP$
## 3220 d1 3220 present JJ
## 3221 d1 3221 condition NN
## 3222 d1 3222 . .
## 3223 d1 3223 . .
## 3224 d1 3224 . .
## 3225 d1 3225 Come VBN
## 3226 d1 3226 , ,
## 3227 d1 3227 Wormtail JJ
## 3228 d1 3228 , ,
## 3229 d1 3229 one CD
## 3230 d1 3230 more JJR
## 3231 d1 3231 death NN
## 3232 d1 3232 and CC
## 3233 d1 3233 our PRP$
## 3234 d1 3234 path NN
## 3235 d1 3235 to TO
## 3236 d1 3236 Harry NNP
## 3237 d1 3237 Potter NNP
## 3238 d1 3238 is VBZ
## 3239 d1 3239 clear JJ
## 3240 d1 3240 . .
## 3241 d1 3241 I PRP
## 3242 d1 3242 am VBP
## 3243 d1 3243 not RB
## 3244 d1 3244 asking VBG
## 3245 d1 3245 you PRP
## 3246 d1 3246 to TO
## 3247 d1 3247 do VBP
## 3248 d1 3248 it PRP
## 3249 d1 3249 alone RB
## 3250 d1 3250 . .
## 3251 d1 3251 By IN
## 3252 d1 3252 that IN
## 3253 d1 3253 time NN
## 3254 d1 3254 , ,
## 3255 d1 3255 my PRP$
## 3256 d1 3256 faithful NN
## 3257 d1 3257 serant JJ
## 3258 d1 3258 will MD
## 3259 d1 3259 have VBP
## 3260 d1 3260 rejoined VBD
## 3261 d1 3261 us PRP
## 3262 d1 3262 - :
## 3263 d1 3263 - :
## 3264 d1 3264 '' ''
## 3265 d1 3265 am VBP
## 3266 d1 3266 a DT
## 3267 d1 3267 faithful NN
## 3268 d1 3268 servant JJ
## 3269 d1 3269 , ,
## 3270 d1 3270 '' ''
## 3271 d1 3271 said VBD
## 3272 d1 3272 Wormtail JJ
## 3273 d1 3273 , ,
## 3274 d1 3274 the DT
## 3275 d1 3275 merest NN
## 3276 d1 3276 trace VB
## 3277 d1 3277 of IN
## 3278 d1 3278 sullenness NN
## 3279 d1 3279 in IN
## 3280 d1 3280 his PRP$
## 3281 d1 3281 voice NN
## 3282 d1 3282 . .
## 3283 d1 3283 '' ''
## 3284 d1 3284 , ,
## 3285 d1 3285 I PRP
## 3286 d1 3286 need VBP
## 3287 d1 3287 somebody NN
## 3288 d1 3288 with IN
## 3289 d1 3289 brains NNS
## 3290 d1 3290 , ,
## 3291 d1 3291 somebody NN
## 3292 d1 3292 whose WP$
## 3293 d1 3293 loyalty NN
## 3294 d1 3294 has VBZ
## 3295 d1 3295 never RB
## 3296 d1 3296 wavered VBD
## 3297 d1 3297 , ,
## 3298 d1 3298 and CC
## 3299 d1 3299 you PRP
## 3300 d1 3300 , ,
## 3301 d1 3301 unfortunately RB
## 3302 d1 3302 , ,
## 3303 d1 3303 fulfill VB
## 3304 d1 3304 neither DT
## 3305 d1 3305 requirement NN
## 3306 d1 3306 . .
## 3307 d1 3307 '' ''
## 3308 d1 3308 found VBD
## 3309 d1 3309 you PRP
## 3310 d1 3310 , ,
## 3311 d1 3311 '' ''
## 3312 d1 3312 said VBD
## 3313 d1 3313 Wormtail JJ
## 3314 d1 3314 , ,
## 3315 d1 3315 and CC
## 3316 d1 3316 there EX
## 3317 d1 3317 was VBD
## 3318 d1 3318 definitely RB
## 3319 d1 3319 a DT
## 3320 d1 3320 sulky JJ
## 3321 d1 3321 edge NN
## 3322 d1 3322 to TO
## 3323 d1 3323 his PRP$
## 3324 d1 3324 voice NN
## 3325 d1 3325 now RB
## 3326 d1 3326 . .
## 3327 d1 3327 '' ''
## 3328 d1 3328 was VBD
## 3329 d1 3329 the DT
## 3330 d1 3330 one CD
## 3331 d1 3331 who WP
## 3332 d1 3332 found VBD
## 3333 d1 3333 you PRP
## 3334 d1 3334 . .
## 3335 d1 3335 I PRP
## 3336 d1 3336 brought VBN
## 3337 d1 3337 you PRP
## 3338 d1 3338 Bertha NNP
## 3339 d1 3339 Jorkins NNP
## 3340 d1 3340 . .
## 3341 d1 3341 '' ''
## 3342 d1 3342 is VBZ
## 3343 d1 3343 true JJ
## 3344 d1 3344 , ,
## 3345 d1 3345 '' ''
## 3346 d1 3346 said VBD
## 3347 d1 3347 the DT
## 3348 d1 3348 second JJ
## 3349 d1 3349 man NN
## 3350 d1 3350 , ,
## 3351 d1 3351 sounding VBG
## 3352 d1 3352 amused VBN
## 3353 d1 3353 . .
## 3354 d1 3354 '' ''
## 3355 d1 3355 stroke NN
## 3356 d1 3356 of IN
## 3357 d1 3357 brilliance NN
## 3358 d1 3358 I PRP
## 3359 d1 3359 would MD
## 3360 d1 3360 not RB
## 3361 d1 3361 have VBP
## 3362 d1 3362 thought VBD
## 3363 d1 3363 possible JJ
## 3364 d1 3364 from IN
## 3365 d1 3365 you PRP
## 3366 d1 3366 , ,
## 3367 d1 3367 Wormtail JJ
## 3368 d1 3368 - :
## 3369 d1 3369 - :
## 3370 d1 3370 though IN
## 3371 d1 3371 , ,
## 3372 d1 3372 if IN
## 3373 d1 3373 truth NN
## 3374 d1 3374 be VB
## 3375 d1 3375 told VBD
## 3376 d1 3376 , ,
## 3377 d1 3377 you PRP
## 3378 d1 3378 were VBD
## 3379 d1 3379 not RB
## 3380 d1 3380 aware JJ
## 3381 d1 3381 how WRB
## 3382 d1 3382 useful JJ
## 3383 d1 3383 she PRP
## 3384 d1 3384 would MD
## 3385 d1 3385 be VB
## 3386 d1 3386 when WRB
## 3387 d1 3387 you PRP
## 3388 d1 3388 caught VBN
## 3389 d1 3389 her PRP$
## 3390 d1 3390 , ,
## 3391 d1 3391 were VBD
## 3392 d1 3392 you PRP
## 3393 d1 3393 ? .
## 3394 d1 3394 '' ''
## 3395 d1 3395 - :
## 3396 d1 3396 - :
## 3397 d1 3397 I PRP
## 3398 d1 3398 thought VBD
## 3399 d1 3399 she PRP
## 3400 d1 3400 might MD
## 3401 d1 3401 be VB
## 3402 d1 3402 useful JJ
## 3403 d1 3403 , ,
## 3404 d1 3404 My PRP$
## 3405 d1 3405 Lord NNP
## 3406 d1 3406 - :
## 3407 d1 3407 - :
## 3408 d1 3408 '' ''
## 3409 d1 3409 , ,
## 3410 d1 3410 '' ''
## 3411 d1 3411 said VBD
## 3412 d1 3412 the DT
## 3413 d1 3413 second JJ
## 3414 d1 3414 voice NN
## 3415 d1 3415 again RB
## 3416 d1 3416 , ,
## 3417 d1 3417 the DT
## 3418 d1 3418 cruel JJ
## 3419 d1 3419 amusement NN
## 3420 d1 3420 more JJR
## 3421 d1 3421 pronounced VBN
## 3422 d1 3422 than IN
## 3423 d1 3423 ever RB
## 3424 d1 3424 . .
## 3425 d1 3425 '' ''
## 3426 d1 3426 , ,
## 3427 d1 3427 I PRP
## 3428 d1 3428 do VBP
## 3429 d1 3429 not RB
## 3430 d1 3430 deny VB
## 3431 d1 3431 that IN
## 3432 d1 3432 her PRP$
## 3433 d1 3433 information NN
## 3434 d1 3434 was VBD
## 3435 d1 3435 invaluable JJ
## 3436 d1 3436 . .
## 3437 d1 3437 Without IN
## 3438 d1 3438 it PRP
## 3439 d1 3439 , ,
## 3440 d1 3440 I PRP
## 3441 d1 3441 could MD
## 3442 d1 3442 never RB
## 3443 d1 3443 have VBP
## 3444 d1 3444 formed VBN
## 3445 d1 3445 our PRP$
## 3446 d1 3446 plan NN
## 3447 d1 3447 , ,
## 3448 d1 3448 and CC
## 3449 d1 3449 for IN
## 3450 d1 3450 that IN
## 3451 d1 3451 , ,
## 3452 d1 3452 you PRP
## 3453 d1 3453 will MD
## 3454 d1 3454 have VBP
## 3455 d1 3455 your PRP$
## 3456 d1 3456 reward NN
## 3457 d1 3457 , ,
## 3458 d1 3458 Wormtail JJ
## 3459 d1 3459 . .
## 3460 d1 3460 I PRP
## 3461 d1 3461 will MD
## 3462 d1 3462 allow VB
## 3463 d1 3463 you PRP
## 3464 d1 3464 to TO
## 3465 d1 3465 perform VB
## 3466 d1 3466 an DT
## 3467 d1 3467 essential JJ
## 3468 d1 3468 task NN
## 3469 d1 3469 for IN
## 3470 d1 3470 me PRP
## 3471 d1 3471 , ,
## 3472 d1 3472 one CD
## 3473 d1 3473 that IN
## 3474 d1 3474 many JJ
## 3475 d1 3475 of IN
## 3476 d1 3476 my PRP$
## 3477 d1 3477 followers NNS
## 3478 d1 3478 would MD
## 3479 d1 3479 give VB
## 3480 d1 3480 their PRP$
## 3481 d1 3481 right NN
## 3482 d1 3482 hands NNS
## 3483 d1 3483 to TO
## 3484 d1 3484 perform VB
## 3485 d1 3485 . .
## 3486 d1 3486 . .
## 3487 d1 3487 . .
## 3488 d1 3488 '' ''
## 3489 d1 3489 - :
## 3490 d1 3490 really RB
## 3491 d1 3491 , ,
## 3492 d1 3492 My PRP$
## 3493 d1 3493 Lord NNP
## 3494 d1 3494 ? .
## 3495 d1 3495 What WP
## 3496 d1 3496 - :
## 3497 d1 3497 - :
## 3498 d1 3498 ? .
## 3499 d1 3499 '' ''
## 3500 d1 3500 Wormtail JJ
## 3501 d1 3501 sounded VBD
## 3502 d1 3502 terrified VBN
## 3503 d1 3503 again RB
## 3504 d1 3504 . .
## 3505 d1 3505 '' ''
## 3506 d1 3506 , ,
## 3507 d1 3507 Wormtail JJ
## 3508 d1 3508 , ,
## 3509 d1 3509 you PRP
## 3510 d1 3510 don't NN
## 3511 d1 3511 want VBP
## 3512 d1 3512 me PRP
## 3513 d1 3513 to TO
## 3514 d1 3514 spoil NN
## 3515 d1 3515 the DT
## 3516 d1 3516 surprise NN
## 3517 d1 3517 ? .
## 3518 d1 3518 Your PRP$
## 3519 d1 3519 part NN
## 3520 d1 3520 will MD
## 3521 d1 3521 come VB
## 3522 d1 3522 at IN
## 3523 d1 3523 the DT
## 3524 d1 3524 very RB
## 3525 d1 3525 end NN
## 3526 d1 3526 . .
## 3527 d1 3527 . .
## 3528 d1 3528 . .
## 3529 d1 3529 but CC
## 3530 d1 3530 I PRP
## 3531 d1 3531 promise NN
## 3532 d1 3532 you PRP
## 3533 d1 3533 , ,
## 3534 d1 3534 you PRP
## 3535 d1 3535 will MD
## 3536 d1 3536 have VBP
## 3537 d1 3537 the DT
## 3538 d1 3538 honor VB
## 3539 d1 3539 of IN
## 3540 d1 3540 being VBG
## 3541 d1 3541 just RB
## 3542 d1 3542 as IN
## 3543 d1 3543 useful JJ
## 3544 d1 3544 as IN
## 3545 d1 3545 Bertha NNP
## 3546 d1 3546 Jorkins NNP
## 3547 d1 3547 . .
## 3548 d1 3548 '' ''
## 3549 d1 3549 . .
## 3550 d1 3550 . .
## 3551 d1 3551 . .
## 3552 d1 3552 you PRP
## 3553 d1 3553 . .
## 3554 d1 3554 . .
## 3555 d1 3555 . .
## 3556 d1 3556 '' ''
## 3557 d1 3557 Wormtail's NNP
## 3558 d1 3558 voice NN
## 3559 d1 3559 suddenly RB
## 3560 d1 3560 sounded VBD
## 3561 d1 3561 hoarse NN
## 3562 d1 3562 , ,
## 3563 d1 3563 as IN
## 3564 d1 3564 though IN
## 3565 d1 3565 his PRP$
## 3566 d1 3566 mouth NN
## 3567 d1 3567 had VBD
## 3568 d1 3568 gone VBN
## 3569 d1 3569 very RB
## 3570 d1 3570 dry JJ
## 3571 d1 3571 . .
## 3572 d1 3572 '' ''
## 3573 d1 3573 . .
## 3574 d1 3574 . .
## 3575 d1 3575 . .
## 3576 d1 3576 are VBP
## 3577 d1 3577 going VBG
## 3578 d1 3578 . .
## 3579 d1 3579 . .
## 3580 d1 3580 . .
## 3581 d1 3581 to TO
## 3582 d1 3582 kill VB
## 3583 d1 3583 me PRP
## 3584 d1 3584 too RB
## 3585 d1 3585 ? .
## 3586 d1 3586 '' ''
## 3587 d1 3587 , ,
## 3588 d1 3588 Wormtail JJ
## 3589 d1 3589 , ,
## 3590 d1 3590 '' ''
## 3591 d1 3591 said VBD
## 3592 d1 3592 the DT
## 3593 d1 3593 cold JJ
## 3594 d1 3594 voice NN
## 3595 d1 3595 silkily RB
## 3596 d1 3596 , ,
## 3597 d1 3597 '' ''
## 3598 d1 3598 would MD
## 3599 d1 3599 I PRP
## 3600 d1 3600 kill VB
## 3601 d1 3601 you PRP
## 3602 d1 3602 ? .
## 3603 d1 3603 I PRP
## 3604 d1 3604 killed VBN
## 3605 d1 3605 Bertha NNP
## 3606 d1 3606 because IN
## 3607 d1 3607 I PRP
## 3608 d1 3608 had VBD
## 3609 d1 3609 to TO
## 3610 d1 3610 . .
## 3611 d1 3611 She PRP
## 3612 d1 3612 was VBD
## 3613 d1 3613 fit VB
## 3614 d1 3614 for IN
## 3615 d1 3615 nothing NN
## 3616 d1 3616 after IN
## 3617 d1 3617 my PRP$
## 3618 d1 3618 questioning VBG
## 3619 d1 3619 , ,
## 3620 d1 3620 quite RB
## 3621 d1 3621 useless JJ
## 3622 d1 3622 . .
## 3623 d1 3623 In IN
## 3624 d1 3624 any DT
## 3625 d1 3625 case NN
## 3626 d1 3626 , ,
## 3627 d1 3627 awkward JJ
## 3628 d1 3628 questions NNS
## 3629 d1 3629 would MD
## 3630 d1 3630 have VBP
## 3631 d1 3631 been VBN
## 3632 d1 3632 asked VBD
## 3633 d1 3633 if IN
## 3634 d1 3634 she PRP
## 3635 d1 3635 had VBD
## 3636 d1 3636 gone VBN
## 3637 d1 3637 back RB
## 3638 d1 3638 to TO
## 3639 d1 3639 the DT
## 3640 d1 3640 Ministry NNP
## 3641 d1 3641 with IN
## 3642 d1 3642 the DT
## 3643 d1 3643 news NN
## 3644 d1 3644 that IN
## 3645 d1 3645 she PRP
## 3646 d1 3646 had VBD
## 3647 d1 3647 met VBD
## 3648 d1 3648 you PRP
## 3649 d1 3649 on IN
## 3650 d1 3650 her PRP$
## 3651 d1 3651 holidays NNS
## 3652 d1 3652 . .
## 3653 d1 3653 Wizards NNS
## 3654 d1 3654 who WP
## 3655 d1 3655 are VBP
## 3656 d1 3656 supposed VBN
## 3657 d1 3657 to TO
## 3658 d1 3658 be VB
## 3659 d1 3659 dead JJ
## 3660 d1 3660 would MD
## 3661 d1 3661 do VBP
## 3662 d1 3662 well RB
## 3663 d1 3663 not RB
## 3664 d1 3664 to TO
## 3665 d1 3665 run VB
## 3666 d1 3666 into IN
## 3667 d1 3667 Ministry NNP
## 3668 d1 3668 of IN
## 3669 d1 3669 Magic NNP
## 3670 d1 3670 witches NNS
## 3671 d1 3671 at IN
## 3672 d1 3672 wayside NN
## 3673 d1 3673 inns NNS
## 3674 d1 3674 . .
## 3675 d1 3675 . .
## 3676 d1 3676 . .
## 3677 d1 3677 '' ''
## 3678 d1 3678 muttered VBN
## 3679 d1 3679 something NN
## 3680 d1 3680 so RB
## 3681 d1 3681 quietly RB
## 3682 d1 3682 that IN
## 3683 d1 3683 Frank NNP
## 3684 d1 3684 could MD
## 3685 d1 3685 not RB
## 3686 d1 3686 hear VB
## 3687 d1 3687 it PRP
## 3688 d1 3688 , ,
## 3689 d1 3689 but CC
## 3690 d1 3690 it PRP
## 3691 d1 3691 made VBN
## 3692 d1 3692 the DT
## 3693 d1 3693 second JJ
## 3694 d1 3694 man NN
## 3695 d1 3695 laugh NN
## 3696 d1 3696 - :
## 3697 d1 3697 - :
## 3698 d1 3698 an DT
## 3699 d1 3699 entirely RB
## 3700 d1 3700 mirthless JJ
## 3701 d1 3701 laugh NN
## 3702 d1 3702 , ,
## 3703 d1 3703 cold JJ
## 3704 d1 3704 as IN
## 3705 d1 3705 his PRP$
## 3706 d1 3706 speech NN
## 3707 d1 3707 . .
## 3708 d1 3708 '' ''
## 3709 d1 3709 could MD
## 3710 d1 3710 have VBP
## 3711 d1 3711 modified VBN
## 3712 d1 3712 her PRP$
## 3713 d1 3713 memory NN
## 3714 d1 3714 ? .
## 3715 d1 3715 But CC
## 3716 d1 3716 Memory NN
## 3717 d1 3717 Charms NNS
## 3718 d1 3718 can MD
## 3719 d1 3719 be VB
## 3720 d1 3720 broken VBN
## 3721 d1 3721 by IN
## 3722 d1 3722 a DT
## 3723 d1 3723 powerful JJ
## 3724 d1 3724 wizard NNP
## 3725 d1 3725 , ,
## 3726 d1 3726 as IN
## 3727 d1 3727 I PRP
## 3728 d1 3728 proved VBD
## 3729 d1 3729 when WRB
## 3730 d1 3730 I PRP
## 3731 d1 3731 questioned VBD
## 3732 d1 3732 her PRP$
## 3733 d1 3733 . .
## 3734 d1 3734 It PRP
## 3735 d1 3735 would MD
## 3736 d1 3736 be VB
## 3737 d1 3737 an DT
## 3738 d1 3738 insult NN
## 3739 d1 3739 to TO
## 3740 d1 3740 her PRP$
## 3741 d1 3741 memory NN
## 3742 d1 3742 not RB
## 3743 d1 3743 to TO
## 3744 d1 3744 use NN
## 3745 d1 3745 the DT
## 3746 d1 3746 information NN
## 3747 d1 3747 I PRP
## 3748 d1 3748 extracted VBN
## 3749 d1 3749 from IN
## 3750 d1 3750 her PRP$
## 3751 d1 3751 , ,
## 3752 d1 3752 Wormtail JJ
## 3753 d1 3753 . .
## 3754 d1 3754 '' ''
## 3755 d1 3755 in IN
## 3756 d1 3756 the DT
## 3757 d1 3757 corridor NN
## 3758 d1 3758 , ,
## 3759 d1 3759 Frank NNP
## 3760 d1 3760 suddenly RB
## 3761 d1 3761 became VBD
## 3762 d1 3762 aware JJ
## 3763 d1 3763 that IN
## 3764 d1 3764 the DT
## 3765 d1 3765 hand NN
## 3766 d1 3766 gripping JJ
## 3767 d1 3767 his PRP$
## 3768 d1 3768 walking VBG
## 3769 d1 3769 stick VB
## 3770 d1 3770 was VBD
## 3771 d1 3771 slippery JJ
## 3772 d1 3772 with IN
## 3773 d1 3773 sweat NN
## 3774 d1 3774 . .
## 3775 d1 3775 The DT
## 3776 d1 3776 man NN
## 3777 d1 3777 with IN
## 3778 d1 3778 the DT
## 3779 d1 3779 cold JJ
## 3780 d1 3780 voice NN
## 3781 d1 3781 had VBD
## 3782 d1 3782 killed VBN
## 3783 d1 3783 a DT
## 3784 d1 3784 woman NN
## 3785 d1 3785 . .
## 3786 d1 3786 He NN
## 3787 d1 3787 was VBD
## 3788 d1 3788 talking VBG
## 3789 d1 3789 about IN
## 3790 d1 3790 it PRP
## 3791 d1 3791 without IN
## 3792 d1 3792 any DT
## 3793 d1 3793 kind NN
## 3794 d1 3794 of IN
## 3795 d1 3795 remorse NN
## 3796 d1 3796 - :
## 3797 d1 3797 - :
## 3798 d1 3798 with IN
## 3799 d1 3799 amusement NN
## 3800 d1 3800 . .
## 3801 d1 3801 He PRP
## 3802 d1 3802 was VBD
## 3803 d1 3803 dangerous JJ
## 3804 d1 3804 - :
## 3805 d1 3805 - :
## 3806 d1 3806 a DT
## 3807 d1 3807 madman NN
## 3808 d1 3808 . .
## 3809 d1 3809 And CC
## 3810 d1 3810 he PRP
## 3811 d1 3811 was VBD
## 3812 d1 3812 planning NN
## 3813 d1 3813 more JJR
## 3814 d1 3814 murders NNS
## 3815 d1 3815 - :
## 3816 d1 3816 - :
## 3817 d1 3817 this DT
## 3818 d1 3818 boy NN
## 3819 d1 3819 , ,
## 3820 d1 3820 Harry NNP
## 3821 d1 3821 Potter NNP
## 3822 d1 3822 , ,
## 3823 d1 3823 whoever WP
## 3824 d1 3824 he PRP
## 3825 d1 3825 was VBD
## 3826 d1 3826 - :
## 3827 d1 3827 - :
## 3828 d1 3828 was VBD
## 3829 d1 3829 in IN
## 3830 d1 3830 danger NN
## 3831 d1 3831 - :
## 3832 d1 3832 - :
## 3833 d1 3833 Frank NNP
## 3834 d1 3834 knew VBD
## 3835 d1 3835 what WP
## 3836 d1 3836 he PRP
## 3837 d1 3837 must MD
## 3838 d1 3838 do VBP
## 3839 d1 3839 . .
## 3840 d1 3840 Now RB
## 3841 d1 3841 , ,
## 3842 d1 3842 if IN
## 3843 d1 3843 ever RB
## 3844 d1 3844 , ,
## 3845 d1 3845 was VBD
## 3846 d1 3846 the DT
## 3847 d1 3847 time NN
## 3848 d1 3848 to TO
## 3849 d1 3849 go VB
## 3850 d1 3850 to TO
## 3851 d1 3851 the DT
## 3852 d1 3852 police NN
## 3853 d1 3853 . .
## 3854 d1 3854 He PRP
## 3855 d1 3855 would MD
## 3856 d1 3856 creep NN
## 3857 d1 3857 out RP
## 3858 d1 3858 of IN
## 3859 d1 3859 the DT
## 3860 d1 3860 house NN
## 3861 d1 3861 and CC
## 3862 d1 3862 head NN
## 3863 d1 3863 straight JJ
## 3864 d1 3864 for IN
## 3865 d1 3865 the DT
## 3866 d1 3866 telephone NN
## 3867 d1 3867 box NN
## 3868 d1 3868 in IN
## 3869 d1 3869 the DT
## 3870 d1 3870 village NN
## 3871 d1 3871 . .
## 3872 d1 3872 . .
## 3873 d1 3873 . .
## 3874 d1 3874 but CC
## 3875 d1 3875 the DT
## 3876 d1 3876 cold JJ
## 3877 d1 3877 voice NN
## 3878 d1 3878 was VBD
## 3879 d1 3879 speaking VBG
## 3880 d1 3880 again RB
## 3881 d1 3881 , ,
## 3882 d1 3882 and CC
## 3883 d1 3883 Frank NNP
## 3884 d1 3884 remained VBD
## 3885 d1 3885 where WRB
## 3886 d1 3886 he PRP
## 3887 d1 3887 was VBD
## 3888 d1 3888 , ,
## 3889 d1 3889 frozen JJ
## 3890 d1 3890 to TO
## 3891 d1 3891 the DT
## 3892 d1 3892 spot NN
## 3893 d1 3893 , ,
## 3894 d1 3894 listening VBG
## 3895 d1 3895 with IN
## 3896 d1 3896 all DT
## 3897 d1 3897 his PRP$
## 3898 d1 3898 might MD
## 3899 d1 3899 . .
## 3900 d1 3900 '' ''
## 3901 d1 3901 more JJR
## 3902 d1 3902 murder NN
## 3903 d1 3903 . .
## 3904 d1 3904 . .
## 3905 d1 3905 . .
## 3906 d1 3906 my PRP$
## 3907 d1 3907 faithful NN
## 3908 d1 3908 servant JJ
## 3909 d1 3909 at IN
## 3910 d1 3910 Hogwarts NNS
## 3911 d1 3911 . .
## 3912 d1 3912 . .
## 3913 d1 3913 . .
## 3914 d1 3914 Harry NNP
## 3915 d1 3915 Potter NNP
## 3916 d1 3916 is VBZ
## 3917 d1 3917 as IN
## 3918 d1 3918 good JJ
## 3919 d1 3919 as IN
## 3920 d1 3920 mine NN
## 3921 d1 3921 , ,
## 3922 d1 3922 Wormtail JJ
## 3923 d1 3923 . .
## 3924 d1 3924 It PRP
## 3925 d1 3925 is VBZ
## 3926 d1 3926 decided VBD
## 3927 d1 3927 . .
## 3928 d1 3928 There EX
## 3929 d1 3929 will MD
## 3930 d1 3930 be VB
## 3931 d1 3931 no DT
## 3932 d1 3932 more JJR
## 3933 d1 3933 argument NN
## 3934 d1 3934 . .
## 3935 d1 3935 But CC
## 3936 d1 3936 quiet JJ
## 3937 d1 3937 . .
## 3938 d1 3938 . .
## 3939 d1 3939 . .
## 3940 d1 3940 I PRP
## 3941 d1 3941 think VBP
## 3942 d1 3942 I PRP
## 3943 d1 3943 hear VB
## 3944 d1 3944 Nagini NNP
## 3945 d1 3945 . .
## 3946 d1 3946 . .
## 3947 d1 3947 . .
## 3948 d1 3948 '' ''
## 3949 d1 3949 the DT
## 3950 d1 3950 second JJ
## 3951 d1 3951 man's NN
## 3952 d1 3952 voice NN
## 3953 d1 3953 changed VBN
## 3954 d1 3954 . .
## 3955 d1 3955 He PRP
## 3956 d1 3956 started VBD
## 3957 d1 3957 making VBG
## 3958 d1 3958 noises NNS
## 3959 d1 3959 such JJ
## 3960 d1 3960 as IN
## 3961 d1 3961 Frank NNP
## 3962 d1 3962 had VBD
## 3963 d1 3963 never RB
## 3964 d1 3964 heard VBN
## 3965 d1 3965 before IN
## 3966 d1 3966 ; :
## 3967 d1 3967 he PRP
## 3968 d1 3968 was VBD
## 3969 d1 3969 hissing VBG
## 3970 d1 3970 and CC
## 3971 d1 3971 spitting VBG
## 3972 d1 3972 without IN
## 3973 d1 3973 drawing VBG
## 3974 d1 3974 breath NN
## 3975 d1 3975 . .
## 3976 d1 3976 Frank NNP
## 3977 d1 3977 thought VBD
## 3978 d1 3978 he PRP
## 3979 d1 3979 must MD
## 3980 d1 3980 be VB
## 3981 d1 3981 having VBG
## 3982 d1 3982 some DT
## 3983 d1 3983 sort NN
## 3984 d1 3984 of IN
## 3985 d1 3985 fit VB
## 3986 d1 3986 or CC
## 3987 d1 3987 seizure NN
## 3988 d1 3988 . .
## 3989 d1 3989 And NNP
## 3990 d1 3990 then RB
## 3991 d1 3991 Frank NNP
## 3992 d1 3992 heard VBN
## 3993 d1 3993 movement NN
## 3994 d1 3994 behind IN
## 3995 d1 3995 him PRP
## 3996 d1 3996 in IN
## 3997 d1 3997 the DT
## 3998 d1 3998 dark JJ
## 3999 d1 3999 passageway NN
## 4000 d1 4000 . .
## 4001 d1 4001 He PRP
## 4002 d1 4002 turned VBD
## 4003 d1 4003 to TO
## 4004 d1 4004 look VB
## 4005 d1 4005 , ,
## 4006 d1 4006 and CC
## 4007 d1 4007 found VBD
## 4008 d1 4008 himself PRP
## 4009 d1 4009 paralyzed VBN
## 4010 d1 4010 with IN
## 4011 d1 4011 fright NN
## 4012 d1 4012 . .
## 4013 d1 4013 Something NN
## 4014 d1 4014 was VBD
## 4015 d1 4015 slithering VBG
## 4016 d1 4016 toward IN
## 4017 d1 4017 him PRP
## 4018 d1 4018 along IN
## 4019 d1 4019 the DT
## 4020 d1 4020 dark JJ
## 4021 d1 4021 corridor NN
## 4022 d1 4022 floor NN
## 4023 d1 4023 , ,
## 4024 d1 4024 and CC
## 4025 d1 4025 as IN
## 4026 d1 4026 it PRP
## 4027 d1 4027 drew VBD
## 4028 d1 4028 nearer IN
## 4029 d1 4029 to TO
## 4030 d1 4030 the DT
## 4031 d1 4031 sliver NN
## 4032 d1 4032 of IN
## 4033 d1 4033 firelight NN
## 4034 d1 4034 , ,
## 4035 d1 4035 he PRP
## 4036 d1 4036 realized VBD
## 4037 d1 4037 with IN
## 4038 d1 4038 a DT
## 4039 d1 4039 thrill NNP
## 4040 d1 4040 of IN
## 4041 d1 4041 terror NN
## 4042 d1 4042 that IN
## 4043 d1 4043 it PRP
## 4044 d1 4044 was VBD
## 4045 d1 4045 a DT
## 4046 d1 4046 gigantic JJ
## 4047 d1 4047 snake NN
## 4048 d1 4048 , ,
## 4049 d1 4049 at IN
## 4050 d1 4050 least JJS
## 4051 d1 4051 twelve CD
## 4052 d1 4052 feet NNS
## 4053 d1 4053 long JJ
## 4054 d1 4054 . .
## 4055 d1 4055 Horrified VBN
## 4056 d1 4056 , ,
## 4057 d1 4057 transfixed VBN
## 4058 d1 4058 , ,
## 4059 d1 4059 Frank NNP
## 4060 d1 4060 stared VBD
## 4061 d1 4061 as IN
## 4062 d1 4062 its PRP$
## 4063 d1 4063 undulating VBG
## 4064 d1 4064 body NN
## 4065 d1 4065 cut VB
## 4066 d1 4066 a DT
## 4067 d1 4067 wide JJ
## 4068 d1 4068 , ,
## 4069 d1 4069 curving VBG
## 4070 d1 4070 track NN
## 4071 d1 4071 through IN
## 4072 d1 4072 the DT
## 4073 d1 4073 thick JJ
## 4074 d1 4074 dust NN
## 4075 d1 4075 on IN
## 4076 d1 4076 the DT
## 4077 d1 4077 floor NN
## 4078 d1 4078 , ,
## 4079 d1 4079 coming VBG
## 4080 d1 4080 closer JJR
## 4081 d1 4081 and CC
## 4082 d1 4082 closer JJR
## 4083 d1 4083 - :
## 4084 d1 4084 - :
## 4085 d1 4085 What WP
## 4086 d1 4086 was VBD
## 4087 d1 4087 he PRP
## 4088 d1 4088 to TO
## 4089 d1 4089 do VBP
## 4090 d1 4090 ? .
## 4091 d1 4091 The DT
## 4092 d1 4092 only RB
## 4093 d1 4093 means VBZ
## 4094 d1 4094 of IN
## 4095 d1 4095 escape VB
## 4096 d1 4096 was VBD
## 4097 d1 4097 into IN
## 4098 d1 4098 the DT
## 4099 d1 4099 room NN
## 4100 d1 4100 where WRB
## 4101 d1 4101 the DT
## 4102 d1 4102 two CD
## 4103 d1 4103 men NNS
## 4104 d1 4104 sat VBD
## 4105 d1 4105 plotting VBG
## 4106 d1 4106 murder NN
## 4107 d1 4107 , ,
## 4108 d1 4108 yet RB
## 4109 d1 4109 if IN
## 4110 d1 4110 he PRP
## 4111 d1 4111 stayed VBD
## 4112 d1 4112 where WRB
## 4113 d1 4113 he PRP
## 4114 d1 4114 was VBD
## 4115 d1 4115 the DT
## 4116 d1 4116 snake NN
## 4117 d1 4117 would MD
## 4118 d1 4118 surely RB
## 4119 d1 4119 kill VB
## 4120 d1 4120 him PRP
## 4121 d1 4121 - :
## 4122 d1 4122 - :
## 4123 d1 4123 But CC
## 4124 d1 4124 before IN
## 4125 d1 4125 he PRP
## 4126 d1 4126 had VBD
## 4127 d1 4127 made VBN
## 4128 d1 4128 his PRP$
## 4129 d1 4129 decision NN
## 4130 d1 4130 , ,
## 4131 d1 4131 the DT
## 4132 d1 4132 snake NN
## 4133 d1 4133 was VBD
## 4134 d1 4134 level NN
## 4135 d1 4135 with IN
## 4136 d1 4136 him PRP
## 4137 d1 4137 , ,
## 4138 d1 4138 and CC
## 4139 d1 4139 then RB
## 4140 d1 4140 , ,
## 4141 d1 4141 incredibly RB
## 4142 d1 4142 , ,
## 4143 d1 4143 miraculously RB
## 4144 d1 4144 , ,
## 4145 d1 4145 it PRP
## 4146 d1 4146 was VBD
## 4147 d1 4147 passing VBG
## 4148 d1 4148 ; :
## 4149 d1 4149 it PRP
## 4150 d1 4150 was VBD
## 4151 d1 4151 following VBG
## 4152 d1 4152 the DT
## 4153 d1 4153 spitting VBG
## 4154 d1 4154 , ,
## 4155 d1 4155 hissing VBG
## 4156 d1 4156 noises NNS
## 4157 d1 4157 made VBN
## 4158 d1 4158 by IN
## 4159 d1 4159 the DT
## 4160 d1 4160 cold JJ
## 4161 d1 4161 voice NN
## 4162 d1 4162 beyond IN
## 4163 d1 4163 the DT
## 4164 d1 4164 door NN
## 4165 d1 4165 , ,
## 4166 d1 4166 and CC
## 4167 d1 4167 in IN
## 4168 d1 4168 seconds NNS
## 4169 d1 4169 , ,
## 4170 d1 4170 the DT
## 4171 d1 4171 tip NN
## 4172 d1 4172 of IN
## 4173 d1 4173 its PRP$
## 4174 d1 4174 diamond NN
## 4175 d1 4175 - :
## 4176 d1 4176 patterned VBN
## 4177 d1 4177 tail NN
## 4178 d1 4178 had VBD
## 4179 d1 4179 vanished VBN
## 4180 d1 4180 through IN
## 4181 d1 4181 the DT
## 4182 d1 4182 gap NN
## 4183 d1 4183 . .
## 4184 d1 4184 There RB
## 4185 d1 4185 was VBD
## 4186 d1 4186 sweat NN
## 4187 d1 4187 on IN
## 4188 d1 4188 Frank's NNP
## 4189 d1 4189 forehead NNP
## 4190 d1 4190 now RB
## 4191 d1 4191 , ,
## 4192 d1 4192 and CC
## 4193 d1 4193 the DT
## 4194 d1 4194 hand NN
## 4195 d1 4195 on IN
## 4196 d1 4196 the DT
## 4197 d1 4197 walking VBG
## 4198 d1 4198 stick VB
## 4199 d1 4199 was VBD
## 4200 d1 4200 trembling VBG
## 4201 d1 4201 . .
## 4202 d1 4202 Inside IN
## 4203 d1 4203 the DT
## 4204 d1 4204 room NN
## 4205 d1 4205 , ,
## 4206 d1 4206 the DT
## 4207 d1 4207 cold JJ
## 4208 d1 4208 voice NN
## 4209 d1 4209 was VBD
## 4210 d1 4210 continuing VBG
## 4211 d1 4211 to TO
## 4212 d1 4212 hiss NNP
## 4213 d1 4213 , ,
## 4214 d1 4214 and CC
## 4215 d1 4215 Frank NNP
## 4216 d1 4216 was VBD
## 4217 d1 4217 visited VBD
## 4218 d1 4218 by IN
## 4219 d1 4219 a DT
## 4220 d1 4220 strange JJ
## 4221 d1 4221 idea NN
## 4222 d1 4222 , ,
## 4223 d1 4223 an DT
## 4224 d1 4224 impossible JJ
## 4225 d1 4225 idea NN
## 4226 d1 4226 . .
## 4227 d1 4227 . .
## 4228 d1 4228 . .
## 4229 d1 4229 This DT
## 4230 d1 4230 man NN
## 4231 d1 4231 could MD
## 4232 d1 4232 talk VB
## 4233 d1 4233 to TO
## 4234 d1 4234 snakes NNS
## 4235 d1 4235 . .
## 4236 d1 4236 Frank NNP
## 4237 d1 4237 didn't NN
## 4238 d1 4238 understand VB
## 4239 d1 4239 what WP
## 4240 d1 4240 was VBD
## 4241 d1 4241 going VBG
## 4242 d1 4242 on IN
## 4243 d1 4243 . .
## 4244 d1 4244 He PRP
## 4245 d1 4245 wanted VBD
## 4246 d1 4246 more JJR
## 4247 d1 4247 than IN
## 4248 d1 4248 anything NN
## 4249 d1 4249 to TO
## 4250 d1 4250 be VB
## 4251 d1 4251 back RB
## 4252 d1 4252 in IN
## 4253 d1 4253 his PRP$
## 4254 d1 4254 bed NN
## 4255 d1 4255 with IN
## 4256 d1 4256 his PRP$
## 4257 d1 4257 hot JJ
## 4258 d1 4258 - :
## 4259 d1 4259 water NN
## 4260 d1 4260 bottle NN
## 4261 d1 4261 . .
## 4262 d1 4262 The DT
## 4263 d1 4263 problem NN
## 4264 d1 4264 was VBD
## 4265 d1 4265 that IN
## 4266 d1 4266 his PRP$
## 4267 d1 4267 legs NNS
## 4268 d1 4268 didn't NN
## 4269 d1 4269 seem VBP
## 4270 d1 4270 to TO
## 4271 d1 4271 want VBP
## 4272 d1 4272 to TO
## 4273 d1 4273 move NN
## 4274 d1 4274 . .
## 4275 d1 4275 As IN
## 4276 d1 4276 he PRP
## 4277 d1 4277 stood VBD
## 4278 d1 4278 there EX
## 4279 d1 4279 shaking VBG
## 4280 d1 4280 and CC
## 4281 d1 4281 trying VBG
## 4282 d1 4282 to TO
## 4283 d1 4283 master NN
## 4284 d1 4284 himself PRP
## 4285 d1 4285 , ,
## 4286 d1 4286 the DT
## 4287 d1 4287 cold JJ
## 4288 d1 4288 voice NN
## 4289 d1 4289 switched VBD
## 4290 d1 4290 abruptly RB
## 4291 d1 4291 to TO
## 4292 d1 4292 English NNP
## 4293 d1 4293 again RB
## 4294 d1 4294 . .
## 4295 d1 4295 '' ''
## 4296 d1 4296 has VBZ
## 4297 d1 4297 interesting JJ
## 4298 d1 4298 news NN
## 4299 d1 4299 , ,
## 4300 d1 4300 Wormtail JJ
## 4301 d1 4301 , ,
## 4302 d1 4302 '' ''
## 4303 d1 4303 it PRP
## 4304 d1 4304 said VBD
## 4305 d1 4305 . .
## 4306 d1 4306 '' ''
## 4307 d1 4307 - :
## 4308 d1 4308 indeed RB
## 4309 d1 4309 , ,
## 4310 d1 4310 My PRP$
## 4311 d1 4311 Lord NNP
## 4312 d1 4312 ? .
## 4313 d1 4313 '' ''
## 4314 d1 4314 said VBD
## 4315 d1 4315 Wormtail JJ
## 4316 d1 4316 . .
## 4317 d1 4317 '' ''
## 4318 d1 4318 , ,
## 4319 d1 4319 yes UH
## 4320 d1 4320 , ,
## 4321 d1 4321 '' ''
## 4322 d1 4322 said VBD
## 4323 d1 4323 the DT
## 4324 d1 4324 voice NN
## 4325 d1 4325 , ,
## 4326 d1 4326 '' ''
## 4327 d1 4327 to TO
## 4328 d1 4328 Nagini NNP
## 4329 d1 4329 , ,
## 4330 d1 4330 there EX
## 4331 d1 4331 is VBZ
## 4332 d1 4332 an DT
## 4333 d1 4333 old JJ
## 4334 d1 4334 Muggle VB
## 4335 d1 4335 standing NN
## 4336 d1 4336 right NN
## 4337 d1 4337 outside IN
## 4338 d1 4338 this DT
## 4339 d1 4339 room NN
## 4340 d1 4340 , ,
## 4341 d1 4341 listening VBG
## 4342 d1 4342 to TO
## 4343 d1 4343 every DT
## 4344 d1 4344 word NN
## 4345 d1 4345 we PRP
## 4346 d1 4346 say VBP
## 4347 d1 4347 . .
## 4348 d1 4348 '' ''
## 4349 d1 4349 didn't NN
## 4350 d1 4350 have VBP
## 4351 d1 4351 a DT
## 4352 d1 4352 chance NN
## 4353 d1 4353 to TO
## 4354 d1 4354 hide VB
## 4355 d1 4355 himself PRP
## 4356 d1 4356 . .
## 4357 d1 4357 There EX
## 4358 d1 4358 were VBD
## 4359 d1 4359 footsteps NNS
## 4360 d1 4360 and CC
## 4361 d1 4361 then RB
## 4362 d1 4362 the DT
## 4363 d1 4363 door NN
## 4364 d1 4364 of IN
## 4365 d1 4365 the DT
## 4366 d1 4366 room NN
## 4367 d1 4367 was VBD
## 4368 d1 4368 flung NNP
## 4369 d1 4369 wide JJ
## 4370 d1 4370 open JJ
## 4371 d1 4371 . .
## 4372 d1 4372 A NN
## 4373 d1 4373 short JJ
## 4374 d1 4374 , ,
## 4375 d1 4375 balding VBG
## 4376 d1 4376 man NN
## 4377 d1 4377 with IN
## 4378 d1 4378 graying VBG
## 4379 d1 4379 hair NN
## 4380 d1 4380 , ,
## 4381 d1 4381 a DT
## 4382 d1 4382 pointed VBD
## 4383 d1 4383 nose NN
## 4384 d1 4384 , ,
## 4385 d1 4385 and CC
## 4386 d1 4386 small JJ
## 4387 d1 4387 , ,
## 4388 d1 4388 watery JJ
## 4389 d1 4389 eyes NNS
## 4390 d1 4390 stood VBD
## 4391 d1 4391 before IN
## 4392 d1 4392 Frank NNP
## 4393 d1 4393 , ,
## 4394 d1 4394 a DT
## 4395 d1 4395 mixture NN
## 4396 d1 4396 of IN
## 4397 d1 4397 fear NN
## 4398 d1 4398 and CC
## 4399 d1 4399 alarm NN
## 4400 d1 4400 in IN
## 4401 d1 4401 his PRP$
## 4402 d1 4402 face NN
## 4403 d1 4403 . .
## 4404 d1 4404 '' ''
## 4405 d1 4405 him PRP
## 4406 d1 4406 inside IN
## 4407 d1 4407 , ,
## 4408 d1 4408 Wormtail JJ
## 4409 d1 4409 . .
## 4410 d1 4410 Where WRB
## 4411 d1 4411 are VBP
## 4412 d1 4412 your PRP$
## 4413 d1 4413 manners NNS
## 4414 d1 4414 ? .
## 4415 d1 4415 '' ''
## 4416 d1 4416 cold JJ
## 4417 d1 4417 voice NN
## 4418 d1 4418 was VBD
## 4419 d1 4419 coming VBG
## 4420 d1 4420 from IN
## 4421 d1 4421 the DT
## 4422 d1 4422 ancient JJ
## 4423 d1 4423 armchair NNP
## 4424 d1 4424 before IN
## 4425 d1 4425 the DT
## 4426 d1 4426 fire NN
## 4427 d1 4427 , ,
## 4428 d1 4428 but CC
## 4429 d1 4429 Frank NNP
## 4430 d1 4430 couldn't NN
## 4431 d1 4431 see VB
## 4432 d1 4432 the DT
## 4433 d1 4433 speaker NN
## 4434 d1 4434 . .
## 4435 d1 4435 the DT
## 4436 d1 4436 snake NN
## 4437 d1 4437 , ,
## 4438 d1 4438 on IN
## 4439 d1 4439 the DT
## 4440 d1 4440 other JJ
## 4441 d1 4441 hand NN
## 4442 d1 4442 , ,
## 4443 d1 4443 was VBD
## 4444 d1 4444 curled VBD
## 4445 d1 4445 up RP
## 4446 d1 4446 on IN
## 4447 d1 4447 the DT
## 4448 d1 4448 rotting VBG
## 4449 d1 4449 hearth JJ
## 4450 d1 4450 rug NN
## 4451 d1 4451 , ,
## 4452 d1 4452 like IN
## 4453 d1 4453 some DT
## 4454 d1 4454 horrible JJ
## 4455 d1 4455 travesty NN
## 4456 d1 4456 of IN
## 4457 d1 4457 a DT
## 4458 d1 4458 pet NN
## 4459 d1 4459 dog NN
## 4460 d1 4460 . .
## 4461 d1 4461 Wormtail JJ
## 4462 d1 4462 beckoned VBN
## 4463 d1 4463 Frank NNP
## 4464 d1 4464 into IN
## 4465 d1 4465 the DT
## 4466 d1 4466 room NN
## 4467 d1 4467 . .
## 4468 d1 4468 Though IN
## 4469 d1 4469 still RB
## 4470 d1 4470 deeply RB
## 4471 d1 4471 shaken VBN
## 4472 d1 4472 , ,
## 4473 d1 4473 Frank NNP
## 4474 d1 4474 took VBD
## 4475 d1 4475 a firmer NN
## 4476 d1 4476 grip NN
## 4477 d1 4477 on IN
## 4478 d1 4478 his PRP$
## 4479 d1 4479 walking VBG
## 4480 d1 4480 stick VB
## 4481 d1 4481 and CC
## 4482 d1 4482 limped VBN
## 4483 d1 4483 over IN
## 4484 d1 4484 the DT
## 4485 d1 4485 threshold NN
## 4486 d1 4486 . .
## 4487 d1 4487 The NNP
## 4488 d1 4488 fire NN
## 4489 d1 4489 was VBD
## 4490 d1 4490 the DT
## 4491 d1 4491 only RB
## 4492 d1 4492 source NN
## 4493 d1 4493 of IN
## 4494 d1 4494 light JJ
## 4495 d1 4495 in IN
## 4496 d1 4496 the DT
## 4497 d1 4497 room NN
## 4498 d1 4498 ; :
## 4499 d1 4499 it PRP
## 4500 d1 4500 cast NN
## 4501 d1 4501 long JJ
## 4502 d1 4502 , ,
## 4503 d1 4503 spidery NN
## 4504 d1 4504 shadows NNS
## 4505 d1 4505 upon IN
## 4506 d1 4506 the DT
## 4507 d1 4507 walls NNS
## 4508 d1 4508 . .
## 4509 d1 4509 Frank NNP
## 4510 d1 4510 stared VBD
## 4511 d1 4511 at IN
## 4512 d1 4512 the DT
## 4513 d1 4513 back RB
## 4514 d1 4514 of IN
## 4515 d1 4515 the DT
## 4516 d1 4516 armchair NNP
## 4517 d1 4517 ; :
## 4518 d1 4518 the DT
## 4519 d1 4519 man NN
## 4520 d1 4520 inside IN
## 4521 d1 4521 it PRP
## 4522 d1 4522 seemed VBD
## 4523 d1 4523 to TO
## 4524 d1 4524 be VB
## 4525 d1 4525 even RB
## 4526 d1 4526 smaller JJR
## 4527 d1 4527 than IN
## 4528 d1 4528 his PRP$
## 4529 d1 4529 servant JJ
## 4530 d1 4530 , ,
## 4531 d1 4531 for IN
## 4532 d1 4532 Frank NNP
## 4533 d1 4533 couldn't NN
## 4534 d1 4534 even RB
## 4535 d1 4535 see VB
## 4536 d1 4536 the DT
## 4537 d1 4537 back RB
## 4538 d1 4538 of IN
## 4539 d1 4539 his PRP$
## 4540 d1 4540 head NN
## 4541 d1 4541 . .
## 4542 d1 4542 '' ''
## 4543 d1 4543 heard VBN
## 4544 d1 4544 everything NN
## 4545 d1 4545 , ,
## 4546 d1 4546 Muggle VB
## 4547 d1 4547 ? .
## 4548 d1 4548 '' ''
## 4549 d1 4549 said VBD
## 4550 d1 4550 the DT
## 4551 d1 4551 cold JJ
## 4552 d1 4552 voice NN
## 4553 d1 4553 . .
## 4554 d1 4554 '' ''
## 4555 d1 4555 that IN
## 4556 d1 4556 you're NN
## 4557 d1 4557 calling VBG
## 4558 d1 4558 me PRP
## 4559 d1 4559 ? .
## 4560 d1 4560 '' ''
## 4561 d1 4561 said VBD
## 4562 d1 4562 Frank NNP
## 4563 d1 4563 defiantly RB
## 4564 d1 4564 , ,
## 4565 d1 4565 for IN
## 4566 d1 4566 now RB
## 4567 d1 4567 that IN
## 4568 d1 4568 he PRP
## 4569 d1 4569 was VBD
## 4570 d1 4570 inside IN
## 4571 d1 4571 the DT
## 4572 d1 4572 room NN
## 4573 d1 4573 , ,
## 4574 d1 4574 now RB
## 4575 d1 4575 that IN
## 4576 d1 4576 the DT
## 4577 d1 4577 time NN
## 4578 d1 4578 had VBD
## 4579 d1 4579 come VB
## 4580 d1 4580 for IN
## 4581 d1 4581 some DT
## 4582 d1 4582 sort NN
## 4583 d1 4583 of IN
## 4584 d1 4584 action NN
## 4585 d1 4585 , ,
## 4586 d1 4586 he PRP
## 4587 d1 4587 felt VBD
## 4588 d1 4588 braver NNP
## 4589 d1 4589 ; :
## 4590 d1 4590 it PRP
## 4591 d1 4591 had VBD
## 4592 d1 4592 always RB
## 4593 d1 4593 been VBN
## 4594 d1 4594 so RB
## 4595 d1 4595 in IN
## 4596 d1 4596 the DT
## 4597 d1 4597 war NN
## 4598 d1 4598 . .
## 4599 d1 4599 '' ''
## 4600 d1 4600 am VBP
## 4601 d1 4601 calling VBG
## 4602 d1 4602 you PRP
## 4603 d1 4603 a DT
## 4604 d1 4604 Muggle VB
## 4605 d1 4605 , ,
## 4606 d1 4606 '' ''
## 4607 d1 4607 said VBD
## 4608 d1 4608 the DT
## 4609 d1 4609 voice NN
## 4610 d1 4610 coolly RB
## 4611 d1 4611 . .
## 4612 d1 4612 '' ''
## 4613 d1 4613 means VBZ
## 4614 d1 4614 that IN
## 4615 d1 4615 you PRP
## 4616 d1 4616 are VBP
## 4617 d1 4617 not RB
## 4618 d1 4618 a DT
## 4619 d1 4619 wizard NNP
## 4620 d1 4620 . .
## 4621 d1 4621 '' ''
## 4622 d1 4622 don't NN
## 4623 d1 4623 know VB
## 4624 d1 4624 what WP
## 4625 d1 4625 you PRP
## 4626 d1 4626 mean VB
## 4627 d1 4627 by IN
## 4628 d1 4628 wizard NNP
## 4629 d1 4629 , ,
## 4630 d1 4630 '' ''
## 4631 d1 4631 said VBD
## 4632 d1 4632 Frank NNP
## 4633 d1 4633 , ,
## 4634 d1 4634 his PRP$
## 4635 d1 4635 voice NN
## 4636 d1 4636 growing VBG
## 4637 d1 4637 steadier JJR
## 4638 d1 4638 . .
## 4639 d1 4639 '' ''
## 4640 d1 4640 I PRP
## 4641 d1 4641 know VB
## 4642 d1 4642 is VBZ
## 4643 d1 4643 I've JJ
## 4644 d1 4644 heard VBN
## 4645 d1 4645 enough RB
## 4646 d1 4646 to TO
## 4647 d1 4647 interest NN
## 4648 d1 4648 the DT
## 4649 d1 4649 police NN
## 4650 d1 4650 tonight NN
## 4651 d1 4651 , ,
## 4652 d1 4652 I PRP
## 4653 d1 4653 have VBP
## 4654 d1 4654 . .
## 4655 d1 4655 You've JJ
## 4656 d1 4656 done VBN
## 4657 d1 4657 murder NN
## 4658 d1 4658 and CC
## 4659 d1 4659 you're NN
## 4660 d1 4660 planning NN
## 4661 d1 4661 more JJR
## 4662 d1 4662 ! .
## 4663 d1 4663 And CC
## 4664 d1 4664 I'll NNP
## 4665 d1 4665 tell VB
## 4666 d1 4666 youthis NNP
## 4667 d1 4667 too RB
## 4668 d1 4668 , ,
## 4669 d1 4669 '' ''
## 4670 d1 4670 he PRP
## 4671 d1 4671 added VBD
## 4672 d1 4672 , ,
## 4673 d1 4673 on IN
## 4674 d1 4674 a DT
## 4675 d1 4675 sudden JJ
## 4676 d1 4676 inspiration NN
## 4677 d1 4677 , ,
## 4678 d1 4678 '' ''
## 4679 d1 4679 wife NN
## 4680 d1 4680 knows VBZ
## 4681 d1 4681 I'm NNP
## 4682 d1 4682 up RP
## 4683 d1 4683 here RB
## 4684 d1 4684 , ,
## 4685 d1 4685 and CC
## 4686 d1 4686 if IN
## 4687 d1 4687 I PRP
## 4688 d1 4688 don't NN
## 4689 d1 4689 come VB
## 4690 d1 4690 back RB
## 4691 d1 4691 - :
## 4692 d1 4692 - :
## 4693 d1 4693 '' ''
## 4694 d1 4694 have VBP
## 4695 d1 4695 no DT
## 4696 d1 4696 wife NN
## 4697 d1 4697 , ,
## 4698 d1 4698 '' ''
## 4699 d1 4699 said VBD
## 4700 d1 4700 te NN
## 4701 d1 4701 cold JJ
## 4702 d1 4702 voice NN
## 4703 d1 4703 , ,
## 4704 d1 4704 very RB
## 4705 d1 4705 quietly RB
## 4706 d1 4706 . .
## 4707 d1 4707 '' ''
## 4708 d1 4708 knows VBZ
## 4709 d1 4709 you PRP
## 4710 d1 4710 are VBP
## 4711 d1 4711 here RB
## 4712 d1 4712 . .
## 4713 d1 4713 You PRP
## 4714 d1 4714 told VBD
## 4715 d1 4715 nobody NN
## 4716 d1 4716 that IN
## 4717 d1 4717 you PRP
## 4718 d1 4718 were VBD
## 4719 d1 4719 coming VBG
## 4720 d1 4720 . .
## 4721 d1 4721 Do VBP
## 4722 d1 4722 not RB
## 4723 d1 4723 lie VB
## 4724 d1 4724 to TO
## 4725 d1 4725 Lord NNP
## 4726 d1 4726 Voldemort NN
## 4727 d1 4727 , ,
## 4728 d1 4728 Muggle VB
## 4729 d1 4729 , ,
## 4730 d1 4730 for IN
## 4731 d1 4731 he PRP
## 4732 d1 4732 knows VBZ
## 4733 d1 4733 . .
## 4734 d1 4734 . .
## 4735 d1 4735 . .
## 4736 d1 4736 he PRP
## 4737 d1 4737 always RB
## 4738 d1 4738 knows VBZ
## 4739 d1 4739 . .
## 4740 d1 4740 . .
## 4741 d1 4741 . .
## 4742 d1 4742 '' ''
## 4743 d1 4743 that IN
## 4744 d1 4744 right NN
## 4745 d1 4745 ? .
## 4746 d1 4746 '' ''
## 4747 d1 4747 said VBD
## 4748 d1 4748 Frank NNP
## 4749 d1 4749 roughly RB
## 4750 d1 4750 . .
## 4751 d1 4751 '' ''
## 4752 d1 4752 , ,
## 4753 d1 4753 is VBZ
## 4754 d1 4754 it PRP
## 4755 d1 4755 ? .
## 4756 d1 4756 Well RB
## 4757 d1 4757 , ,
## 4758 d1 4758 I PRP
## 4759 d1 4759 don't NN
## 4760 d1 4760 think VBP
## 4761 d1 4761 much JJ
## 4762 d1 4762 of IN
## 4763 d1 4763 your PRP$
## 4764 d1 4764 manners NNS
## 4765 d1 4765 , ,
## 4766 d1 4766 My PRP$
## 4767 d1 4767 Lord NNP
## 4768 d1 4768 . .
## 4769 d1 4769 Turn NN
## 4770 d1 4770 'round NN
## 4771 d1 4771 and CC
## 4772 d1 4772 face NN
## 4773 d1 4773 me PRP
## 4774 d1 4774 like IN
## 4775 d1 4775 a DT
## 4776 d1 4776 man NN
## 4777 d1 4777 , ,
## 4778 d1 4778 why WRB
## 4779 d1 4779 don't NN
## 4780 d1 4780 you PRP
## 4781 d1 4781 ? .
## 4782 d1 4782 '' ''
## 4783 d1 4783 I PRP
## 4784 d1 4784 am VBP
## 4785 d1 4785 not RB
## 4786 d1 4786 a DT
## 4787 d1 4787 man NN
## 4788 d1 4788 , ,
## 4789 d1 4789 Muggle VB
## 4790 d1 4790 , ,
## 4791 d1 4791 '' ''
## 4792 d1 4792 said VBD
## 4793 d1 4793 the DT
## 4794 d1 4794 cold JJ
## 4795 d1 4795 voice NN
## 4796 d1 4796 , ,
## 4797 d1 4797 barely RB
## 4798 d1 4798 audible JJ
## 4799 d1 4799 now RB
## 4800 d1 4800 over IN
## 4801 d1 4801 the DT
## 4802 d1 4802 crackling VBG
## 4803 d1 4803 of IN
## 4804 d1 4804 the DT
## 4805 d1 4805 flames NNS
## 4806 d1 4806 . .
## 4807 d1 4807 '' ''
## 4808 d1 4808 am VBP
## 4809 d1 4809 much JJ
## 4810 d1 4810 , ,
## 4811 d1 4811 much JJ
## 4812 d1 4812 more JJR
## 4813 d1 4813 than IN
## 4814 d1 4814 a DT
## 4815 d1 4815 man NN
## 4816 d1 4816 . .
## 4817 d1 4817 However RB
## 4818 d1 4818 . .
## 4819 d1 4819 . .
## 4820 d1 4820 . .
## 4821 d1 4821 why WRB
## 4822 d1 4822 not RB
## 4823 d1 4823 ? .
## 4824 d1 4824 I PRP
## 4825 d1 4825 will MD
## 4826 d1 4826 face NN
## 4827 d1 4827 you PRP
## 4828 d1 4828 . .
## 4829 d1 4829 . .
## 4830 d1 4830 . .
## 4831 d1 4831 Wormtail JJ
## 4832 d1 4832 , ,
## 4833 d1 4833 come VB
## 4834 d1 4834 turn VB
## 4835 d1 4835 my PRP$
## 4836 d1 4836 chair NN
## 4837 d1 4837 around IN
## 4838 d1 4838 . .
## 4839 d1 4839 '' ''
## 4840 d1 4840 servant JJ
## 4841 d1 4841 gave VBD
## 4842 d1 4842 a DT
## 4843 d1 4843 whimper NN
## 4844 d1 4844 . .
## 4845 d1 4845 '' ''
## 4846 d1 4846 heard VBN
## 4847 d1 4847 me PRP
## 4848 d1 4848 , ,
## 4849 d1 4849 Wormtail JJ
## 4850 d1 4850 . .
## 4851 d1 4851 '' ''
## 4852 d1 4852 , ,
## 4853 d1 4853 with IN
## 4854 d1 4854 his PRP$
## 4855 d1 4855 face NN
## 4856 d1 4856 screwed VBN
## 4857 d1 4857 up RP
## 4858 d1 4858 , ,
## 4859 d1 4859 as IN
## 4860 d1 4860 though IN
## 4861 d1 4861 he PRP
## 4862 d1 4862 would MD
## 4863 d1 4863 rather RB
## 4864 d1 4864 have VBP
## 4865 d1 4865 done VBN
## 4866 d1 4866 anything NN
## 4867 d1 4867 than IN
## 4868 d1 4868 approach NN
## 4869 d1 4869 his PRP$
## 4870 d1 4870 master NN
## 4871 d1 4871 and CC
## 4872 d1 4872 the DT
## 4873 d1 4873 hearth JJ
## 4874 d1 4874 rug NN
## 4875 d1 4875 where WRB
## 4876 d1 4876 the DT
## 4877 d1 4877 snake NN
## 4878 d1 4878 lay VBD
## 4879 d1 4879 , ,
## 4880 d1 4880 the DT
## 4881 d1 4881 small JJ
## 4882 d1 4882 man NN
## 4883 d1 4883 walked VBD
## 4884 d1 4884 forward RB
## 4885 d1 4885 and CC
## 4886 d1 4886 began VBD
## 4887 d1 4887 to TO
## 4888 d1 4888 turn VB
## 4889 d1 4889 the DT
## 4890 d1 4890 chair NN
## 4891 d1 4891 . .
## 4892 d1 4892 The DT
## 4893 d1 4893 snake NN
## 4894 d1 4894 lifted VBN
## 4895 d1 4895 its PRP$
## 4896 d1 4896 ugly JJ
## 4897 d1 4897 triangular JJ
## 4898 d1 4898 head NN
## 4899 d1 4899 and CC
## 4900 d1 4900 hissed VBD
## 4901 d1 4901 slightly RB
## 4902 d1 4902 as IN
## 4903 d1 4903 the DT
## 4904 d1 4904 legs NNS
## 4905 d1 4905 of IN
## 4906 d1 4906 the DT
## 4907 d1 4907 chair NN
## 4908 d1 4908 snagged VBN
## 4909 d1 4909 on IN
## 4910 d1 4910 its PRP$
## 4911 d1 4911 rug NN
## 4912 d1 4912 . .
## 4913 d1 4913 And NNP
## 4914 d1 4914 then RB
## 4915 d1 4915 the DT
## 4916 d1 4916 chair NN
## 4917 d1 4917 was VBD
## 4918 d1 4918 facing VBG
## 4919 d1 4919 Frank NNP
## 4920 d1 4920 , ,
## 4921 d1 4921 and CC
## 4922 d1 4922 he PRP
## 4923 d1 4923 saw VBD
## 4924 d1 4924 what WP
## 4925 d1 4925 was VBD
## 4926 d1 4926 sitting VBG
## 4927 d1 4927 in IN
## 4928 d1 4928 it PRP
## 4929 d1 4929 . .
## 4930 d1 4930 His PRP$
## 4931 d1 4931 walking VBG
## 4932 d1 4932 stick VB
## 4933 d1 4933 fell VBD
## 4934 d1 4934 to TO
## 4935 d1 4935 the DT
## 4936 d1 4936 floor NN
## 4937 d1 4937 with IN
## 4938 d1 4938 a DT
## 4939 d1 4939 clatter NN
## 4940 d1 4940 . .
## 4941 d1 4941 He PRP
## 4942 d1 4942 opened VBD
## 4943 d1 4943 his PRP$
## 4944 d1 4944 mouth NN
## 4945 d1 4945 and CC
## 4946 d1 4946 let VB
## 4947 d1 4947 out RP
## 4948 d1 4948 a DT
## 4949 d1 4949 scream VB
## 4950 d1 4950 . .
## 4951 d1 4951 He PRP
## 4952 d1 4952 was VBD
## 4953 d1 4953 screaming VBG
## 4954 d1 4954 so RB
## 4955 d1 4955 loudly RB
## 4956 d1 4956 that IN
## 4957 d1 4957 he PRP
## 4958 d1 4958 never RB
## 4959 d1 4959 heard VBN
## 4960 d1 4960 the DT
## 4961 d1 4961 words NNS
## 4962 d1 4962 the DT
## 4963 d1 4963 thing NN
## 4964 d1 4964 in IN
## 4965 d1 4965 the DT
## 4966 d1 4966 chair NN
## 4967 d1 4967 spoke VBD
## 4968 d1 4968 as IN
## 4969 d1 4969 it PRP
## 4970 d1 4970 raised VBD
## 4971 d1 4971 a DT
## 4972 d1 4972 wand NNP
## 4973 d1 4973 . .
## 4974 d1 4974 There EX
## 4975 d1 4975 was VBD
## 4976 d1 4976 a DT
## 4977 d1 4977 flash VB
## 4978 d1 4978 of IN
## 4979 d1 4979 green JJ
## 4980 d1 4980 light JJ
## 4981 d1 4981 , ,
## 4982 d1 4982 a DT
## 4983 d1 4983 rushing VBG
## 4984 d1 4984 sound NN
## 4985 d1 4985 , ,
## 4986 d1 4986 and CC
## 4987 d1 4987 Frank NNP
## 4988 d1 4988 Bryce NNP
## 4989 d1 4989 crumpled VBN
## 4990 d1 4990 . .
## 4991 d1 4991 He PRP
## 4992 d1 4992 was VBD
## 4993 d1 4993 dead JJ
## 4994 d1 4994 before IN
## 4995 d1 4995 he PRP
## 4996 d1 4996 hit VBD
## 4997 d1 4997 the DT
## 4998 d1 4998 floor NN
## 4999 d1 4999 . .
## 5000 d1 5000 Two NN
## 5001 d1 5001 hundred CD
## 5002 d1 5002 miles NNS
## 5003 d1 5003 away RB
## 5004 d1 5004 , ,
## 5005 d1 5005 the DT
## 5006 d1 5006 boy NN
## 5007 d1 5007 called VBN
## 5008 d1 5008 Harry NNP
## 5009 d1 5009 Potter NNP
## 5010 d1 5010 woke VBD
## 5011 d1 5011 with IN
## 5012 d1 5012 a DT
## 5013 d1 5013 start VB
## 5014 d1 5014 . .
head(rdr_pos(create_tagger_r, x = df_r[1][1]))
## doc_id token_id token pos
## 1 d1 1 The DT
## 2 d1 2 villagers NNS
## 3 d1 3 of IN
## 4 d1 4 Little NNP
## 5 d1 5 Hangleron NNP
## 6 d1 6 still RB
pandas option at the beginning of the lecture to print out only a few rows.##python chunk
import spacy
nlp = spacy.load('en_core_web_sm')
spacy_pos_tagged = [(word, word.tag_, word.pos_) for word in nlp(df_py[0])]
pd.DataFrame(spacy_pos_tagged).T
## 0 1 2 3 4 ... 5233 5234 5235 5236 5237
## 0 The villagers of Little ... woke with a start .
## 1 _SP DT NNS IN NNP ... VBD IN DT NN .
## 2 SPACE DET NOUN ADP PROPN ... VERB ADP DET NOUN PUNCT
##
## [3 rows x 5238 columns]
nltk.##python chunk
from nltk.corpus import brown
default_tagger = nltk.DefaultTagger("NN")
brown_tagged = brown.tagged_sents()
##python chunk
from nltk.corpus import brown
size = int(len(brown_tagged) * 0.9)
train = brown_tagged[:size]
test = brown_tagged[size:]
unigram_tagger = nltk.UnigramTagger(train)
t0 = default_tagger
t1 = nltk.UnigramTagger(train, backoff=t0)
.evaluate function on your testing data to determine the accuracy of your tagger.##python chunk
unigram_tagger.evaluate(test)
## 0.8849353534083527
t1.evaluate(test)
## 0.8912742817627459
tagger.tag(book)[1:10] to print out only the first ten tags.##python chunk
tokens = brown.words()
pd.DataFrame(t0.tag(tokens))[:10]
## 0 1
## 0 The NN
## 1 Fulton NN
## 2 County NN
## 3 Grand NN
## 4 Jury NN
## 5 said NN
## 6 Friday NN
## 7 an NN
## 8 investigation NN
## 9 of NN
Examine the output from the different taggers we used to tag Harry Potter. It turns out that the combined tagger has the best accuracy.
Are there any immediate differences you can notice when tagging? R package and Python package gives different tagging results. A quick example here, “The” is noun using combined tagging, yet DT using RDR POS tagging.
Which tagger seems like the easiest to apply? RDR POS tagging seems to be the easiest to apply.
Why might the Brown corpus not be very good at tagging Harry Potter books? I think it can be capitalization that causes the problem.