>>sh rm -f LOG002-SECONDARY;
>>obey TEST002(compile_libs);
>>--------------------------------------------------------------------------
>>log;
>>
>>obey TEST002(create_tables);
>>--------------------------------------------------------------------------
>>create table doc_table (a int not null, text_data varchar(4000), primary key (a));

--- SQL operation complete.
>>insert into doc_table values
+> (1,'Hello world! Hello world! This is a sample ');

--- 1 row(s) inserted.
>>
>>create table t002_Timeseries(p int,
+>                     ts timestamp,
+>                     val1 int,
+>                     val2 numeric(9,2));

--- SQL operation complete.
>>insert into t002_Timeseries values
+> (1, timestamp '2015-01-01 00:00:00',  1,  1.00),
+> (1, timestamp '2015-01-01 00:01:00', 60, 60.00),
+> (2, timestamp '2015-01-01 00:00:03',  1,  1.00),
+> (2, timestamp '2015-01-01 00:01:00', 60, 60.00),
+> (3, timestamp '2015-01-01 00:00:00',  1,  1.00),
+> (3, timestamp '2015-01-01 00:00:00',  2,  2.00),
+> (3, timestamp '2015-01-01 00:00:06',  6,  6.00),
+> (3, timestamp '2015-01-01 00:00:07',  7,  6.00),
+> (3, timestamp '2015-01-01 00:00:30', 30,  null),
+> (3, timestamp '2015-01-01 00:00:35',null,   35),
+> (3, timestamp '2015-01-01 00:00:40',null, null),
+> (3, timestamp '2015-01-01 00:01:00', 60, 60.00);

--- 12 row(s) inserted.
>>
>>obey TEST002(register_functions);
>>--------------------------------------------------------------------------
>>
>>create library TEST002 file $$QUOTE$$ $$REGRRUNDIR$$/$$DLL$$ $$QUOTE$$;

--- SQL operation complete.
>>
>>create table_mapping function tokenizer(pattern char(1))
+>returns (outval char(40))
+>external name 'TOKENIZER'
+>language cpp
+>library TEST002;

--- SQL operation complete.
>>
>>-- Register tokenizer1 without column information
>>create table_mapping function tokenizer1(pattern char(1))
+>returns (outval char(40))
+>external name 'TOKENIZER'
+>library TEST002;

--- SQL operation complete.
>>
>>obey TEST002(tests);
>>--------------------------------------------------------------------------
>>select token, count(*) from
+>UDF(tokenizer(TABLE(select text_data from doc_table), ' ')) XO(token)
+>group by token order by 2,1;

TOKEN                                     (EXPR)              
----------------------------------------  --------------------

This                                                         1
a                                                            1
is                                                           1
sample                                                       1
Hello                                                        2
world!                                                       2

--- 6 row(s) selected.
>>
>>prepare s1 from
+>select * from 
+>UDF(tokenizer(TABLE(select text_data from 
+>doc_table where a < ?p2), cast(?p1 as char(1)))) XO(token);

--- SQL command prepared.
>>
>>set param ?p1 ' ' ;
>>set param ?p2 2;
>>execute s1 ;

TOKEN                                   
----------------------------------------

Hello                                   
world!                                  
Hello                                   
world!                                  
This                                    
is                                      
a                                       
sample                                  

--- 8 row(s) selected.
>>
>>select token, count(*) from 
+>UDF(tokenizer(TABLE(select * from (values
+>('This is the first row'),
+>('This is the second row'),
+>('This is the third row'),
+>('This is the fourth row'),
+>('This is the fifth row'),
+>('This is the sixth row'),
+>('This is the seventh row'),
+>('This is the eigth row')
+>) as val(text_data) ), ' ')) XO(token)
+>group by token 
+>order by token;

TOKEN                                     (EXPR)              
----------------------------------------  --------------------

This                                                         8
eigth                                                        1
fifth                                                        1
first                                                        1
fourth                                                       1
is                                                           8
row                                                          8
second                                                       1
seventh                                                      1
sixth                                                        1
the                                                          8
third                                                        1

--- 12 row(s) selected.
>>
>>select * from 
+>UDF(tokenizer(TABLE(select text_data from doc_table), 1)) XO(token);

*** ERROR[4455] The supplied type for input value 1 of user-defined function XO was NUMERIC(1) SIGNED which is not compatible with the expected type CHAR(1) CHARACTER SET ISO88591.

*** ERROR[8822] The statement was not prepared.

>>
>>
>>select * from 
+>UDF(tokenizer(TABLE(select text_data from doc_table), ' ', 1)) XO(token);

*** ERROR[4452] Function XO expects 1 input values but was called with 2 values.

*** ERROR[8822] The statement was not prepared.

>>
>>prepare s1 from
+>select token, count(*) from
+>UDF(tokenizer1(TABLE(select * from (values
+>(trim($$QUOTE$$ $$scriptsdir$$ $$QUOTE$$) || '/udr/romeo1.txt'),
+>(trim($$QUOTE$$ $$scriptsdir$$ $$QUOTE$$) || '/udr/romeo2.txt'),
+>(trim($$QUOTE$$ $$scriptsdir$$ $$QUOTE$$) || '/udr/romeo3.txt'),
+>(trim($$QUOTE$$ $$scriptsdir$$ $$QUOTE$$) || '/udr/romeo4.txt')
+>) as val(text_data) ), ' ')) XO(token)
+>group by token
+>order by 2,1;

--- SQL command prepared.
>>
>>execute s1 ;

TOKEN                                     (EXPR)              
----------------------------------------  --------------------

'                                                            1
'An                                                          1
'Ay                                                          1
'Ay,'                                                        1
'By                                                          1
'God                                                         1
'Hold,                                                       1
'I'                                                          1
'I';                                                         1
'I'll                                                        1
'I,'                                                         1
'I.'                                                         1
'It                                                          1
'Juliet.'                                                    1
'My                                                          1
'Proud,'                                                     1
'Signior                                                     1
'Then                                                        1
'Twixt                                                       1
'Tybalt                                                      1
'Tybalt's                                                    1
'When                                                        1
'Wilt                                                        1
'Your                                                        1
'banished'                                                   1
'banishment.'                                                1
'better:'                                                    1
'broad;'                                                     1
'death;'                                                     1
'dost                                                        1
'dove;'                                                      1
'for                                                         1
'gainst                                                      1
'havior                                                      1
'lady,                                                       1
'love'                                                       1
'man.'                                                       1
'marry'                                                      1
'not                                                         1
'pothecary,                                                  1
't                                                           1
'twere                                                       1
'twixt                                                       1
'twould                                                      1
A'                                                           1
Abate                                                        1
Above                                                        1
Accursed,                                                    1
Acquaint                                                     1
Adam                                                         1
Adding                                                       1
Adieu,                                                       1
Advances                                                     1
Adversity's                                                  1
Affection                                                    1
Affliction                                                   1
Afore                                                        1
After                                                        1
Against                                                      1
Ah.                                                          1
Alack!                                                       1
Alas                                                         1
Alike                                                        1
Alive,                                                       1
Alla                                                         1
Alone,                                                       1
Amen!                                                        1
Amen,                                                        1
Ancient                                                      1
Angelica:                                                    1
Anon                                                         1
Anselme                                                      1
Answer                                                       1
Antony,                                                      1
Any                                                          1
Appear                                                       1
April                                                        1
Arise,                                                       1
Arise;                                                       1
Arms,                                                        1
Ascend                                                       1
Athwart                                                      1
Aurora's                                                     1
Away,                                                        1
Back,                                                        1
Balthasar!                                                   1
Banish'd                                                     1
Bear                                                         1
Bearing                                                      1
Beats                                                        1
Beautiful                                                    1
Beauty                                                       1
Beg                                                          1
Begot                                                        1
Beguiled,                                                    1
Believe                                                      1
Belonging                                                    1
Benedicite!                                                  1
Benvolio                                                     1
Betroth'd                                                    1
Black                                                        1
Blind                                                        1
Bliss                                                        1
Blister'd                                                    1
Blubbering                                                   1
Bondage                                                      1
Boy,                                                         1
Brags                                                        1
Brief                                                        1
Bring                                                        1
Brother,                                                     1
By'r                                                         1
Call,                                                        1
Canker'd                                                     1
Cannot                                                       1
Capulet!                                                     1
Capulet,--Hold                                               1
Capulet,--which                                              1
Capulet.                                                     1
Capulet:                                                     1
Capulet?                                                     1
Capulets!                                                    1
Capulets:                                                    1
Care                                                         1
Cast                                                         1
Catling?                                                     1
Cheerly,                                                     1
Chequering                                                   1
Christian                                                    1
Church                                                       1
Cleopatra                                                    1
Clubs,                                                       1
Cold                                                         1
Comes                                                        1
Commend                                                      1
Compare                                                      1
Conceit,                                                     1
Condemned                                                    1
Consort!                                                     1
Contempt                                                     1
Content                                                      1
Cophetua                                                     1
Courage,                                                     1
Cry                                                          1
Culling                                                      1
Cupid,                                                       1
Cuts                                                         1
Cynthia's                                                    1
Day,                                                         1
Dead                                                         1
Death's.                                                     1
Delay                                                        1
Deny                                                         1
Depart                                                       1
Despised                                                     1
Despised,                                                    1
Dian's                                                       1
Dido                                                         1
Digressing                                                   1
Direct                                                       1
Displant                                                     1
Doing                                                        1
Doting                                                       1
Dove-feather'd                                               1
Down                                                         1
Draw                                                         1
Drawn                                                        1
Draws                                                        1
Drinks                                                       1
Driving                                                      1
Drums                                                        1
Each                                                         1
Earth-treading                                               1
Easter?                                                      1
Echo                                                         1
Else,                                                        1
Enough                                                       1
Enters                                                       1
Environed                                                    1
Ethiope's                                                    1
Every                                                        1
Eyes,                                                        1
Fain                                                         1
Farewell.                                                    1
Father,                                                      1
Feather                                                      1
Feeling                                                      1
Fetch                                                        1
Five                                                         1
Flies                                                        1
Flower                                                       1
Fly                                                          1
Follow                                                       1
Forbidden                                                    1
Forgetting                                                   1
Forgive                                                      1
Francis                                                      1
Francis,                                                     1
Franciscan                                                   1
Free-town,                                                   1
GREGORY,                                                     1
GREGORY]                                                     1
Gallop                                                       1
Gentle                                                       1
Go;                                                          1
God!--O                                                      1
God.                                                         1
God;                                                         1
Going                                                        1
Good-morrow,                                                 1
Gorged                                                       1
Graze                                                        1
Green                                                        1
Grief                                                        1
Griefs                                                       1
Grindstone                                                   1
Groan!                                                       1
Guests                                                       1
Ha!                                                          1
Ha,                                                          1
Hadst                                                        1
Haply                                                        1
Happily                                                      1
Happiness                                                    1
Hark,                                                        1
He'll                                                        1
He,                                                          1
Hear                                                         1
Heart's                                                      1
Heaven                                                       1
Helen                                                        1
Helena.'                                                     1
Help                                                         1
Hence-banished                                               1
Henceforth                                                   1
Here,                                                        1
Hero                                                         1
Herself                                                      1
Hist!                                                        1
Ho,                                                          1
Hold;                                                        1
Holding                                                      1
Hood                                                         1
Howlings                                                     1
Hugh                                                         1
Hunting                                                      1
I!                                                           1
I'                                                           1
I:--Well,                                                    1
II                                                           1
III                                                          1
IV                                                           1
Immediately                                                  1
Immoderately                                                 1
Inherit                                                      1
Italy,                                                       1
JULIET]                                                      1
Jack                                                         1
Jack!                                                        1
Jacks;                                                       1
James                                                        1
Jesu                                                         1
Jove                                                         1
Juliet;                                                      1
Killing                                                      1
King                                                         1
Kisses                                                       1
Lady                                                         1
Lady!                                                        1
Lammas-tide?                                                 1
Laura                                                        1
Laurence                                                     1
Laurence?                                                    1
Lead,                                                        1
Leap                                                         1
Leave                                                        1
Let's                                                        1
Life                                                         1
Lifts                                                        1
Light                                                        1
Live                                                         1
Live,                                                        1
Livia;                                                       1
Lo,                                                          1
Lord!                                                        1
Lovers                                                       1
Lucentio,                                                    1
Lucio                                                        1
Made                                                         1
Maintains                                                    1
Makes                                                        1
Making                                                       1
Mantua's                                                     1
Mantua:--                                                    1
Maria,                                                       1
Martino                                                      1
Maskers                                                      1
Maskers,                                                     1
Mass,                                                        1
Me                                                           1
Meaning                                                      1
Meaning,                                                     1
Men's                                                        1
Mercutio!                                                    1
Mercutio;                                                    1
Mercutio?                                                    1
Mercy                                                        1
Methinks                                                     1
Mis-shapen                                                   1
Miscarried                                                   1
Misshapen                                                    1
Mist-like,                                                   1
Mistress!                                                    1
Monday!                                                      1
Monday,                                                      1
Montague's                                                   1
Montague's.                                                  1
Montague,--                                                  1
Montagues!                                                   1
Montagues.                                                   1
Montagues:                                                   1
Move                                                         1
Much                                                         1
Murder'd                                                     1
Musicians,                                                   1
Myself                                                       1
NURSE                                                        1
Ne'er                                                        1
Need                                                         1
Neither,                                                     1
Nell.                                                        1
Never                                                        1
News                                                         1
Night's                                                      1
None                                                         1
Noting                                                       1
Nurse?                                                       1
O'                                                           1
O'er-cover'd                                                 1
O?                                                           1
Obey,                                                        1
Old                                                          1
On,                                                          1
Once                                                         1
One,                                                         1
Open                                                         1
Opens                                                        1
Out,                                                         1
Out--                                                        1
PRINCE,                                                      1
Page,                                                        1
Pale,                                                        1
Pardon                                                       1
Pardon,                                                      1
Paris!                                                       1
Paris.                                                       1
Part,                                                        1
Patience                                                     1
Peer'd                                                       1
Perchance                                                    1
Perhaps                                                      1
Peter.                                                       1
Petrarch                                                     1
Petrucio.                                                    1
Phaethon                                                     1
Phoebus'                                                     1
Pink                                                         1
Piteous                                                      1
Pitiful                                                      1
Placentio                                                    1
Play'd                                                       1
PlayRomeo                                                    1
Poison                                                       1
Poison,                                                      1
Potpan!                                                      1
Potpan,                                                      1
Prepare                                                      1
Pretty                                                       1
Pretty!                                                      1
Prick                                                        1
Prick'd                                                      1
Prodigious                                                   1
Profaners                                                    1
Proportion'd                                                 1
Proud                                                        1
Pursued                                                      1
Quarrel                                                      1
Queen                                                        1
R                                                            1
R.                                                           1
ROMEO,                                                       1
Raise                                                        1
Rather                                                       1
Read                                                         1
Reads                                                        1
Ready                                                        1
Rebeck?                                                      1
Rebellious                                                   1
Receive                                                      1
Remembering                                                  1
Remnants                                                     1
Rest                                                         1
Retain                                                       1
Retiring                                                     1
Retorts                                                      1
Return'd                                                     1
Revive,                                                      1
Revolts                                                      1
Riddling                                                     1
Right                                                        1
Right.                                                       1
Romeo's,                                                     1
Romeo,--                                                     1
Romeo--banished;'                                            1
Rosaline                                                     1
Rosaline!                                                    1
Rosaline's                                                   1
Rosaline:                                                    1
Rosaline;                                                    1
Rosaline?                                                    1
Run                                                          1
Said                                                         1
Sailing                                                      1
Saints                                                       1
Scaring                                                      1
Seal                                                         1
Seal'd                                                       1
Search,                                                      1
Seeking                                                      1
Servant,                                                     1
Servants                                                     1
Servingman]                                                  1
Servingmen,                                                  1
Shake                                                        1
Shakespeare                                                  1
Shall,                                                       1
Shalt                                                        1
Shame                                                        1
Sharp                                                        1
She,                                                         1
Shot                                                         1
Should,                                                      1
Shut                                                         1
Shuts                                                        1
Simon                                                        1
Sin                                                          1
Singing                                                      1
Sings                                                        1
Sir,                                                         1
Sitting                                                      1
Snatching                                                    1
Sojourn                                                      1
Sole                                                         1
Soon                                                         1
Soundpost?                                                   1
Sovereign,                                                   1
Spakest                                                      1
Spanish                                                      1
Spare                                                        1
Speak,                                                       1
Speakest                                                     1
Spread                                                       1
Stabs                                                        1
Stands                                                       1
Staying                                                      1
Still                                                        1
Still-waking                                                 1
Straining                                                    1
Strange                                                      1
Strike,                                                      1
Stuff'd,                                                     1
Subtly                                                       1
Supper                                                       1
Sups                                                         1
Suspecting                                                   1
Switch                                                       1
Talk                                                         1
Tartar's                                                     1
Tempering                                                    1
Thank                                                        1
Thee                                                         1
Their                                                        1
There's                                                      1
They'll                                                      1
Think                                                        1
This,                                                        1
Thisbe                                                       1
Thou!                                                        1
Thou,                                                        1
Throw                                                        1
Throws                                                       1
Thursday;                                                    1
Thursday?                                                    1
Tiberio.                                                     1
Tickle                                                       1
Tickling                                                     1
Ties                                                         1
Time                                                         1
Titan's                                                      1
To-night                                                     1
Together                                                     1
Torch-bearers,                                               1
Torments                                                     1
Transparent                                                  1
True,                                                        1
True;                                                        1
Trust                                                        1
Turning                                                      1
Two,                                                         1
Tybalt;                                                      1
Tybalts.                                                     1
Uncle,                                                       1
Uncomfortable                                                1
Undraws                                                      1
Uneven                                                       1
Unfold                                                       1
Unhappy                                                      1
Unplagued                                                    1
Unseemly                                                     1
Unwieldy,                                                    1
Unworthy                                                     1
Up                                                           1
Up,                                                          1
Up.                                                          1
Utter                                                        1
V                                                            1
VI.                                                          1
Valentine;                                                   1
Valentio                                                     1
Verona!--How                                                 1
Verona.                                                      1
Verona:                                                      1
Verona;                                                      1
Vile                                                         1
Villain                                                      1
Virtue                                                       1
Vitravio;                                                    1
Warm                                                         1
Wash                                                         1
Weeping                                                      1
Welcome                                                      1
Wert                                                         1
What?                                                        1
Whate'er                                                     1
Whereto                                                      1
While                                                        1
Whipp'd                                                      1
Whiter                                                       1
Whither?                                                     1
Who,                                                         1
Whole                                                        1
Wife!                                                        1
Wisely                                                       1
Wives,                                                       1
Women                                                        1
Wouldst                                                      1
Ye                                                           1
Yon                                                          1
You,                                                         1
Younger                                                      1
[Aside                                                       1
a'?                                                          1
a-bed                                                        1
a-bleeding;                                                  1
a-weary,                                                     1
abbey                                                        1
abhorred                                                     1
abhors                                                       1
aboard;                                                      1
abound'st                                                    1
about!                                                       1
about.                                                       1
about;                                                       1
above,                                                       1
abroach?                                                     1
abroad,                                                      1
abroad;                                                      1
abroad?                                                      1
absolved.                                                    1
abuse:                                                       1
abused                                                       1
abuses:                                                      1
accents!                                                     1
access                                                       1
accident,                                                    1
accidents;                                                   1
according                                                    1
account                                                      1
account!                                                     1
accustom'd                                                   1
ache!                                                        1
aches!                                                       1
aching                                                       1
acknowledge                                                  1
acquaintance                                                 1
act                                                          1
act,                                                         1
acted                                                        1
acting                                                       1
action                                                       1
acts                                                         1
add                                                          1
added                                                        1
addle                                                        1
adieu;                                                       1
adjacent                                                     1
admired                                                      1
ado,--a                                                      1
advance                                                      1
advanced:                                                    1
adventure                                                    1
adventure.                                                   1
adversary,                                                   1
advise:                                                      1
afeard.                                                      1
affecting                                                    1
affection                                                    1
affections'                                                  1
afflicted                                                    1
afford.                                                      1
affords                                                      1
affray,                                                      1
affright                                                     1
afire                                                        1
afraid                                                       1
after?                                                       1
afternoon;                                                   1
again,--                                                     1
again:                                                       1
again?                                                       1
agate-stone                                                  1
age.                                                         1
age:                                                         1
age;                                                         1
age?                                                         1
agile                                                        1
agree,                                                       1
agrees                                                       1
ah                                                           1
aim'd                                                        1
air.                                                         1
alack                                                        1
alas                                                         1
alderman,                                                    1
alike                                                        1
alike;                                                       1
alive,                                                       1
all-cheering                                                 1
all-seeing                                                   1
all?                                                         1
alliance                                                     1
alligator                                                    1
allow;                                                       1
ally,                                                        1
along                                                        1
along;                                                       1
aloof:                                                       1
aloud,                                                       1
aloud;                                                       1
already:                                                     1
although                                                     1
am.                                                          1
am:                                                          1
amazed                                                       1
amazed:                                                      1
ambiguities,                                                 1
ambling;                                                     1
ambuscadoes,                                                 1
amen!                                                        1
amen,                                                        1
amended.                                                     1
amerce                                                       1
amorous                                                      1
amorous,                                                     1
anatomy                                                      1
ancestors                                                    1
and--God-den,                                                1
angel!                                                       1
angelical!                                                   1
angels                                                       1
anger'd,                                                     1
angry                                                        1
anguish;                                                     1
anon                                                         1
anon!                                                        1
anon.--But                                                   1
antic                                                        1
antic,                                                       1
apace,                                                       1
apace.                                                       1
ape                                                          1
apology?                                                     1
apothecary,--                                                1
appears                                                      1
appertaining                                                 1
appetite:                                                    1
approach:                                                    1
arbitrating                                                  1
are.                                                         1
are:                                                         1
are;                                                         1
argues                                                       1
argument                                                     1
arise;                                                       1
arithmetic!                                                  1
arm'd                                                        1
arm'd,                                                       1
arm,                                                         1
arm.                                                         1
armed                                                        1
armour                                                       1
arms,                                                        1
array                                                        1
array;                                                       1
arrives                                                      1
arrow;                                                       1
art:                                                         1
artificial                                                   1
as't                                                         1
ashamed                                                      1
aside                                                        1
aside,                                                       1
aside;                                                       1
ask'd                                                        1
ask?                                                         1
asking:                                                      1
asleep                                                       1
asleep!                                                      1
asleep;                                                      1
aspired                                                      1
assailing                                                    1
assembly:                                                    1
assistant                                                    1
associate                                                    1
assure                                                       1
asunder.--                                                   1
atomies                                                      1
attach.                                                      1
attempt;                                                     1
attend,                                                      1
attended;                                                    1
attending                                                    1
attires                                                      1
augmenting                                                   1
awake                                                        1
awake,                                                       1
awaking,                                                     1
away,                                                        1
away:                                                        1
away;                                                        1
awhile!                                                      1
awhile.                                                      1
awhile:                                                      1
awhile?                                                      1
axe,                                                         1
ay?                                                          1
babe                                                         1
bachelor,                                                    1
back!                                                        1
backs,                                                       1
bad                                                          1
bad'st                                                       1
bait                                                         1
baked                                                        1
bakes                                                        1
baleful                                                      1
ball;                                                        1
bandy                                                        1
bandying                                                     1
banish'd;                                                    1
banished!'                                                   1
banished,'                                                   1
banished;                                                    1
banishment!                                                  1
banishment,                                                  1
banishment:                                                  1
bankrupt,                                                    1
banquet                                                      1
baptized;                                                    1
bare-foot                                                    1
bargain                                                      1
bark                                                         1
bark!                                                        1
bark,                                                        1
basket                                                       1
baskets                                                      1
bating                                                       1
battlements                                                  1
bauble                                                       1
bawd!                                                        1
bawdy                                                        1
be-rhyme                                                     1
be;                                                          1
bear,                                                        1
beard,                                                       1
bearing                                                      1
bears                                                        1
bears;                                                       1
beast:                                                       1
beasts,                                                      1
beaten                                                       1
beauties                                                     1
beauties.                                                    1
beauties;                                                    1
beautify                                                     1
beauty,                                                      1
beauty:                                                      1
becomed                                                      1
becomes                                                      1
bed:                                                         1
bedaub'd                                                     1
bedeck                                                       1
been,                                                        1
beetle                                                       1
befits                                                       1
before:                                                      1
beg,                                                         1
began                                                        1
began?                                                       1
beggar's                                                     1
beggar-maid!                                                 1
beggarly                                                     1
beggars                                                      1
beggary                                                      1
begin.                                                       1
beginners                                                    1
begone;                                                      1
beguil'd,                                                    1
beguiled,                                                    1
begun.                                                       1
behalf;                                                      1
behavior,                                                    1
behests,                                                     1
behold!                                                      1
behold,                                                      1
behoveful                                                    1
bell,                                                        1
bells,                                                       1
belong                                                       1
belonging                                                    1
beloved                                                      1
below,                                                       1
bench?                                                       1
benefice:                                                    1
bent                                                         1
bepaint                                                      1
bescreen'd                                                   1
beseeming                                                    1
best:                                                        1
bestride                                                     1
bestrides                                                    1
betake                                                       1
betossed                                                     1
better,                                                      1
better.                                                      1
betwitched                                                   1
bide                                                         1
bids                                                         1
bier                                                         1
bier!                                                        1
bigger                                                       1
bigger;                                                      1
bills,                                                       1
bird's                                                       1
bird.                                                        1
bird;                                                        1
birds                                                        1
birth                                                        1
bit                                                          1
bitter,                                                      1
bitterly                                                     1
bitterly:                                                    1
black,                                                       1
black-brow'd                                                 1
bladders                                                     1
blade                                                        1
blade!                                                       1
blades,                                                      1
blame,                                                       1
blaze                                                        1
blazon                                                       1
bleeding,                                                    1
bleeds!                                                      1
blessed,                                                     1
blessing                                                     1
blessings                                                    1
blest                                                        1
blest,                                                       1
bliss                                                        1
blisters                                                     1
blood.                                                       1
bloody;                                                      1
blows,                                                       1
blubbering.                                                  1
blush,                                                       1
blushing                                                     1
bodes:                                                       1
bodies:                                                      1
body.                                                        1
boisterous,                                                  1
bon                                                          1
bones!                                                       1
bones:                                                       1
bones?                                                       1
book!                                                        1
book.                                                        1
book:                                                        1
books,                                                       1
booted                                                       1
born!                                                        1
borne                                                        1
borrow                                                       1
bosom!                                                       1
bosom's                                                      1
bosom:                                                       1
both!                                                        1
both:                                                        1
both;                                                        1
bought                                                       1
bound.                                                       1
bound?                                                       1
boundless                                                    1
bounds                                                       1
bounty                                                       1
bout                                                         1
bow'd,                                                       1
bow-boy's                                                    1
bower                                                        1
bowl;                                                        1
boxes,                                                       1
boy                                                          1
boy.                                                         1
boys;                                                        1
brace                                                        1
braggart,                                                    1
brags                                                        1
brain                                                        1
brain,                                                       1
brain:--but,                                                 1
brains,                                                      1
brains?                                                      1
brawl:                                                       1
brawl;                                                       1
brawling                                                     1
brawls                                                       1
brawls,                                                      1
breaches,                                                    1
bread!                                                       1
break,                                                       1
breaks?                                                      1
breast                                                       1
breast:                                                      1
breath:                                                      1
breathe                                                      1
breathes                                                     1
breaths                                                      1
bred                                                         1
bride                                                        1
bride!                                                       1
bridegroom?                                                  1
brief                                                        1
brief,                                                       1
brief.                                                       1
brief:                                                       1
briefly,                                                     1
bright!                                                      1
brightness                                                   1
brine                                                        1
bring.                                                       1
bringing                                                     1
brings                                                       1
brings;                                                      1
brisk                                                        1
broad!                                                       1
broke                                                        1
broke;                                                       1
broken                                                       1
brother,                                                     1
brotherhood,                                                 1
brought                                                      1
brow:                                                        1
brow;                                                        1
brows,                                                       1
bucklers                                                     1
budge                                                        1
buds                                                         1
bump                                                         1
burial                                                       1
burn.                                                        1
burneth                                                      1
burning                                                      1
burning,                                                     1
burns                                                        1
burying                                                      1
busied                                                       1
business                                                     1
business,                                                    1
business.                                                    1
busy,                                                        1
butcher                                                      1
butt-shaft:                                                  1
button,                                                      1
by!                                                          1
by.                                                          1
by?                                                          1
caetera,                                                     1
cage                                                         1
caitiff                                                      1
cakes                                                        1
calamity.                                                    1
call'd,                                                      1
called                                                       1
called,                                                      1
calling                                                      1
calls;                                                       1
calm                                                         1
cancell'd                                                    1
candle-holder,                                               1
candles                                                      1
canker                                                       1
canker'd                                                     1
cannon's                                                     1
cannot,                                                      1
cannot:                                                      1
canopy                                                       1
captain                                                      1
careful                                                      1
carelessly,                                                  1
carriage:                                                    1
carries                                                      1
carrion!                                                     1
carrion-flies                                                1
case!                                                        1
case.                                                        1
cat                                                          1
cat,                                                         1
catch                                                        1
catch'd                                                      1
cause,                                                       1
cause:                                                       1
cause?                                                       1
cave                                                         1
cave?                                                        1
cease.                                                       1
centre                                                       1
certain                                                      1
chain                                                        1
challenge                                                    1
challenge,                                                   1
chamber-maids;                                               1
chance!                                                      1
chances                                                      1
change,                                                      1
changed                                                      1
changed?                                                     1
changes                                                      1
chaos                                                        1
chapless                                                     1
chariot                                                      1
charm                                                        1
charnel-house,                                               1
chase,                                                       1
chaste?                                                      1
chastity                                                     1
chat                                                         1
cheek!                                                       1
cheerful                                                     1
cheerly,                                                     1
cheers                                                       1
cherish;                                                     1
cherishing.                                                  1
cheveril,                                                    1
chid'st                                                      1
chide.                                                       1
chiefly                                                      1
child's                                                      1
child:                                                       1
childhood                                                    1
childish                                                     1
children's                                                   1
chinks.                                                      1
choice                                                       1
choice;                                                      1
choking                                                      1
choler                                                       1
choler,                                                      1
chop-logic!                                                  1
church-door;                                                 1
church:                                                      1
church;                                                      1
church?                                                      1
churchyard,                                                  1
churchyard.                                                  1
churchyard:                                                  1
churl!                                                       1
circle                                                       1
circled                                                      1
circumstance                                                 1
circumstance:                                                1
city's                                                       1
city,                                                        1
claps                                                        1
clasps                                                       1
clear                                                        1
clears,                                                      1
cleft                                                        1
climb                                                        1
climb,                                                       1
climbs                                                       1
cloak                                                        1
clock                                                        1
closely                                                      1
closet,                                                      1
clothes!                                                     1
cloudy                                                       1
clout                                                        1
club,                                                        1
clubs                                                        1
coachmakers.                                                 1
coals.                                                       1
cock                                                         1
cock-a-hoop!                                                 1
cockatrice:                                                  1
cockerel's                                                   1
coil!                                                        1
cold,                                                        1
cold:                                                        1
coldly                                                       1
collar.                                                      1
collars                                                      1
colliers.                                                    1
combine                                                      1
combined,                                                    1
come:                                                        1
come:--                                                      1
come;                                                        1
come?                                                        1
comes!                                                       1
comes.                                                       1
comes:                                                       1
comes?                                                       1
comest                                                       1
comfort,                                                     1
comfort;                                                     1
comfortable                                                  1
comforted                                                    1
coming.                                                      1
coming;                                                      1
commission                                                   1
company.                                                     1
compare                                                      1
compare:                                                     1
compass                                                      1
complain,                                                    1
compliment!                                                  1
compliments.                                                 1
compounds                                                    1
conceal'd                                                    1
conceit                                                      1
conceive?                                                    1
concludes                                                    1
condemned                                                    1
conduct,                                                     1
conduit,                                                     1
confess,                                                     1
confessor,                                                   1
confessor.                                                   1
confidence                                                   1
confines                                                     1
confounds                                                    1
confusion's                                                  1
confusions.                                                  1
conjurations,                                                1
conjured                                                     1
conquer'd;                                                   1
consents.                                                    1
consequence                                                  1
considering                                                  1
consort                                                      1
consort!                                                     1
consort'st                                                   1
consorted                                                    1
conspires                                                    1
constable's                                                  1
constrains                                                   1
consume:                                                     1
contagion,                                                   1
containing                                                   1
content                                                      1
content,                                                     1
continuance                                                  1
continue                                                     1
contract                                                     1
contradict                                                   1
contrary                                                     1
contrary.                                                    1
contrary?                                                    1
conveniently                                                 1
convert                                                      1
convey                                                       1
convoy                                                       1
cook                                                         1
cook,                                                        1
cooks.                                                       1
copest                                                       1
cordial                                                      1
cords,                                                       1
cords.                                                       1
cords:                                                       1
corns                                                        1
corns;                                                       1
corse                                                        1
corse:                                                       1
cost.                                                        1
cot-quean,                                                   1
couch                                                        1
coughing                                                     1
couldst                                                      1
couldst,                                                     1
counsel.                                                     1
counsel:                                                     1
counsel?                                                     1
counsellor,                                                  1
counsellor;                                                  1
count,                                                       1
counterfeit'st                                               1
countervail                                                  1
country                                                      1
counts                                                       1
county's                                                     1
couple                                                       1
courageous                                                   1
course                                                       1
course.                                                      1
court'sies                                                   1
court'sy.                                                    1
court-cupboard,                                              1
courteous,                                                   1
courtesy,                                                    1
courtier's                                                   1
courtiers'                                                   1
courts                                                       1
courtship                                                    1
cousin.                                                      1
cover                                                        1
cover'd                                                      1
cover:                                                       1
covert                                                       1
coward!                                                      1
coz.                                                         1
cracking                                                     1
cram                                                         1
crave,                                                       1
create!                                                      1
creature                                                     1
cricket's                                                    1
cried                                                        1
cries,                                                       1
crimson                                                      1
cross                                                        1
cross,                                                       1
crossing                                                     1
crotchets:                                                   1
crow'd,                                                      1
crow-keeper;                                                 1
crow.                                                        1
crown'd                                                      1
crows,                                                       1
crush                                                        1
crutch!                                                      1
crutch,                                                      1
crystal                                                      1
cull'd                                                       1
cup,                                                         1
cure,                                                        1
cures                                                        1
curfew-bell                                                  1
curious                                                      1
curse                                                        1
curtain,                                                     1
custom                                                       1
cutt'st                                                      1
cutting                                                      1
dagger!                                                      1
dagger,                                                      1
dagger.                                                      1
dainty,                                                      1
damnation!                                                   1
dance                                                        1
danced                                                       1
danger.                                                      1
dangerous                                                    1
dank                                                         1
dare.                                                        1
dare;                                                        1
dared.                                                       1
dares,                                                       1
darest,                                                      1
dark.                                                        1
dark:                                                        1
darkness                                                     1
dash                                                         1
dashing                                                      1
dateless                                                     1
dates                                                        1
daughter!                                                    1
daughter.                                                    1
daughter?                                                    1
day-light,                                                   1
daylight,                                                    1
days,                                                        1
dead,'                                                       1
dead--                                                       1
dead:                                                        1
dead?                                                        1
dealing.                                                     1
dear,                                                        1
dear-loved                                                   1
dear?                                                        1
dearer                                                       1
dearest                                                      1
dearly                                                       1
dearly,                                                      1
death-bed                                                    1
death-darting                                                1
death-mark'd                                                 1
deceased,                                                    1
deceit                                                       1
deceived:                                                    1
deceived;                                                    1
deck                                                         1
decree?                                                      1
decreed,                                                     1
dedicate                                                     1
deed,                                                        1
deeds                                                        1
defence.                                                     1
defiance                                                     1
deflowered                                                   1
deformities?                                                 1
deliciousness                                                1
delight,                                                     1
deliver                                                      1
deliver'd                                                    1
demand.                                                      1
demesnes                                                     1
demesnes,                                                    1
den,                                                         1
den:                                                         1
den?                                                         1
denied.                                                      1
denote                                                       1
depart                                                       1
depart.                                                      1
depart;                                                      1
departed                                                     1
depend;                                                      1
deprived                                                     1
depth                                                        1
descend                                                      1
descend.                                                     1
descent;                                                     1
descry.                                                      1
desirest                                                     1
despair.                                                     1
despair:                                                     1
desperate,                                                   1
despised                                                     1
despite,                                                     1
devise,                                                      1
devotion                                                     1
devotion!                                                    1
devout                                                       1
dew                                                          1
dew,                                                         1
dew-dropping                                                 1
dew.                                                         1
dew;                                                         1
dexterity,                                                   1
dial                                                         1
did!                                                         1
did,                                                         1
did:                                                         1
did;                                                         1
die?                                                         1
died;                                                        1
different                                                    1
different.                                                   1
digging                                                      1
dignified.                                                   1
dignity,                                                     1
dine?                                                        1
dined                                                        1
dinner,                                                      1
dinner.                                                      1
dinner:                                                      1
dire                                                         1
direction                                                    1
direful                                                      1
dirges                                                       1
discern,                                                     1
discharged                                                   1
discolour'd                                                  1
discords:                                                    1
discourses                                                   1
discourses;                                                  1
discover                                                     1
discovered.                                                  1
discovery,                                                   1
discreet,                                                    1
disgrace                                                     1
disguised                                                    1
dishclout                                                    1
dishonour'd,                                                 1
dishonourable,                                               1
dislike.                                                     1
dismember'd                                                  1
disparagement:                                               1
dispatch                                                     1
disperse                                                     1
displeased                                                   1
displeasure:                                                 1
dispose                                                      1
dispraise                                                    1
dispute                                                      1
dissemblers.                                                 1
distance,                                                    1
distemper'd                                                  1
distemperature;                                              1
distill'd                                                    1
distilled                                                    1
distraught,                                                  1
distressed,                                                  1
disturb'd                                                    1
divers                                                       1
divideth                                                     1
divine,                                                      1
divinest                                                     1
division;                                                    1
divorced,                                                    1
do;                                                          1
doctrine,                                                    1
doff                                                         1
dog's                                                        1
dog,                                                         1
doing                                                        1
doleful                                                      1
done:                                                        1
doom                                                         1
doom!                                                        1
doom,                                                        1
doom.                                                        1
dooms-day                                                    1
dooms-day,                                                   1
door!                                                        1
door?                                                        1
doors                                                        1
doors,                                                       1
doth,                                                        1
doting,                                                      1
double                                                       1
doublet                                                      1
doubt,                                                       1
doubt.                                                       1
dove                                                         1
dove-house                                                   1
dove-house:                                                  1
doves                                                        1
dowdy;                                                       1
down,                                                        1
down;                                                        1
downright.                                                   1
dozen                                                        1
drag                                                         1
dragon                                                       1
dram                                                         1
dram,                                                        1
drave                                                        1
drawer,                                                      1
drawn                                                        1
drawn,                                                       1
draws                                                        1
dreadful                                                     1
dream'd                                                      1
dreamers                                                     1
dress'd!                                                     1
dried                                                        1
drier                                                        1
drift,                                                       1
drift;                                                       1
drinks                                                       1
drivelling                                                   1
driveth                                                      1
drizzle                                                      1
drop                                                         1
drops                                                        1
drown'd                                                      1
drowsy                                                       1
drudge                                                       1
drum.                                                        1
drunk.                                                       1
drunkard                                                     1
dry-beat                                                     1
drybeat                                                      1
ducats:                                                      1
duellist,                                                    1
duellist;                                                    1
dug                                                          1
dug!                                                         1
dug,                                                         1
dump                                                         1
dump,                                                        1
dumps                                                        1
dun's                                                        1
dun,                                                         1
dust                                                         1
dwells,--which                                               1
e'en                                                         1
each                                                         1
eagle,                                                       1
earl.                                                        1
earliness                                                    1
early:                                                       1
early?                                                       1
ears!                                                        1
ears,                                                        1
ears;                                                        1
earth:                                                       1
earthen                                                      1
earthquake                                                   1
ease                                                         1
ease,                                                        1
ease.'                                                       1
ease:'                                                       1
ease?'                                                       1
east                                                         1
east:                                                        1
eastern                                                      1
eats                                                         1
ebb                                                          1
effeminate                                                   1
eight.                                                       1
either,                                                      1
elder,                                                       1
elflocks                                                     1
ell                                                          1
eloquence.                                                   1
else,                                                        1
embrace!                                                     1
emperor.                                                     1
employment:                                                  1
enamour'd                                                    1
encamp                                                       1
encounter.                                                   1
end:                                                         1
endart                                                       1
ends                                                         1
endured:                                                     1
enemies                                                      1
enemies?                                                     1
enemy                                                        1
enemy,                                                       1
enemy;                                                       1
enemy?                                                       1
enforce                                                      1
engrossing                                                   1
enjoin'd                                                     1
enjoy'd:                                                     1
enmity!                                                      1
enmity.                                                      1
enough,                                                      1
enough,'twill                                                1
enpierced                                                    1
enrich                                                       1
ensign                                                       1
enter;                                                       1
enters                                                       1
entertain'd                                                  1
entrance                                                     1
entrance:                                                    1
entreated                                                    1
envious;                                                     1
envious?                                                     1
errand;                                                      1
estate.                                                      1
esteem,                                                      1
et                                                           1
eternal                                                      1
evening                                                      1
excellent                                                    1
excellent,                                                   1
excess                                                       1
excuse.                                                      1
excuse?                                                      1
excused.                                                     1
excuses;                                                     1
execution.                                                   1
exhales,                                                     1
exile;                                                       1
exiled:                                                      1
expect'st                                                    1
expire                                                       1
exposition.                                                  1
expressly                                                    1
exquisite,                                                   1
extreme                                                      1
extremes                                                     1
extremities                                                  1
extremity.                                                   1
eye:                                                         1
eye;                                                         1
eyeless                                                      1
eyes'                                                        1
eyes,--                                                      1
eyes:                                                        1
eyes?                                                        1
face!                                                        1
face:                                                        1
fade                                                         1
fail,                                                        1
fail:                                                        1
fails,                                                       1
fain,                                                        1
fain;                                                        1
faint                                                        1
faintly                                                      1
fair.                                                        1
fair;                                                        1
fairest                                                      1
faith.                                                       1
faith;                                                       1
faith?                                                       1
faithfully:                                                  1
falconer's                                                   1
fall'n                                                       1
fall;                                                        1
falsehood,                                                   1
familiar                                                     1
famine                                                       1
fan's                                                        1
fantasticoes;                                                1
fantasy,                                                     1
fares                                                        1
farewell                                                     1
farthest                                                     1
fashion-mongers,                                             1
fast,                                                        1
fast.                                                        1
fast?                                                        1
faster                                                       1
fate                                                         1
father!                                                      1
father's;                                                    1
father's?                                                    1
father;                                                      1
fault,                                                       1
favour                                                       1
favour,                                                      1
fay,                                                         1
fear!                                                        1
fear'st                                                      1
fear;                                                        1
fearfully                                                    1
fears?                                                       1
feast                                                        1
feast.                                                       1
feast;                                                       1
feathers,                                                    1
fee-simple                                                   1
fee-simple!                                                  1
feel:                                                        1
feeling                                                      1
fees,                                                        1
feet                                                         1
feign                                                        1
fell,                                                        1
fellow,                                                      1
fellow;                                                      1
fellow?                                                      1
fellowship                                                   1
felon                                                        1
female                                                       1
festering                                                    1
festival                                                     1
festival,                                                    1
fetch?                                                       1
fettle                                                       1
fickle:                                                      1
fiddlestick;                                                 1
fie!                                                         1
field,                                                       1
field-bed                                                    1
field.                                                       1
fiend!                                                       1
fierce                                                       1
fiery-footed                                                 1
fight!                                                       1
fight;                                                       1
fighting                                                     1
figure                                                       1
film,                                                        1
find,                                                        1
finding                                                      1
fingers,                                                     1
fingers.                                                     1
fingers:                                                     1
fire-eyed                                                    1
fired                                                        1
fires;                                                       1
first:                                                       1
fish                                                         1
fish;                                                        1
fisher                                                       1
fishes;                                                      1
fishified!                                                   1
fits,                                                        1
five-fathom                                                  1
five:                                                        1
flag                                                         1
flask,                                                       1
flattering                                                   1
flattering-sweet                                             1
flecked                                                      1
fled                                                         1
fled;                                                        1
fleer                                                        1
flesh                                                        1
flesh?                                                       1
flies                                                        1
flies,                                                       1
flint:                                                       1
flirt-gills;                                                 1
flood;                                                       1
flourishes                                                   1
flow                                                         1
flowed                                                       1
flower,                                                      1
flower;                                                      1
flowered.                                                    1
flowering                                                    1
fly:                                                         1
foe                                                          1
foe's                                                        1
foes                                                         1
folks,                                                       1
follow'd                                                     1
follower;                                                    1
followers                                                    1
following                                                    1
follows                                                      1
fond,                                                        1
food!                                                        1
fool                                                         1
fool's                                                       1
fools                                                        1
fools!                                                       1
forbear                                                      1
forbear,                                                     1
forbid                                                       1
forbid!                                                      1
force                                                        1
fore-finger                                                  1
forefather's                                                 1
forehead                                                     1
foreign                                                      1
forerun                                                      1
forget.                                                      1
forgive                                                      1
forms!                                                       1
forsaken?                                                    1
forsooth.                                                    1
forswear                                                     1
forsworn                                                     1
forsworn.                                                    1
forth.                                                       1
fortnight                                                    1
fortune,                                                     1
fortune;                                                     1
fortunes                                                     1
fought,                                                      1
found'st                                                     1
found,                                                       1
found.                                                       1
found?                                                       1
fountains                                                    1
four                                                         1
four--                                                       1
fourteen;                                                    1
frank,                                                       1
fray                                                         1
fray.                                                        1
fray;                                                        1
freezes                                                      1
friar's                                                      1
friend!                                                      1
friend.                                                      1
friendly                                                     1
friends!                                                     1
friends:                                                     1
friendship.                                                  1
fright                                                       1
frighted                                                     1
frost                                                        1
frowning                                                     1
frowns,                                                      1
frozen                                                       1
fruit                                                        1
fruit-tree                                                   1
fume                                                         1
fun                                                          1
funeral;                                                     1
furious                                                      1
furnish                                                      1
furthest                                                     1
fury:                                                        1
gadding?                                                     1
gall                                                         1
gall.                                                        1
gallant                                                      1
gallant,                                                     1
game                                                         1
gapes                                                        1
garish                                                       1
gate.                                                        1
gavest                                                       1
gaze;                                                        1
gear                                                         1
gear!                                                        1
gentleman;                                                   1
gentlemanlike                                                1
gentlemen,                                                   1
gentlemen;                                                   1
gentler                                                      1
gentlewoman                                                  1
gentlewoman.                                                 1
ghost                                                        1
gi'                                                          1
giddy,                                                       1
gipsy;                                                       1
girl                                                         1
girl.                                                        1
girls.                                                       1
give,                                                        1
give;                                                        1
giving?                                                      1
gleek;                                                       1
glide                                                        1
glooming                                                     1
glorious                                                     1
glory,                                                       1
glove                                                        1
gnat,                                                        1
go?                                                          1
god                                                          1
goeth                                                        1
gold,                                                        1
gold:                                                        1
gold;                                                        1
good:                                                        1
goodfellows,                                                 1
goodly                                                       1
goodman                                                      1
gore-blood;                                                  1
gorgeous                                                     1
gory                                                         1
gossamer                                                     1
gossip                                                       1
gossip's                                                     1
gossips,                                                     1
government,                                                  1
gown,                                                        1
grace!                                                       1
gracious                                                     1
grandsire                                                    1
grandsire,                                                   1
grasshoppers,                                                1
grave!                                                       1
grave.                                                       1
grave:                                                       1
graves!                                                      1
graves,                                                      1
gravity                                                      1
great;                                                       1
greater                                                      1
greatest,                                                    1
green,                                                       1
green-sickness                                               1
greeting.                                                    1
greeting:                                                    1
greetings,                                                   1
grey-coated                                                  1
grey-eyed                                                    1
grief:                                                       1
grief;                                                       1
grief?                                                       1
grievance,                                                   1
grievances,                                                  1
grieve                                                       1
griping                                                      1
groan                                                        1
groan'd                                                      1
groaning                                                     1
groans                                                       1
groans,                                                      1
gross                                                        1
ground;                                                      1
grove                                                        1
grow                                                         1
grow.                                                        1
grows                                                        1
grows.                                                       1
grub,                                                        1
grubs                                                        1
grudge                                                       1
guest,                                                       1
guest:                                                       1
guests!                                                      1
guide!                                                       1
gun,                                                         1
gyves,                                                       1
had,                                                         1
hadst,                                                       1
hag,                                                         1
hai!                                                         1
hair,                                                        1
hair.                                                        1
hairs,                                                       1
hall                                                         1
hall!                                                        1
hall,                                                        1
hams.                                                        1
hand!                                                        1
hand.                                                        1
hand;                                                        1
hand?                                                        1
hands.                                                       1
hands:                                                       1
hands;                                                       1
hands?                                                       1
handsome,                                                    1
hang                                                         1
hang,                                                        1
hanged,                                                      1
hanging                                                      1
happily                                                      1
happiness                                                    1
hard                                                         1
hard,                                                        1
hard-hearted                                                 1
hard?                                                        1
hark                                                         1
harlotry                                                     1
harlots;                                                     1
harsh                                                        1
hast:                                                        1
hasten                                                       1
hastes                                                       1
hasty                                                        1
hate's                                                       1
hate:                                                        1
hate;                                                        1
hated,                                                       1
hath,                                                        1
hath.                                                        1
hatred,                                                      1
haughty                                                      1
haunt                                                        1
have,                                                        1
having,                                                      1
hazel                                                        1
hazel-nut                                                    1
he'll                                                        1
he?                                                          1
head:                                                        1
head?                                                        1
heads,                                                       1
heads.                                                       1
heads:                                                       1
headstrong!                                                  1
health!                                                      1
healths                                                      1
healthsome                                                   1
heap'd                                                       1
hear?                                                        1
heareth                                                      1
heart!                                                       1
heart;                                                       1
heart?                                                       1
heartless                                                    1
hearts,                                                      1
heartsick                                                    1
heat                                                         1
heaven;                                                      1
heavenly                                                     1
heavens!                                                     1
heaviness,                                                   1
heaviness.                                                   1
heavy,                                                       1
heel                                                         1
heel,                                                        1
heels,                                                       1
heir,                                                        1
hell                                                         1
hell.                                                        1
hell;                                                        1
help,                                                        1
help.                                                        1
help?                                                        1
hence.                                                       1
henceforth                                                   1
her!                                                         1
her?                                                         1
herald                                                       1
heralds                                                      1
hereabout:                                                   1
hereabouts                                                   1
hereafter                                                    1
hereafter,                                                   1
heretics,                                                    1
herring:                                                     1
hide:                                                        1
hideous                                                      1
hie,                                                         1
highmost                                                     1
highway                                                      1
hilding!                                                     1
hildings                                                     1
hill                                                         1
hills:                                                       1
him--dead--                                                  1
him.'                                                        1
him?                                                         1
himself,                                                     1
himself--I                                                   1
himself?                                                     1
hinds?                                                       1
his,                                                         1
hiss'd                                                       1
hist!                                                        1
hit.                                                         1
hither?                                                      1
ho,                                                          1
ho?                                                          1
hoars                                                        1
hoarse                                                       1
hoarse,                                                      1
hole.                                                        1
holidame,                                                    1
holiday,                                                     1
holp                                                         1
home,                                                        1
home?                                                        1
homely                                                       1
homepage                                                     1
honest,                                                      1
honestly:                                                    1
honesty                                                      1
honour!                                                      1
honourable,                                                  1
hood!                                                        1
hood,                                                        1
hoodwink'd                                                   1
hooks:                                                       1
hop                                                          1
hopeful                                                      1
hopes                                                        1
horrible                                                     1
horses                                                       1
horses;                                                      1
hot?                                                         1
hours'                                                       1
hours?                                                       1
house;                                                       1
house?                                                       1
households'                                                  1
households,                                                  1
houses,                                                      1
housewife                                                    1
huge                                                         1
humbly                                                       1
humorous                                                     1
humour,                                                      1
humours!                                                     1
hung,                                                        1
hungry                                                       1
hunt's-up                                                    1
hurdle                                                       1
hurry                                                        1
hurt.                                                        1
hurt?                                                        1
husband!                                                     1
husband,'fall'st                                             1
husband--God                                                 1
husband?                                                     1
hymns                                                        1
idle                                                         1
idles                                                        1
idolatry,                                                    1
if,                                                          1
ignorance,                                                   1
ill!                                                         1
ill-divining                                                 1
ill-shaped                                                   1
ill:                                                         1
ill;                                                         1
imagined                                                     1
immediately.                                                 1
impatient                                                    1
impeach                                                      1
import                                                       1
import,                                                      1
importuned                                                   1
impute                                                       1
in;                                                          1
inauspicious                                                 1
inch                                                         1
incorporate                                                  1
indeed!                                                      1
indeed,                                                      1
indeed.                                                      1
indeed;                                                      1
indeed?                                                      1
indite                                                       1
inexorable                                                   1
infant                                                       1
infection                                                    1
infection.                                                   1
infectious                                                   1
infinite.                                                    1
infold                                                       1
injured                                                      1
injuries                                                     1
ink                                                          1
inquire                                                      1
inquire;                                                     1
instant                                                      1
intend                                                       1
intended,                                                    1
intercession                                                 1
interchanging                                                1
interest                                                     1
interr'd.                                                    1
interrupt                                                    1
intrusion                                                    1
inundation                                                   1
invite                                                       1
invited                                                      1
invocation                                                   1
iron.                                                        1
is't,                                                        1
is;                                                          1
issue                                                        1
issuing                                                      1
it,--                                                        1
it,--here                                                    1
itch.                                                        1
its                                                          1
itself.                                                      1
itself?                                                      1
jaunt                                                        1
jaunting                                                     1
jaws                                                         1
jealous,                                                     1
jest,                                                        1
jests                                                        1
jewel                                                        1
jocund                                                       1
join                                                         1
join'd                                                       1
joiner                                                       1
joint-stools,                                                1
joints?                                                      1
jointure,                                                    1
jour!                                                        1
journey,                                                     1
joy!                                                         1
joy,                                                         1
joy.                                                         1
joy?                                                         1
judgment-place.                                              1
justice,                                                     1
justly                                                       1
keepers                                                      1
kept                                                         1
keys,                                                        1
kill'd!                                                      1
kill'd,                                                      1
kill'd.                                                      1
kill.                                                        1
kin,                                                         1
kind,                                                        1
kindly                                                       1
kindred                                                      1
king                                                         1
kings                                                        1
kinsman's                                                    1
kinsman.                                                     1
kinsmen.                                                     1
kinsmen:                                                     1
kiss,                                                        1
kitchen-wench;                                               1
knaves;                                                      1
knees                                                        1
knife,                                                       1
knight,                                                      1
knight?                                                      1
knit                                                         1
knock                                                        1
knock!                                                       1
knock;                                                       1
knocks                                                       1
knocks;                                                      1
knot                                                         1
know'st,                                                     1
know,                                                        1
know.                                                        1
know;                                                        1
known,                                                       1
label                                                        1
labour                                                       1
lace                                                         1
lacks                                                        1
ladder,                                                      1
ladies'                                                      1
lady--Lord,                                                  1
lady.                                                        1
lady.'                                                       1
lady:                                                        1
lady?                                                        1
ladybird!                                                    1
ladyship?                                                    1
lamb.                                                        1
lame!                                                        1
lament,                                                      1
lamentation.                                                 1
lamentations                                                 1
lamp;                                                        1
lamps                                                        1
lane                                                         1
language.                                                    1
languish:                                                    1
lap                                                          1
large.                                                       1
lash                                                         1
last!                                                        1
last,                                                        1
last.                                                        1
lasting                                                      1
late!                                                        1
lately                                                       1
lath,                                                        1
laugh                                                        1
laugh,                                                       1
laugh?                                                       1
laughs.                                                      1
law,                                                         1
law.                                                         1
law;                                                         1
lawyers'                                                     1
lazy                                                         1
lazy-pacing                                                  1
lead,                                                        1
lead.                                                        1
lean                                                         1
leans                                                        1
leap'd                                                       1
leap,                                                        1
leaps                                                        1
learned                                                      1
learned.--In                                                 1
learning                                                     1
learns                                                       1
least,                                                       1
leaves                                                       1
leaves,                                                      1
leaving                                                      1
legs,                                                        1
legs.                                                        1
leisure                                                      1
leisure,                                                     1
lend                                                         1
lengthens                                                    1
lenity,                                                      1
lenten                                                       1
less!                                                        1
less.                                                        1
lessen'd                                                     1
lesser                                                       1
lets                                                         1
letter's                                                     1
letter:--and                                                 1
letter?                                                      1
letting                                                      1
level                                                        1
liars!                                                       1
liberty                                                      1
liberty!                                                     1
liberty.                                                     1
lief                                                         1
liege,                                                       1
lies.                                                        1
lies:                                                        1
liest                                                        1
life!                                                        1
life-weary                                                   1
life:                                                        1
light!                                                       1
light;                                                       1
lightens.'                                                   1
lightly                                                      1
lightness!                                                   1
lightning                                                    1
lightning?                                                   1
likely                                                       1
liking                                                       1
limbs,                                                       1
limbs:                                                       1
limit,                                                       1
limits                                                       1
limping                                                      1
lineament,                                                   1
lip,                                                         1
lips;                                                        1
lips?                                                        1
liquid                                                       1
liquor                                                       1
lisping,                                                     1
list.                                                        1
little,                                                      1
little.                                                      1
live.                                                        1
live;                                                        1
lived                                                        1
lively                                                       1
liver                                                        1
livery                                                       1
livery:                                                      1
lives,                                                       1
livest;                                                      1
lodge?                                                       1
lodges,                                                      1
logger-head.                                                 1
logs:                                                        1
loins                                                        1
lolling                                                      1
long,                                                        1
long-experienced                                             1
long;                                                        1
longer.                                                      1
look'd                                                       1
look.                                                        1
looked                                                       1
looking                                                      1
looks.                                                       1
loose,                                                       1
lord!                                                        1
lose                                                         1
lose.                                                        1
loss                                                         1
loss.                                                        1
lost:                                                        1
loud?                                                        1
lour                                                         1
louring                                                      1
love--                                                       1
love-devouring                                               1
love-performing                                              1
love-song;                                                   1
loved.                                                       1
lover                                                        1
lover!                                                       1
lover,                                                       1
lover;                                                       1
lovest                                                       1
lovest,                                                      1
loving-jealous                                               1
low                                                          1
lure                                                         1
lurk                                                         1
lustier                                                      1
mad-man                                                      1
mad.                                                         1
mad:                                                         1
mad:--                                                       1
madam:                                                       1
madam;                                                       1
madam?                                                       1
made,                                                        1
madly                                                        1
madman!                                                      1
madman's                                                     1
madmen                                                       1
madness                                                      1
maid.                                                        1
maid:                                                        1
maiden                                                       1
maiden-widowed.                                              1
maidenhead!                                                  1
maidenhead,                                                  1
maidenheads;                                                 1
maidenhoods:                                                 1
maids?                                                       1
mammet,                                                      1
man's,                                                       1
man--took                                                    1
mandrakes'                                                   1
manes                                                        1
mangle                                                       1
manly                                                        1
manner                                                       1
mannerly                                                     1
mansion                                                      1
mansion.                                                     1
mantle;                                                      1
many's                                                       1
mar,'                                                        1
mar.                                                         1
marchpane;                                                   1
margent                                                      1
mark!--here                                                  1
mark,                                                        1
mark-man!                                                    1
mark.                                                        1
marr'd                                                       1
marriage-day                                                 1
marriage:                                                    1
marriage?                                                    1
married,                                                     1
married?                                                     1
martial                                                      1
martyr'd,                                                    1
marvellous                                                   1
mask                                                         1
mask'd.                                                      1
mask;                                                        1
mask?                                                        1
masks                                                        1
mass?                                                        1
master's                                                     1
master's.                                                    1
masterless                                                   1
masters                                                      1
match                                                        1
match'd,                                                     1
match'd:                                                     1
match.                                                       1
matron,                                                      1
matter.                                                      1
matter:                                                      1
matter:--Nurse,                                              1
matter?                                                      1
mattock,                                                     1
maw,                                                         1
me!'                                                         1
me.'                                                         1
me?--'banished'?                                             1
meagre                                                       1
mean'st                                                      1
meaning,                                                     1
means:                                                       1
means?                                                       1
meant                                                        1
meant,                                                       1
measuring                                                    1
meat,                                                        1
meats,                                                       1
meddle                                                       1
medicine                                                     1
medlar                                                       1
medlars,                                                     1
meet,                                                        1
meet.                                                        1
melancholy                                                   1
memory,                                                      1
men!                                                         1
men's;                                                       1
men;                                                         1
menace                                                       1
mend                                                         1
mend.                                                        1
merchandise.                                                 1
merchant                                                     1
mercy                                                        1
mercy,                                                       1
mercy:                                                       1
mercy;                                                       1
merrily;                                                     1
merriment.                                                   1
merry,                                                       1
messages                                                     1
meteor                                                       1
methinks                                                     1
methinks,                                                    1
mew'd                                                        1
mickle                                                       1
midwife,                                                     1
might,                                                       1
miles                                                        1
milk,                                                        1
mind:                                                        1
minded                                                       1
minds:                                                       1
mine:                                                        1
mine;                                                        1
minim                                                        1
minion,                                                      1
minister'd                                                   1
minstrel.                                                    1
minstrels                                                    1
minstrels?                                                   1
mire                                                         1
mis-sheathed                                                 1
mis-term'd:                                                  1
misadventure                                                 1
misadventure.                                                1
misadventured                                                1
misapplied;                                                  1
misbehaved                                                   1
mischance                                                    1
mischief,                                                    1
miserable                                                    1
miserable.                                                   1
misery                                                       1
misery.                                                      1
misfortune                                                   1
misfortune's                                                 1
misgives                                                     1
miss,                                                        1
miss:                                                        1
mista'en--for,                                               1
mistaking,                                                   1
mistemper'd                                                  1
mistres                                                      1
mistress!                                                    1
mistresses!                                                  1
misty                                                        1
mix'd,                                                       1
mixture                                                      1
moans:                                                       1
mocker!                                                      1
moderately;                                                  1
modern                                                       1
modesty,                                                     1
monarch                                                      1
money,                                                       1
monster                                                      1
month,                                                       1
month.                                                       1
monthly                                                      1
monument,                                                    1
mood                                                         1
moody                                                        1
moody,                                                       1
moon                                                         1
moonshine's                                                  1
moral                                                        1
morn                                                         1
morning.                                                     1
morning;                                                     1
morning?                                                     1
morrow.                                                      1
morsel                                                       1
mortals                                                      1
mortals,                                                     1
mother!                                                      1
mother.                                                      1
mother?'                                                     1
mothers                                                      1
mothers:                                                     1
mountain                                                     1
mourners,                                                    1
mouse-hunt                                                   1
move,                                                        1
move.                                                        1
move:                                                        1
moved,                                                       1
moved?                                                       1
moves                                                        1
moveth                                                       1
muffle                                                       1
muffled                                                      1
mumbling                                                     1
murder,                                                      1
murder;                                                      1
murdered,                                                    1
murderer                                                     1
murders,                                                     1
music's                                                      1
must,                                                        1
musty                                                        1
mutiny                                                       1
mutiny,                                                      1
myself!                                                      1
myself,                                                      1
myself.                                                      1
naked                                                        1
name!                                                        1
name.                                                        1
name?                                                        1
named,                                                       1
napkins                                                      1
narrow                                                       1
natural                                                      1
natural,                                                     1
nature                                                       1
nature:                                                      1
naught,                                                      1
near,                                                        1
near.                                                        1
near;                                                        1
necessaries                                                  1
neck                                                         1
neck,                                                        1
need'st                                                      1
need,                                                        1
need;                                                        1
needful                                                      1
needly                                                       1
neglecting                                                   1
neighbour                                                    1
neighbour-stained                                            1
neither                                                      1
nephew,                                                      1
nets;                                                        1
new-beloved                                                  1
news,                                                        1
news.                                                        1
news:                                                        1
news;                                                        1
next,                                                        1
next--                                                       1
next.                                                        1
nick-name                                                    1
niece                                                        1
nieces;                                                      1
nightingale,                                                 1
nightingale.                                                 1
nightingale:                                                 1
nights                                                       1
nimble                                                       1
nimble-pinion'd                                              1
nipple                                                       1
no!                                                          1
no.                                                          1
no;                                                          1
nobleman                                                     1
nobly                                                        1
noise.                                                       1
noise?                                                       1
none.                                                        1
none:                                                        1
none;                                                        1
none?                                                        1
noon.                                                        1
nor,                                                         1
north,                                                       1
nose                                                         1
nose,                                                        1
noses                                                        1
not!                                                         1
not;'                                                        1
not?                                                         1
noted                                                        1
notes                                                        1
nothing.                                                     1
nothing:                                                     1
nothing?                                                     1
notice                                                       1
nourish'd                                                    1
number                                                       1
number,                                                      1
numbers                                                      1
nuns:                                                        1
nuptials                                                     1
nurse!                                                       1
nurse,--O                                                    1
nurse:                                                       1
nursed                                                       1
nursed:                                                      1
nuts,                                                        1
o'clock                                                      1
o'clock:                                                     1
o'er-perch                                                   1
obey.                                                        1
obscured                                                     1
occasion.                                                    1
occupy                                                       1
odd                                                          1
odd,                                                         1
oddly                                                        1
odds                                                         1
of,                                                          1
off.                                                         1
offence                                                      1
offer                                                        1
offer.                                                       1
offered                                                      1
office                                                       1
office,                                                      1
old.                                                         1
older                                                        1
omit                                                         1
on't,                                                        1
on't;                                                        1
on,                                                          1
on.                                                          1
once!                                                        1
once,                                                        1
once.                                                        1
once;                                                        1
one's                                                        1
one.                                                         1
open,                                                        1
operation                                                    1
opportunity                                                  1
opposed                                                      1
opposite                                                     1
opposition                                                   1
oppress,                                                     1
oppression.                                                  1
or--More                                                     1
orb,                                                         1
ordained                                                     1
orisons                                                      1
ornament                                                     1
ornament:                                                    1
ornaments                                                    1
ornaments,                                                   1
osier                                                        1
other.                                                       1
ours                                                         1
ours,                                                        1
ourselves;                                                   1
out:                                                         1
out;                                                         1
outcry                                                       1
outrage                                                      1
outrage!                                                     1
overheard'st,                                                1
overset                                                      1
overthrown!                                                  1
overthrows                                                   1
overwhelming                                                 1
owe?                                                         1
owes                                                         1
own,                                                         1
own,--be                                                     1
own?                                                         1
pack                                                         1
packed:                                                      1
packthread                                                   1
page,                                                        1
page?                                                        1
pains.                                                       1
pains:                                                       1
painted                                                      1
painter                                                      1
palace                                                       1
palace!                                                      1
pale!                                                        1
pale.                                                        1
palmers                                                      1
palmers'                                                     1
paly                                                         1
pantry,                                                      1
paper                                                        1
paper,                                                       1
paradise                                                     1
paradise,                                                    1
paramour?                                                    1
pardon'd,                                                    1
pardon,                                                      1
pardon:                                                      1
pardoning                                                    1
parentage,                                                   1
parlous                                                      1
parson's                                                     1
part!'                                                       1
part.                                                        1
parted                                                       1
parties                                                      1
parting                                                      1
partisans!                                                   1
partisans,                                                   1
partly                                                       1
pass'd                                                       1
pass;                                                        1
passado!                                                     1
passado.                                                     1
passage                                                      1
passion                                                      1
passion!                                                     1
passion:                                                     1
pastry.                                                      1
pate.                                                        1
path                                                         1
pathways                                                     1
patience                                                     1
patience.                                                    1
patient                                                      1
peace:                                                       1
peace?                                                       1
pear!                                                        1
peevish                                                      1
pen;                                                         1
penalty                                                      1
pencil,                                                      1
penny.                                                       1
pennyworths                                                  1
pens                                                         1
pensive                                                      1
pentecost                                                    1
penury,                                                      1
people                                                       1
peppered,                                                    1
perdona-mi's,                                                1
perfection                                                   1
perform                                                      1
peril                                                        1
perjured,                                                    1
perjuries                                                    1
perjury,                                                     1
pernicious                                                   1
peruse                                                       1
perverse                                                     1
pestilence                                                   1
pestilent                                                    1
philosophy                                                   1
philosophy!                                                  1
philosophy,                                                  1
phrase;                                                      1
physic                                                       1
pie,                                                         1
pieces.                                                      1
pierced                                                      1
piercing                                                     1
pilgrimage!                                                  1
pilgrims'                                                    1
pilgrims,                                                    1
pilot,                                                       1
pilot;                                                       1
pin                                                          1
pined.                                                       1
pink                                                         1
pipes,                                                       1
pitch                                                        1
pitcher                                                      1
pitiful                                                      1
place,--                                                     1
place;                                                       1
plagues,                                                     1
plain,                                                       1
plainly                                                      1
plaintain-leaf                                               1
plant.                                                       1
plants,                                                      1
plate.                                                       1
plats                                                        1
play,                                                        1
play.                                                        1
playing                                                      1
plays                                                        1
plays,                                                       1
pleading                                                     1
pleasant                                                     1
please:                                                      1
pleasure,                                                    1
pleasure;                                                    1
pleasure?                                                    1
plucks                                                       1
point!                                                       1
point,                                                       1
point:                                                       1
points,                                                      1
poised                                                       1
poison;                                                      1
pomegranate-tree:                                            1
poor:                                                        1
poperin                                                      1
portentous                                                   1
porter                                                       1
portly                                                       1
possess'd                                                    1
possess'd,                                                   1
possess,                                                     1
post-horses;                                                 1
posterity.                                                   1
potion's                                                     1
potion;                                                      1
pots,                                                        1
poultice                                                     1
pout'st                                                      1
powder,                                                      1
power,                                                       1
power:                                                       1
powerful                                                     1
pox                                                          1
practise                                                     1
praised                                                      1
prating                                                      1
prayer                                                       1
prayer's                                                     1
prayer.                                                      1
prayers                                                      1
prayers'                                                     1
precious-juiced                                              1
predicament!                                                 1
predominant,                                                 1
prefixed                                                     1
prepared,                                                    1
presage                                                      1
presently.                                                   1
preserving                                                   1
prest                                                        1
prevails                                                     1
prevent                                                      1
prevent.                                                     1
prevented?                                                   1
price                                                        1
price,                                                       1
prick                                                        1
prick-song,                                                  1
pricking,                                                    1
pricks                                                       1
pride                                                        1
pride,                                                       1
prince!                                                      1
prince.                                                      1
prince:                                                      1
princes                                                      1
princox;                                                     1
prisoner                                                     1
privy:                                                       1
proceeding,                                                  1
procure                                                      1
procures                                                     1
profane                                                      1
profess'd,                                                   1
progress,                                                    1
prolixity:                                                   1
prologue,                                                    1
promise                                                      1
promised                                                     1
promotion;                                                   1
prompt                                                       1
prompter,                                                    1
proof!                                                       1
propagate,                                                   1
properer                                                     1
proportion;                                                  1
prorogue                                                     1
prorogued,                                                   1
prosperous                                                   1
prosperous:                                                  1
prostrate                                                    1
protest                                                      1
protest,                                                     1
protest;                                                     1
proud                                                        1
proud,                                                       1
proud,'                                                      1
proud?                                                       1
prouds,                                                      1
proverb'd                                                    1
proves                                                       1
provided                                                     1
provision:                                                   1
provoke                                                      1
prudence;                                                    1
pry                                                          1
puffs                                                        1
puling                                                       1
pulse                                                        1
pump                                                         1
pump,                                                        1
punish'd.                                                    1
punished:                                                    1
punto                                                        1
pupil                                                        1
purblind                                                     1
purchase                                                     1
purgatory,                                                   1
purge                                                        1
purged,                                                      1
purged.                                                      1
purple                                                       1
purpose                                                      1
purpose,                                                     1
purpose.                                                     1
pursued                                                      1
pursuing                                                     1
push                                                         1
putting                                                      1
qualities:                                                   1
quarrel?                                                     1
quarrelled                                                   1
quarrelling!                                                 1
quarrelling:                                                 1
quarrels                                                     1
quarter.                                                     1
question                                                     1
question,                                                    1
quick,                                                       1
quick.                                                       1
quickly,                                                     1
quiet                                                        1
quiet,                                                       1
quinces                                                      1
quit                                                         1
quivering                                                    1
quivers.                                                     1
quote                                                        1
raging                                                       1
rail'st                                                      1
rains                                                        1
rancour                                                      1
rank                                                         1
rank'd                                                       1
rapier                                                       1
rapier's                                                     1
rapier,                                                      1
rash,                                                        1
rat,                                                         1
rat-catcher,                                                 1
rattling                                                     1
raven!                                                       1
raven's                                                      1
reach                                                        1
read.                                                        1
read?                                                        1
ready.                                                       1
ready?                                                       1
rear-ward                                                    1
reason's                                                     1
receipt                                                      1
receptacle,                                                  1
reclaim'd.                                                   1
reconcile                                                    1
redeem                                                       1
redress.'                                                    1
reeky                                                        1
reels                                                        1
reflex                                                       1
refuse                                                       1
region                                                       1
reign,                                                       1
reign:                                                       1
religion                                                     1
remedies                                                     1
remedy:                                                      1
remember'd                                                   1
remember,                                                    1
remove,                                                      1
remove.                                                      1
removed                                                      1
renown'd                                                     1
repetition                                                   1
repliest!                                                    1
reply                                                        1
report.                                                      1
repose                                                       1
reputation                                                   1
request                                                      1
residence                                                    1
resign;                                                      1
resolution                                                   1
resolve:                                                     1
resort;--                                                    1
respect                                                      1
respect,                                                     1
respective                                                   1
respects                                                     1
rest!                                                        1
rest.                                                        1
rest;                                                        1
rest?                                                        1
restorative.                                                 1
rests                                                        1
retire:                                                      1
revel                                                        1
revels                                                       1
revenge,                                                     1
reverend                                                     1
reverse                                                      1
reverso!                                                     1
revived                                                      1
revived,                                                     1
revolt                                                       1
rhyme                                                        1
rhyme,                                                       1
riband?                                                      1
rich;                                                        1
rid                                                          1
riddling                                                     1
right,                                                       1
righteous                                                    1
rigour                                                       1
rind                                                         1
ring,                                                        1
ripe                                                         1
ripening                                                     1
rise                                                         1
rite;                                                        1
rite?                                                        1
rites                                                        1
roar'd                                                       1
rocks                                                        1
rode?                                                        1
roe,                                                         1
rogue,                                                       1
rood,                                                        1
room!                                                        1
rooteth                                                      1
ropery?                                                      1
ropes,                                                       1
rose                                                         1
rosemary,                                                    1
roses                                                        1
roses,                                                       1
rote                                                         1
rotten                                                       1
rough,                                                       1
round                                                        1
rude,                                                        1
run,                                                         1
run?                                                         1
runagate                                                     1
runaway's                                                    1
rung,                                                        1
runn'st                                                      1
runs                                                         1
rush'd                                                       1
rushes                                                       1
rushes;                                                      1
rust,                                                        1
s'                                                           1
sack                                                         1
sacrificed,                                                  1
sacrifices                                                   1
sad,                                                         1
sad?                                                         1
sadly                                                        1
safety,                                                      1
said:                                                        1
sail,                                                        1
sails                                                        1
saint-seducing                                               1
sake                                                         1
sake.                                                        1
sale                                                         1
sallow                                                       1
salutation                                                   1
saluteth                                                     1
same!                                                        1
same,                                                        1
satisfaction                                                 1
satisfied                                                    1
satisfied,                                                   1
satisfied;                                                   1
sauce.                                                       1
savage-wild,                                                 1
say:                                                         1
saying                                                       1
scales                                                       1
scant                                                        1
scarce                                                       1
scare                                                        1
scarf,                                                       1
scars                                                        1
scathe                                                       1
scatter'd,                                                   1
scene                                                        1
scene,                                                       1
school                                                       1
schoolboys                                                   1
scope                                                        1
score,                                                       1
scorn,                                                       1
scorn:                                                       1
scourge                                                      1
scrape                                                       1
scratch                                                      1
scratch,                                                     1
scratch;                                                     1
sea                                                          1
sea-sick                                                     1
sea.                                                         1
seal                                                         1
seal'd,                                                      1
search:                                                      1
searchers                                                    1
season                                                       1
secret:--nurse,                                              1
secret?                                                      1
see.                                                         1
see?                                                         1
seeds,                                                       1
seek,                                                        1
seeks                                                        1
seem                                                         1
seem'st,                                                     1
seems                                                        1
seems,                                                       1
seen,                                                        1
seen.                                                        1
sees                                                         1
seest                                                        1
seest,                                                       1
seize                                                        1
self                                                         1
self,                                                        1
self-will'd                                                  1
sell.                                                        1
semblance                                                    1
send.                                                        1
sending                                                      1
sends                                                        1
senseless                                                    1
senses                                                       1
sententious                                                  1
separated:                                                   1
sepulchre.                                                   1
sepulchre?                                                   1
serious                                                      1
serpent                                                      1
serpents                                                     1
servants                                                     1
serve,                                                       1
serve:                                                       1
serves                                                       1
serving-creature's                                           1
serving-creature.                                            1
sets,                                                        1
settled,                                                     1
several                                                      1
severest                                                     1
severing                                                     1
severity                                                     1
shady                                                        1
shaft                                                        1
shake                                                        1
shall:                                                       1
shame.                                                       1
shame:                                                       1
shame;                                                       1
shanks                                                       1
sharp                                                        1
sharp-ground                                                 1
sharps.                                                      1
she--                                                        1
she--God                                                     1
sheath;                                                      1
sheet?                                                       1
shelves                                                      1
shield                                                       1
shift                                                        1
shin.                                                        1
shining                                                      1
ship,                                                        1
shirt                                                        1
shoemaker                                                    1
shore                                                        1
short:                                                       1
shortly,                                                     1
should,                                                      1
show!                                                        1
show,                                                        1
show.                                                        1
showering?                                                   1
shown                                                        1
shown,                                                       1
shows.                                                       1
shriek                                                       1
shrieks                                                      1
shrine,                                                      1
shrived                                                      1
shroud?                                                      1
shrunk                                                       1
shunn'd                                                      1
shut,                                                        1
shut.                                                        1
shuts                                                        1
sick,                                                        1
sick.                                                        1
side,--O,                                                    1
sides;                                                       1
sigh:                                                        1
sight.                                                       1
sight:                                                       1
sight;                                                       1
signal                                                       1
signify                                                      1
silver-sweet                                                 1
silver.                                                      1
simple!                                                      1
simpleness                                                   1
simples;                                                     1
sin-absolver,                                                1
sin;                                                         1
singer:                                                      1
single                                                       1
single-soled                                                 1
singleness.                                                  1
singular                                                     1
singular.                                                    1
sink                                                         1
sink.                                                        1
sinners'                                                     1
sir                                                          1
sir-reverence                                                1
sisterhood                                                   1
sisters;                                                     1
sit;                                                         1
sitting                                                      1
six                                                          1
skains-mates.                                                1
skill                                                        1
skins                                                        1
skitless                                                     1
skulls;                                                      1
skulls?                                                      1
slack                                                        1
slander'd                                                    1
slander,                                                     1
slander,--Tybalt,                                            1
slaughter'd,                                                 1
slave;                                                       1
slay;                                                        1
slays                                                        1
sleep.                                                       1
sleeping                                                     1
slew'st                                                      1
slip;                                                        1
slop.                                                        1
slow                                                         1
slow'd.                                                      1
slow,                                                        1
slow.                                                        1
slow;                                                        1
slug-a-bed!                                                  1
sluttish                                                     1
smallest                                                     1
smatter                                                      1
smell                                                        1
smelling                                                     1
smells,                                                      1
smelt,                                                       1
smilest                                                      1
smock.                                                       1
smoke                                                        1
smoke,                                                       1
snow                                                         1
snowy                                                        1
sober-suited                                                 1
sociable,                                                    1
society:                                                     1
soft                                                         1
soften'd                                                     1
softest                                                      1
solace                                                       1
sold                                                         1
sold,                                                        1
solely                                                       1
solemn                                                       1
solemnity                                                    1
soles:                                                       1
something;                                                   1
sometime                                                     1
son!                                                         1
son's                                                        1
son-in-law,                                                  1
soon,                                                        1
soon-speeding                                                1
sooner                                                       1
soonest                                                      1
sore                                                         1
sorry                                                        1
sort                                                         1
sorted                                                       1
soul--                                                       1
soul?                                                        1
souls!--                                                     1
souls,                                                       1
sound'--                                                     1
sound:                                                       1
sounding                                                     1
sounding:                                                    1
soundly                                                      1
soundly.                                                     1
sounds                                                       1
south.                                                       1
spake                                                        1
spake,                                                       1
sparing                                                      1
sparkling                                                    1
speak'st                                                     1
speak,                                                       1
speak?                                                       1
special                                                      1
sped.                                                        1
speech                                                       1
speed!                                                       1
speedy                                                       1
spell.                                                       1
spent,                                                       1
spheres                                                      1
spices,                                                      1
spider's                                                     1
spiders'                                                     1
spilt                                                        1
spirits                                                      1
spit                                                         1
spite                                                        1
spite,                                                       1
spite.                                                       1
spite:                                                       1
spited,                                                      1
spits,                                                       1
spleen                                                       1
splendor                                                     1
spoke:                                                       1
spoken,                                                      1
spread                                                       1
spring,                                                      1
spring;                                                      1
sprung                                                       1
spurs,                                                       1
spurs;                                                       1
squirrel                                                     1
stabbed                                                      1
stabs                                                        1
stage;                                                       1
stain                                                        1
stainless                                                    1
stains                                                       1
stair;                                                       1
stakes                                                       1
stale                                                        1
stand;                                                       1
star-cross'd                                                 1
stark                                                        1
stars!                                                       1
startles                                                     1
starve,                                                      1
starved                                                      1
starveth                                                     1
state:                                                       1
statue                                                       1
stay!                                                        1
stay'd.                                                      1
stay?                                                        1
stays                                                        1
stays.                                                       1
steads                                                       1
steals                                                       1
stealth.                                                     1
steeds,                                                      1
steel                                                        1
steel!                                                       1
steel,--                                                     1
steel.                                                       1
steep'd                                                      1
steerage                                                     1
stick                                                        1
stick'st                                                     1
stiff                                                        1
stiff;                                                       1
stifled                                                      1
still,                                                       1
stint                                                        1
stir!                                                        1
stir;                                                        1
stirreth                                                     1
stirring.                                                    1
stirs.                                                       1
stoccata                                                     1
stock                                                        1
stole                                                        1
stone;                                                       1
stones,                                                      1
stones;--                                                    1
stopp'd                                                      1
store,                                                       1
store.                                                       1
story                                                        1
story;                                                       1
strain                                                       1
strain'd                                                     1
strains                                                      1
strange,                                                     1
strange.                                                     1
stranger                                                     1
strangers                                                    1
strangled                                                    1
stratagems                                                   1
stream                                                       1
street                                                       1
street,                                                      1
streets                                                      1
streets:                                                     1
strength!                                                    1
stretch                                                      1
stretches                                                    1
strew,--                                                     1
strife,                                                      1
strife.                                                      1
strike!                                                      1
strike.                                                      1
strive                                                       1
stroke                                                       1
strucken                                                     1
study.                                                       1
stuff'd,                                                     1
stumble                                                      1
stumbled                                                     1
stumblest                                                    1
stumbling                                                    1
subject                                                      1
subjects,                                                    1
submission!                                                  1
substance,                                                   1
substantial.                                                 1
such,                                                        1
sucking                                                      1
sudden;                                                      1
suffer                                                       1
suit,                                                        1
suit;                                                        1
suit?                                                        1
summer's                                                     1
summers                                                      1
sun's                                                        1
sun:                                                         1
sunder                                                       1
sunset                                                       1
supper                                                       1
supper.                                                      1
supper;                                                      1
supple                                                       1
supposed,                                                    1
surcease:                                                    1
sure                                                         1
surgeon.                                                     1
suspected,                                                   1
suspicion.                                                   1
suspicion:                                                   1
swallow'd                                                    1
swan                                                         1
swashing                                                     1
sway,                                                        1
swear'st,                                                    1
swear:                                                       1
swear;                                                       1
swears                                                       1
sweet-heart!                                                 1
sweet;                                                       1
sweeten                                                      1
sweeter                                                      1
sweeting;                                                    1
sweetly                                                      1
sweetmeats                                                   1
swifter                                                      1
switch                                                       1
sword?                                                       1
swords:                                                      1
swords;                                                      1
swounded                                                     1
swung                                                        1
sycamore                                                     1
sympathy!                                                    1
t'                                                           1
ta'en                                                        1
ta'en,                                                       1
table                                                        1
tables                                                       1
tackled                                                      1
tail                                                         1
tainted                                                      1
take.                                                        1
taken.                                                       1
taken:                                                       1
taker                                                        1
tale.                                                        1
tale;                                                        1
talk'st                                                      1
talk,                                                        1
talk;                                                        1
talked                                                       1
tall                                                         1
tallow-face!                                                 1
tardy                                                        1
tarry                                                        1
tassel-gentle                                                1
taste!                                                       1
tasted,                                                      1
tatter'd                                                     1
tavern                                                       1
team                                                         1
teat.                                                        1
teeth                                                        1
teeth,--                                                     1
tell.                                                        1
temper'd.                                                    1
tempest-tossed                                               1
tempt                                                        1
tender,                                                      1
terms,                                                       1
testify                                                      1
tetchy                                                       1
text.                                                        1
than,                                                        1
thankful                                                     1
thankful,                                                    1
thankings,                                                   1
thanks                                                       1
thanks.                                                      1
thanks?                                                      1
that:                                                        1
the--No;                                                     1
thee!'                                                       1
theirs                                                       1
them:                                                        1
them?                                                        1
theme                                                        1
thence                                                       1
thence,                                                      1
there:                                                       1
thereof,                                                     1
therewithal                                                  1
these,                                                       1
they're                                                      1
thievish                                                     1
thigh                                                        1
thin                                                         1
thine,                                                       1
thine:                                                       1
thing:--O,                                                   1
thing?                                                       1
things;                                                      1
think!--                                                     1
think.                                                       1
thinking                                                     1
thinly                                                       1
third                                                        1
thirty                                                       1
thirty.                                                      1
this,--thou                                                  1
thither;                                                     1
thorn.                                                       1
thou!                                                        1
thou's                                                       1
thou?                                                        1
thoughts                                                     1
thoughts,                                                    1
thoughts.                                                    1
thread                                                       1
threaten'd                                                   1
threatened                                                   1
three-hours                                                  1
thrice                                                       1
thrills                                                      1
thrive                                                       1
throats,                                                     1
throne                                                       1
throne;                                                      1
throughout                                                   1
thrown                                                       1
thrusts                                                      1
thus?                                                        1
thwarted                                                     1
thyself.                                                     1
tide,                                                        1
tidings,                                                     1
tigers                                                       1
tilts                                                        1
time!                                                        1
time:                                                        1
time;                                                        1
timeless                                                     1
times.                                                       1
times?                                                       1
tips                                                         1
tiptoe                                                       1
tithe-pig's                                                  1
title.                                                       1
to,                                                          1
to-day.                                                      1
to-morrow;                                                   1
to-morrow?                                                   1
to.                                                          1
to?                                                          1
toad                                                         1
toes                                                         1
toil,                                                        1
told,                                                        1
tomb!                                                        1
tomb:                                                        1
tombs.                                                       1
tongue's                                                     1
tongues                                                      1
too;                                                         1
took,                                                        1
took.                                                        1
tool!                                                        1
top-gallant                                                  1
tops--                                                       1
tops.                                                        1
torch!                                                       1
torch-bearer,                                                1
torch:                                                       1
torment                                                      1
tormented                                                    1
torn                                                         1
tortoise                                                     1
torture                                                      1
touch,                                                       1
touching                                                     1
towards                                                      1
towards.                                                     1
tower;                                                       1
town                                                         1
toy,                                                         1
traces                                                       1
traffic                                                      1
train'd,                                                     1
traitor                                                      1
transgression.                                               1
treacherous                                                  1
tread,                                                       1
treads,                                                      1
treason.                                                     1
treasure                                                     1
tree,                                                        1
trees,                                                       1
tremble                                                      1
tremble;                                                     1
trembles,                                                    1
trencher!                                                    1
trencher?                                                    1
trespass                                                     1
tributary                                                    1
trick                                                        1
tried                                                        1
trifling                                                     1
trim                                                         1
trim,                                                        1
triumph                                                      1
triumph!                                                     1
triumphant                                                   1
trooping                                                     1
troubled                                                     1
trow,                                                        1
trow;                                                        1
truce                                                        1
truckle-bed;                                                 1
trudge                                                       1
trudge:                                                      1
true,                                                        1
true--                                                       1
true:                                                        1
true;                                                        1
trumpet,                                                     1
trunk                                                        1
trust,                                                       1
trusty,                                                      1
truth                                                        1
truth;                                                       1
tune,                                                        1
tuners                                                       1
turn'd                                                       1
turning;                                                     1
tutor                                                        1
tutor'd                                                      1
twain                                                        1
twain.                                                       1
twinkle                                                      1
twisted                                                      1
two,                                                         1
tying                                                        1
tyrannous                                                    1
tyrant!                                                      1
tyrant:                                                      1
umpire,                                                      1
unadvised,                                                   1
unattainted                                                  1
unbound                                                      1
unbruised                                                    1
uncle                                                        1
unclean.                                                     1
uncover'd                                                    1
undertake                                                    1
undone!                                                      1
undone,                                                      1
unfirm,                                                      1
unfurnished                                                  1
unhallow'd                                                   1
unhappy,                                                     1
unharm'd.                                                    1
universal                                                    1
unkind                                                       1
unknown,                                                     1
unlook'd-for                                                 1
unluckily,                                                   1
unmade                                                       1
unmann'd                                                     1
unnatural                                                    1
unpleasing                                                   1
unreasonable                                                 1
unrest.                                                      1
unruly                                                       1
unsatisfied?                                                 1
unsavoury                                                    1
unseen.                                                      1
unstain'd                                                    1
unstuff'd                                                    1
unsubstantial                                                1
untalk'd                                                     1
untangled,                                                   1
untaught!                                                    1
unthankfulness!                                              1
unto:                                                        1
unwashed                                                     1
unworthiest                                                  1
unworthy                                                     1
up-fill                                                      1
up-roused                                                    1
up.                                                          1
up:                                                          1
up?                                                          1
urged!                                                       1
urging                                                       1
us!                                                          1
us:                                                          1
use,                                                         1
usest                                                        1
usurer,                                                      1
utterance,                                                   1
uttered                                                      1
utters                                                       1
vain,                                                        1
vainly                                                       1
validity,                                                    1
valour's                                                     1
vanish'd                                                     1
vanity!                                                      1
vanity.                                                      1
variable.                                                    1
vast                                                         1
vault.                                                       1
vault;                                                       1
vaulty                                                       1
venge                                                        1
versal                                                       1
vessels,                                                     1
vex'd                                                        1
vex'd.                                                       1
vexed,                                                       1
vial,                                                        1
vial.                                                        1
vice                                                         1
vice,                                                        1
victory                                                      1
view                                                         1
villain!                                                     1
villain.                                                     1
villanous                                                    1
violence                                                     1
violently                                                    1
virtues                                                      1
virtuous,--Where                                             1
visage                                                       1
visiting                                                     1
visor!                                                       1
vitae,                                                       1
vitae:                                                       1
voice.                                                       1
voices                                                       1
vow'd                                                        1
vow,                                                         1
vowel                                                        1
vows                                                         1
waddled                                                      1
wagon-spokes                                                 1
wail,                                                        1
wailing                                                      1
wait;                                                        1
waiting.                                                     1
wake,                                                        1
wake:                                                        1
waken                                                        1
wakened                                                      1
wakes                                                        1
wakes,                                                       1
wakes;                                                       1
walk?                                                        1
walking                                                      1
wall;                                                        1
walls                                                        1
walls,                                                       1
walls;                                                       1
wanders                                                      1
wanton's                                                     1
wantons                                                      1
ward                                                         1
ware                                                         1
ware,                                                        1
warm                                                         1
warm,                                                        1
warm.                                                        1
warmth,                                                      1
warning                                                      1
warns                                                        1
wary,                                                        1
was.                                                         1
wash                                                         1
waste                                                        1
watch'd                                                      1
watch?                                                       1
watching                                                     1
watching.                                                    1
watery                                                       1
waverer,                                                     1
wax,                                                         1
wax.                                                         1
waxes                                                        1
way?                                                         1
ways,                                                        1
ways;                                                        1
wayward                                                      1
we;                                                          1
weaker                                                       1
weakest                                                      1
weal                                                         1
wealth                                                       1
wealth.                                                      1
wean'd,--I                                                   1
weapons                                                      1
weapons.                                                     1
weary                                                        1
web,                                                         1
wed                                                          1
wed,                                                         1
wed;                                                         1
wedded                                                       1
wedded:                                                      1
wedding-bed;                                                 1
wedding-day                                                  1
wedding-day.                                                 1
weeds                                                        1
weeds,                                                       1
weep'st                                                      1
weeping,                                                     1
weeps:                                                       1
weeps;                                                       1
weigh'd                                                      1
welcome                                                      1
welcome!                                                     1
well-a-day!                                                  1
well-a-day,                                                  1
well-apparell'd                                              1
well-govern'd                                                1
well-seeming                                                 1
wench's                                                      1
wench;                                                       1
went                                                         1
went'st                                                      1
were!                                                        1
west,                                                        1
westward                                                     1
what!                                                        1
what.                                                        1
wheels:                                                      1
where,                                                       1
where.                                                       1
where:                                                       1
wherefore,                                                   1
wherefore?                                                   1
wherein                                                      1
whereon                                                      1
while,                                                       1
whining                                                      1
whispering                                                   1
whistle                                                      1
whistles                                                     1
whit:                                                        1
white-upturned                                               1
whither                                                      1
who,                                                         1
who.                                                         1
whoe'er                                                      1
whom,                                                        1
whore!'                                                      1
whoreson,                                                    1
wicked                                                       1
wide.                                                        1
widow                                                        1
wield                                                        1
wild,                                                        1
wilful                                                       1
will!                                                        1
willingly                                                    1
wills                                                        1
wilt.                                                        1
wind-swift                                                   1
wind;                                                        1
window,                                                      1
windows                                                      1
windows,                                                     1
wine.                                                        1
winged                                                       1
wings,                                                       1
wings.                                                       1
wink                                                         1
winking                                                      1
winning                                                      1
winter                                                       1
wisdom,                                                      1
wisdom?                                                      1
wise;                                                        1
wisely,                                                      1
wisely.                                                      1
wish!                                                        1
wish.                                                        1
wit!                                                         1
wit:                                                         1
withal,                                                      1
withal.                                                      1
withal;                                                      1
withdraw:                                                    1
wither                                                       1
without-book                                                 1
wits.                                                        1
wits:                                                        1
woe:                                                         1
woe:'                                                        1
woes!                                                        1
wolvish-ravening                                             1
woman                                                        1
womanish                                                     1
womanish;                                                    1
womb,                                                        1
womb.                                                        1
women,                                                       1
won,                                                         1
wondering                                                    1
wondrous                                                     1
woo                                                          1
woo'd                                                        1
woo;                                                         1
wood:                                                        1
wooes                                                        1
word's                                                       1
word?                                                        1
work,                                                        1
work;                                                        1
world--why,                                                  1
world-wearied                                                1
world;                                                       1
worm                                                         1
worm,                                                        1
worms                                                        1
worms'                                                       1
worn,                                                        1
worse                                                        1
worse,                                                       1
worse.                                                       1
worshipp'd                                                   1
worst                                                        1
worth;                                                       1
worthy                                                       1
wot                                                          1
would,                                                       1
would:                                                       1
wound.                                                       1
wounded                                                      1
wounded:                                                     1
wounds                                                       1
wreak                                                        1
wrenching                                                    1
wretch!                                                      1
wretched,                                                    1
wretchedness,                                                1
wring                                                        1
writes                                                       1
writing                                                      1
wrong                                                        1
wrong'st                                                     1
wrong.                                                       1
wronged,                                                     1
yard,                                                        1
ye:                                                          1
year                                                         1
years.                                                       1
yellow                                                       1
yesternight                                                  1
yet:                                                         1
yew-tree                                                     1
yew-trees                                                    1
yielding                                                     1
yoke                                                         1
yond,                                                        1
you'll                                                       1
you,'                                                        1
young.                                                       1
young?                                                       1
younger                                                      1
youngest                                                     1
yours                                                        1
yours?                                                       1
yourself,                                                    1
yourself.                                                    1
youth:                                                       1
youthful,                                                    1
&                                                            2
'I                                                           2
'Romeo                                                       2
'Yea,'                                                       2
'Zounds,                                                     2
'banished'?                                                  2
'banished,'                                                  2
'music                                                       2
'silver                                                      2
Alack                                                        2
Am                                                           2
Among                                                        2
Anon!                                                        2
Anon,                                                        2
Attendants                                                   2
BALTHASAR,                                                   2
BENVOLIO,                                                    2
Benvolio;                                                    2
Beshrew                                                      2
Bid                                                          2
Both                                                         2
Capel's                                                      2
Capulets                                                     2
Capulets.                                                    2
Chorus                                                       2
Church,                                                      2
Citizens,                                                    2
Cupid                                                        2
Cupid's                                                      2
Dies                                                         2
Draw,                                                        2
Drawing                                                      2
Dry                                                          2
Else                                                         2
Enter,                                                       2
Entire                                                       2
Evermore                                                     2
Examine                                                      2
Exit,                                                        2
Falls                                                        2
Farewell!                                                    2
Farewell:                                                    2
Farewell;                                                    2
Fear                                                         2
French                                                       2
Full                                                         2
God!                                                         2
Gregory,                                                     2
Hall                                                         2
Hark                                                         2
Having                                                       2
Help,                                                        2
Hence                                                        2
Henceforward                                                 2
Hold                                                         2
Holy                                                         2
Honest                                                       2
How!                                                         2
I:                                                           2
If,                                                          2
Indeed,                                                      2
JULIET,                                                      2
Jesu,                                                        2
John,                                                        2
John.                                                        2
Juliet:                                                      2
Juliet?                                                      2
Just                                                         2
LAURENCE,                                                    2
Lady,                                                        2
Lammas-eve                                                   2
Laying                                                       2
Lest                                                         2
Lies                                                         2
Mantua                                                       2
Mantua.                                                      2
Mantua:                                                      2
Mantua;                                                      2
Many                                                         2
Mercutio                                                     2
Mercutio.                                                    2
Montague!                                                    2
Montague?                                                    2
Montagues,                                                   2
Music                                                        2
Musicians                                                    2
Must                                                         2
Nightly                                                      2
No.                                                          2
Noise                                                        2
PROLOGUE                                                     2
Paris;                                                       2
Peter                                                        2
Peter!                                                       2
Pray                                                         2
Prince,                                                      2
Romeo:                                                       2
Rosaline,                                                    2
Rosaline.                                                    2
Say                                                          2
Scurvy                                                       2
See                                                          2
Send                                                         2
Servingmen                                                   2
Should                                                       2
Show                                                         2
Sir                                                          2
Sleep                                                        2
Soft!                                                        2
Sometime                                                     2
Stay,                                                        2
Stop                                                         2
Sweet                                                        2
Taking                                                       2
Therefore,                                                   2
Third                                                        2
Though                                                       2
Three                                                        2
Through                                                      2
To-morrow                                                    2
Towards                                                      2
Tush,                                                        2
Tybalt!                                                      2
Tybalt.                                                      2
Under                                                        2
Venus                                                        2
Verona's                                                     2
Verona,                                                      2
Where,                                                       2
Who's                                                        2
Wife,                                                        2
Yea,                                                         2
Yes,                                                         2
[To                                                          2
able                                                         2
about,                                                       2
adieu!                                                       2
advanced                                                     2
affections                                                   2
afford                                                       2
afore                                                        2
afternoon,                                                   2
again!                                                       2
again;                                                       2
age                                                          2
ago.                                                         2
ah,                                                          2
alas!                                                        2
all;                                                         2
along,                                                       2
aloof,                                                       2
another,                                                     2
apothecary!                                                  2
appear                                                       2
approach.                                                    2
aqua                                                         2
ashes,                                                       2
asked                                                        2
asleep,                                                      2
aught                                                        2
away?                                                        2
awhile,                                                      2
back;                                                        2
bad?                                                         2
baggage!                                                     2
banished,                                                    2
banished:                                                    2
bawd,                                                        2
be.                                                          2
be:                                                          2
beams,                                                       2
beast                                                        2
beauteous                                                    2
beauty's                                                     2
before.                                                      2
beg                                                          2
begins                                                       2
behind                                                       2
beshrew                                                      2
bethink                                                      2
big                                                          2
bless                                                        2
blind                                                        2
blind,                                                       2
blood?                                                       2
blow.                                                        2
blows                                                        2
blush                                                        2
body's                                                       2
body,                                                        2
bold                                                         2
bold,                                                        2
bone,                                                        2
bones                                                        2
bore                                                         2
born                                                         2
borrow'd                                                     2
bottom                                                       2
bound,                                                       2
boy!                                                         2
boy,                                                         2
brave                                                        2
breast!                                                      2
breast,                                                      2
breath?                                                      2
breathed                                                     2
broad                                                        2
brother's                                                    2
brow                                                         2
brows                                                        2
bud                                                          2
buried                                                       2
buried.                                                      2
burn                                                         2
burnt                                                        2
c                                                            2
calls?                                                       2
calm,                                                        2
came,                                                        2
camest                                                       2
can,                                                         2
carry                                                        2
case,                                                        2
cast                                                         2
cats,                                                        2
cause                                                        2
cease                                                        2
cell;                                                        2
chamber                                                      2
chamber,                                                     2
chance                                                       2
cheeks                                                       2
cheer                                                        2
child;                                                       2
children                                                     2
churchyard;                                                  2
citizens                                                     2
city                                                         2
close,                                                       2
come!                                                        2
coming                                                       2
common                                                       2
company,                                                     2
conduct                                                      2
confess                                                      2
corse;                                                       2
counsel,                                                     2
counterfeit                                                  2
county.                                                      2
county;                                                      2
course,                                                      2
courteous                                                    2
courtesy.                                                    2
cousin?                                                      2
cries                                                        2
crow,                                                        2
crying                                                       2
cunning                                                      2
cup                                                          2
cure                                                         2
dance.                                                       2
dance?                                                       2
dancing                                                      2
daughter:                                                    2
daughters;                                                   2
day.                                                         2
daylight                                                     2
days.                                                        2
days:                                                        2
dead.                                                        2
deaf                                                         2
deal                                                         2
dear!                                                        2
death's                                                      2
death.                                                       2
debt.                                                        2
deep;                                                        2
defy                                                         2
delay                                                        2
delight                                                      2
delights                                                     2
desire                                                       2
determine                                                    2
detestable                                                   2
devise                                                       2
dim                                                          2
discords                                                     2
dismal                                                       2
disobedient                                                  2
disposition                                                  2
disturb                                                      2
do.                                                          2
doom?                                                        2
doubt                                                        2
down!                                                        2
down.                                                        2
draw.                                                        2
dreams,                                                      2
dreamt                                                       2
drew                                                         2
drugs                                                        2
drunk                                                        2
dry,                                                         2
dull                                                         2
ear,                                                         2
ear;                                                         2
ears.                                                        2
ears?                                                        2
earth.                                                       2
earth?                                                       2
east,                                                        2
effect                                                       2
egg                                                          2
eleven                                                       2
else?                                                        2
encounter                                                    2
end.                                                         2
ended                                                        2
endure                                                       2
enemy.                                                       2
enough.                                                      2
enter                                                        2
entreat                                                      2
ever,                                                        2
everlasting                                                  2
excels                                                       2
eyes;                                                        2
eyesight                                                     2
fa                                                           2
face;                                                        2
face?                                                        2
fain                                                         2
faint.                                                       2
fair?                                                        2
fairer                                                       2
fairies'                                                     2
fairly                                                       2
fall,                                                        2
false;                                                       2
fan,                                                         2
farewell!                                                    2
farewell,                                                    2
farewell.                                                    2
farewell;                                                    2
father's                                                     2
father.                                                      2
father?                                                      2
feasting                                                     2
fellow.                                                      2
fellows                                                      2
felt                                                         2
fickle,                                                      2
fie,                                                         2
fiend                                                        2
fiery                                                        2
fights                                                       2
finds                                                        2
finger                                                       2
fingers                                                      2
fire,                                                        2
fit                                                          2
flesh,                                                       2
flowers.                                                     2
fly.                                                         2
foe,                                                         2
foe.                                                         2
fond                                                         2
food,                                                        2
fool!                                                        2
foolish                                                      2
for.                                                         2
forfeit                                                      2
forget,                                                      2
forgot                                                       2
form,                                                        2
forsworn,                                                    2
forth,                                                       2
fortune                                                      2
fortune's                                                    2
forty                                                        2
forward                                                      2
fourteen                                                     2
fray?                                                        2
free                                                         2
fresh                                                        2
friar!                                                       2
friar?                                                       2
friend;                                                      2
frown                                                        2
fury                                                         2
gallops                                                      2
gaze                                                         2
general                                                      2
gentleman!                                                   2
gentleman?                                                   2
gentlemen.                                                   2
gentlewoman,                                                 2
girl,                                                        2
girl?                                                        2
giving                                                       2
glad                                                         2
gladly                                                       2
go:                                                          2
god-den.                                                     2
gold                                                         2
gone!                                                        2
gone?                                                        2
goose,                                                       2
goose.                                                       2
goose?                                                       2
grant                                                        2
grave,                                                       2
grave?                                                       2
green                                                        2
grey                                                         2
griefs,                                                      2
guests                                                       2
guilty                                                       2
ha!                                                          2
ha,                                                          2
had!                                                         2
hair                                                         2
hangs                                                        2
hap                                                          2
happy:                                                       2
hare,                                                        2
haste;                                                       2
haste?                                                       2
hate!                                                        2
have.                                                        2
have:                                                        2
have;                                                        2
he;                                                          2
heads                                                        2
heard                                                        2
hearing                                                      2
heart.                                                       2
hearts!                                                      2
heed,                                                        2
heir                                                         2
heir;                                                        2
held                                                         2
hell,                                                        2
helps                                                        2
hence:                                                       2
her.                                                         2
herbs,                                                       2
here:                                                        2
hers                                                         2
hers,                                                        2
herself.                                                     2
hoar                                                         2
hoar,                                                        2
hot                                                          2
hot,                                                         2
hot.                                                         2
hour,                                                        2
hour.                                                        2
hours,                                                       2
humour                                                       2
husband,                                                     2
husband:                                                     2
ill-beseeming                                                2
indeed                                                       2
instruments                                                  2
intents                                                      2
intents.                                                     2
is!                                                          2
is:                                                          2
it;                                                          2
jealous                                                      2
jest.                                                        2
joint                                                        2
joints                                                       2
joys                                                         2
judgment                                                     2
kindred's                                                    2
kinsmen                                                      2
knave                                                        2
knave!                                                       2
knees,                                                       2
lady;                                                        2
lantern,                                                     2
late                                                         2
late.                                                        2
late:                                                        2
learn'd                                                      2
leg                                                          2
less                                                         2
less,                                                        2
lest                                                         2
letter,                                                      2
letter.                                                      2
letter;                                                      2
lies,                                                        2
life;                                                        2
lightning,                                                   2
lights                                                       2
like,                                                        2
likewise                                                     2
lives.                                                       2
lives;                                                       2
living,                                                      2
lo,                                                          2
loathed                                                      2
locks                                                        2
lodging:                                                     2
logs,                                                        2
long.                                                        2
look!                                                        2
look'st                                                      2
lord?                                                        2
loss,                                                        2
lost                                                         2
loved                                                        2
lovely                                                       2
lovers                                                       2
loves                                                        2
loving,                                                      2
lusty                                                        2
mad                                                          2
mad?                                                         2
madam!                                                       2
made.                                                        2
maid,                                                        2
maid;                                                        2
maids,                                                       2
making                                                       2
manage                                                       2
mangled                                                      2
manners                                                      2
married.                                                     2
marry;                                                       2
master,                                                      2
match,                                                       2
matter                                                       2
mattock                                                      2
means,                                                       2
meantime                                                     2
measure,                                                     2
meat                                                         2
meeting                                                      2
men:                                                         2
merciful,                                                    2
merit                                                        2
messenger                                                    2
met                                                          2
met,                                                         2
mightst                                                      2
mistress'                                                    2
mistress.                                                    2
modesty.                                                     2
monument                                                     2
more:                                                        2
morn,                                                        2
morrow                                                       2
morrow,                                                      2
mortal                                                       2
motion                                                       2
mouth                                                        2
moved.                                                       2
murder'd                                                     2
murderer,                                                    2
murders                                                      2
musicians                                                    2
myself:                                                      2
myself;                                                      2
name's                                                       2
name:                                                        2
name;                                                        2
native                                                       2
nature's                                                     2
nature,                                                      2
need.                                                        2
nest                                                         2
new-made                                                     2
newly                                                        2
nice                                                         2
nightly                                                      2
nine.                                                        2
no,                                                          2
none,                                                        2
nothing,                                                     2
nought                                                       2
now?                                                         2
obsequies                                                    2
occasion                                                     2
of.                                                          2
off;                                                         2
often                                                        2
old,                                                         2
ope                                                          2
oppression                                                   2
or,                                                          2
orchard                                                      2
order,                                                       2
over                                                         2
pair                                                         2
palm                                                         2
parents'                                                     2
part;                                                        2
parts,                                                       2
pass                                                         2
passing                                                      2
patience:                                                    2
patient,                                                     2
peace!                                                       2
perforce                                                     2
person                                                       2
persons                                                      2
piece                                                        2
pilgrim,                                                     2
pity                                                         2
place,                                                       2
place.                                                       2
place?                                                       2
please                                                       2
pleasure                                                     2
pluck                                                        2
point                                                        2
poor,                                                        2
post                                                         2
poverty,                                                     2
powder                                                       2
presence                                                     2
presently                                                    2
press                                                        2
presses                                                      2
prettiest                                                    2
prison,                                                      2
private                                                      2
proof                                                        2
prove,                                                       2
quench                                                       2
quiet.                                                       2
quite                                                        2
rage                                                         2
rage,                                                        2
raised                                                       2
rate                                                         2
re                                                           2
ready                                                        2
reckoning                                                    2
rejoice                                                      2
remain                                                       2
remedy.                                                      2
remove                                                       2
repent                                                       2
return                                                       2
right                                                        2
roaring                                                      2
robes                                                        2
rosemary                                                     2
sadness                                                      2
sadness,                                                     2
said;                                                        2
sail!                                                        2
saints                                                       2
sake,                                                        2
salt                                                         2
satisfied.                                                   2
saucy                                                        2
say.                                                         2
says,                                                        2
scape                                                        2
scarlet                                                      2
search                                                       2
secret                                                       2
seeing                                                       2
sent                                                         2
sentence                                                     2
served                                                       2
set,                                                         2
shadows                                                      2
shall.                                                       2
shame!                                                       2
shamest                                                      2
shape,                                                       2
share                                                        2
she'll                                                       2
she:                                                         2
she?                                                         2
shed                                                         2
shoes                                                        2
shop                                                         2
short.                                                       2
shot                                                         2
shrift.                                                      2
shroud;                                                      2
shut                                                         2
side,                                                        2
side.                                                        2
siege                                                        2
sighs                                                        2
silk                                                         2
simple                                                       2
sin!                                                         2
sin.                                                         2
sing                                                         2
sings                                                        2
sir:                                                         2
sit,                                                         2
sits                                                         2
slain.                                                       2
slain;                                                       2
slave                                                        2
sleep,                                                       2
sleep:                                                       2
sleeps                                                       2
smile                                                        2
smiles                                                       2
smooth                                                       2
so;                                                          2
soar                                                         2
soft!                                                        2
soldier's                                                    2
sole                                                         2
solemnity?                                                   2
sometimes                                                    2
son:                                                         2
sorrow,                                                      2
sorrows                                                      2
sound'?                                                      2
sound,'                                                      2
sound.                                                       2
spade                                                        2
speak.                                                       2
speak;                                                       2
speaks:                                                      2
speed                                                        2
spent.                                                       2
sport                                                        2
spy                                                          2
stain'd                                                      2
stars,                                                       2
starts                                                       2
state                                                        2
state,                                                       2
stay'd                                                       2
stay.                                                        2
steal                                                        2
step                                                         2
stinted                                                      2
stir                                                         2
stir,                                                        2
stol'n                                                       2
stony                                                        2
storm                                                        2
stout                                                        2
straight,                                                    2
streaks                                                      2
streets,                                                     2
strike                                                       2
struck                                                       2
substance                                                    2
suck'd                                                       2
sullen                                                       2
sum                                                          2
summer                                                       2
sun,                                                         2
supposed                                                     2
swear,                                                       2
sweet,                                                       2
sweet.                                                       2
tailor                                                       2
talk'd                                                       2
taste                                                        2
tears.                                                       2
tears:                                                       2
tears;                                                       2
tears?                                                       2
tedious                                                      2
temper                                                       2
ten                                                          2
term                                                         2
terror                                                       2
that.                                                        2
that;                                                        2
thee--                                                       2
thee;                                                        2
them;                                                        2
therefore,                                                   2
they,                                                        2
think'st                                                     2
think,                                                       2
this!                                                        2
this;                                                        2
thumb,                                                       2
thyself                                                      2
thyself,                                                     2
thyself?                                                     2
tidings                                                      2
to't,                                                        2
to-day?                                                      2
to-morrow,                                                   2
to-morrow.                                                   2
to-night                                                     2
to-night,                                                    2
to-night:                                                    2
to-night;                                                    2
to-night?                                                    2
toad,                                                        2
toil                                                         2
told                                                         2
tomb,                                                        2
too!                                                         2
too:                                                         2
too?                                                         2
torch,                                                       2
torches                                                      2
touch                                                        2
troth,                                                       2
trouble                                                      2
true.                                                        2
try                                                          2
twelve                                                       2
two;                                                         2
uncle,                                                       2
underneath                                                   2
unless                                                       2
unlucky                                                      2
urged                                                        2
us.                                                          2
vain                                                         2
valiant                                                      2
valour                                                       2
veins                                                        2
veins,                                                       2
vengeance                                                    2
vestal                                                       2
view,                                                        2
violent                                                      2
virtuous                                                     2
visor                                                        2
voice                                                        2
voice,                                                       2
volume                                                       2
vow                                                          2
wagoner                                                      2
wall                                                         2
wall,                                                        2
wall.                                                        2
want                                                         2
wanting                                                      2
wanton                                                       2
waste,                                                       2
watch.                                                       2
water                                                        2
way,                                                         2
weapon                                                       2
wearing                                                      2
wedding                                                      2
week;                                                        2
weep.                                                        2
weeping                                                      2
weeps                                                        2
welcome,                                                     2
well:                                                        2
well?                                                        2
wench,                                                       2
were,                                                        2
wert                                                         2
what's                                                       2
what:                                                        2
what?                                                        2
whence                                                       2
which,                                                       2
whip                                                         2
white                                                        2
wide                                                         2
wild                                                         2
wild-goose                                                   2
will:                                                        2
will?                                                        2
wilt,                                                        2
wind,                                                        2
winds,                                                       2
wisdom                                                       2
wise                                                         2
wise,                                                        2
wisely                                                       2
wit,                                                         2
wit.                                                         2
withal                                                       2
withdraw                                                     2
within;                                                      2
woe!                                                         2
woe,                                                         2
woe.                                                         2
woes,                                                        2
woful,                                                       2
woman.                                                       2
womb                                                         2
women                                                        2
wonder                                                       2
woo.                                                         2
work                                                         2
world's                                                      2
world,                                                       2
wormwood                                                     2
worser                                                       2
worship                                                      2
wound,                                                       2
wretch                                                       2
wretched                                                     2
writ,                                                        2
writ.                                                        2
write                                                        2
written,                                                     2
wrought                                                      2
year,                                                        2
yet;                                                         2
yon                                                          2
yond                                                         2
young;                                                       2
yours,                                                       2
youth                                                        2
youthful                                                     2
|                                                            2
'Heart's                                                     3
'twas                                                        3
Ah                                                           3
Are                                                          3
Away                                                         3
Ay                                                           3
Because                                                      3
Benvolio,                                                    3
Capulet                                                      3
Capulet;                                                     3
Citizen                                                      3
Death,                                                       3
Dost                                                         3
Even                                                         3
Fie,                                                         3
Find                                                         3
Gentlemen,                                                   3
Get                                                          3
God's                                                        3
God,                                                         3
Had                                                          3
Hang                                                         3
Hast                                                         3
I;                                                           3
Jule?'                                                       3
Juliet!                                                      3
Look                                                         3
Look,                                                        3
Love                                                         3
MERCUTIO,                                                    3
MONTAGUE,                                                    3
Mab                                                          3
Madam!                                                       3
Make                                                         3
Montague                                                     3
Montague.                                                    3
Montague;                                                    3
Most                                                         3
Nurse!                                                       3
O'er                                                         3
Out                                                          3
Paris'                                                       3
Paris:                                                       3
Peter's                                                      3
Poor                                                         3
Put                                                          3
ROMEO's                                                      3
Retires                                                      3
Romeo;                                                       3
See,                                                         3
She's                                                        3
Signior                                                      3
Sirrah,                                                      3
Stand                                                        3
Susan                                                        3
Sweet,                                                       3
Things                                                       3
Thursday,                                                    3
Tybalt?                                                      3
Unto                                                         3
Watch,                                                       3
We'll                                                        3
Wednesday                                                    3
Welcome,                                                     3
Well                                                         3
Were                                                         3
Where's                                                      3
Whose                                                        3
Without                                                      3
Would                                                        3
You'll                                                       3
Young                                                        3
a'                                                           3
after                                                        3
air                                                          3
air,                                                         3
airy                                                         3
alack,                                                       3
all.                                                         3
almost                                                       3
alone                                                        3
alone,                                                       3
another's                                                    3
apprehend                                                    3
apt                                                          3
attend                                                       3
away!                                                        3
ay,                                                          3
back,                                                        3
backward                                                     3
banish'd                                                     3
banished.                                                    3
banishment.                                                  3
bare                                                         3
be?                                                          3
beats                                                        3
bed.                                                         3
before,                                                      3
begin                                                        3
believe                                                      3
best.                                                        3
between                                                      3
birth,                                                       3
bitter                                                       3
blood,                                                       3
bones,                                                       3
both,                                                        3
both.                                                        3
bow                                                          3
boy:                                                         3
bridal                                                       3
bride.                                                       3
bridegroom                                                   3
brother                                                      3
burden                                                       3
bury                                                         3
buy                                                          3
by,                                                          3
cell                                                         3
cell,                                                        3
chamber.                                                     3
chamber:                                                     3
charge                                                       3
child,                                                       3
choose                                                       3
church                                                       3
churchyard                                                   3
closed                                                       3
clouds,                                                      3
company:                                                     3
confession                                                   3
cords                                                        3
corse,                                                       3
counsel                                                      3
count                                                        3
cousin's                                                     3
coz,                                                         3
craves                                                       3
cry                                                          3
cursed                                                       3
curtains                                                     3
dare                                                         3
dares                                                        3
date                                                         3
daughter's                                                   3
daughter,                                                    3
day's                                                        3
day:                                                         3
deadly                                                       3
death?                                                       3
deny                                                         3
devil                                                        3
done                                                         3
done,                                                        3
done.                                                        3
dream,                                                       3
dreams                                                       3
drink                                                        3
dwell                                                        3
e'er                                                         3
ear                                                          3
ears                                                         3
end                                                          3
end,                                                         3
enough                                                       3
exchange                                                     3
excuse                                                       3
faith                                                        3
faithful                                                     3
fault                                                        3
fear,                                                        3
feast,                                                       3
five                                                         3
flesh.                                                       3
flower.                                                      3
fool,                                                        3
foot,                                                        3
form                                                         3
forth;                                                       3
fortune!                                                     3
fought                                                       3
found                                                        3
fourteen.                                                    3
friar                                                        3
friend,                                                      3
friends,                                                     3
gentleman                                                    3
gentlemen!                                                   3
goes                                                         3
going                                                        3
good,                                                        3
got                                                          3
grave;                                                       3
grief,                                                       3
ground,                                                      3
grown                                                        3
hand:                                                        3
hare                                                         3
hear'st                                                      3
heart's                                                      3
heavens                                                      3
help!                                                        3
here!                                                        3
here's                                                       3
here;                                                        3
herself                                                      3
hid                                                          3
hie                                                          3
him;                                                         3
hire                                                         3
hither.                                                      3
hollow                                                       3
honey                                                        3
hundred                                                      3
i'                                                           3
ill,                                                         3
immortal                                                     3
in:                                                          3
inconstant                                                   3
iron                                                         3
is.                                                          3
jest                                                         3
kinsman!                                                     3
kinsman,                                                     3
kiss.                                                        3
kisses                                                       3
knew                                                         3
knife                                                        3
known                                                        3
knows                                                        3
lain                                                         3
lamb!                                                        3
lark                                                         3
lark,                                                        3
lead                                                         3
learn                                                        3
lends                                                        3
lick                                                         3
lie,                                                         3
lie.                                                         3
lie;                                                         3
life.                                                        3
light.                                                       3
light:                                                       3
likeness                                                     3
living                                                       3
loathsome                                                    3
looks                                                        3
looks,                                                       3
lord.                                                        3
love:                                                        3
mad,                                                         3
maid                                                         3
maids                                                        3
man:                                                         3
man?                                                         3
mark                                                         3
mayst                                                        3
mean,                                                        3
merry!                                                       3
mine,                                                        3
monument.                                                    3
moon,                                                        3
more.                                                        3
morning's                                                    3
mother?                                                      3
mouse,                                                       3
moved                                                        3
much,                                                        3
much.                                                        3
much:                                                        3
musicians,                                                   3
needy                                                        3
night;                                                       3
nine                                                         3
no:                                                          3
not:                                                         3
now!                                                         3
now;                                                         3
nurse.                                                       3
nurse;                                                       3
nurse?                                                       3
open                                                         3
out.                                                         3
own.                                                         3
pain                                                         3
part,                                                        3
peace                                                        3
peace.                                                       3
plague                                                       3
power                                                        3
precious                                                     3
present                                                      3
pronounce                                                    3
public                                                       3
pure                                                         3
quarrel,                                                     3
raise                                                        3
rather                                                       3
read                                                         3
rest,                                                        3
return.                                                      3
room                                                         3
rouse                                                        3
ruled                                                        3
sad                                                          3
said,                                                        3
save                                                         3
say!                                                         3
say'st                                                       3
scorn                                                        3
see,                                                         3
seek                                                         3
seeming                                                      3
sell                                                         3
sense                                                        3
shame                                                        3
shame,                                                       3
shape                                                        3
shrift                                                       3
sighs;                                                       3
sight                                                        3
sight!                                                       3
sir!                                                         3
sirrah,                                                      3
sit                                                          3
slain!                                                       3
slay                                                         3
small                                                        3
something                                                    3
son,                                                         3
sought                                                       3
soul!                                                        3
stand,                                                       3
stand:                                                       3
stands                                                       3
stop                                                         3
straight.                                                    3
strange                                                      3
strew                                                        3
strong                                                       3
sun.                                                         3
sure,                                                        3
sweetest                                                     3
swift                                                        3
sword,                                                       3
swords                                                       3
sworn                                                        3
teach                                                        3
thee!                                                        3
thee:                                                        3
thee?                                                        3
them.                                                        3
then.                                                        3
then;                                                        3
then?                                                        3
thing,                                                       3
thing.                                                       3
this:                                                        3
thither.                                                     3
thrust                                                       3
time.                                                        3
to-morrow:                                                   3
to;                                                          3
tomb;                                                        3
tongue,                                                      3
took                                                         3
torture,                                                     3
toward                                                       3
town,                                                        3
truly                                                        3
trust                                                        3
truth,                                                       3
turns                                                        3
unaccustom'd                                                 3
us?                                                          3
vault                                                        3
wake                                                         3
waking,                                                      3
walk                                                         3
wall:                                                        3
was,                                                         3
wash'd                                                       3
weak                                                         3
where's                                                      3
wherefore                                                    3
whole                                                        3
wife!                                                        3
wife,                                                        3
wife.                                                        3
wife:                                                        3
will.                                                        3
will;                                                        3
wings                                                        3
wit                                                          3
wit;                                                         3
wits                                                         3
word.                                                        3
words                                                        3
worn                                                         3
wouldst                                                      3
writ                                                         3
written                                                      3
ye,                                                          3
years,                                                       3
years;                                                       3
yourself                                                     3
youth,                                                       3
'Ay.'                                                        4
Alack,                                                       4
Alas,                                                        4
Art                                                          4
Call                                                         4
Came                                                         4
Can                                                          4
Capulet,                                                     4
Death                                                        4
Either                                                       4
Faith,                                                       4
Hie                                                          4
IV.                                                          4
Juliet.                                                      4
Knocking                                                     4
Mantua,                                                      4
PAGE                                                         4
PARIS,                                                       4
Page                                                         4
Peace,                                                       4
Peter,                                                       4
Since                                                        4
Speak                                                        4
Stay                                                         4
Such                                                         4
Tell                                                         4
That's                                                       4
Then,                                                        4
Thus                                                         4
Tut,                                                         4
Two                                                          4
Unless                                                       4
V.                                                           4
Wilt                                                         4
Within                                                       4
alone.                                                       4
already                                                      4
among                                                        4
anger                                                        4
art,                                                         4
ask                                                          4
away                                                         4
back.                                                        4
be,                                                          4
beat                                                         4
blessed                                                      4
book                                                         4
bound                                                        4
break                                                        4
bright                                                       4
change                                                       4
cheeks,                                                      4
chide                                                        4
child!                                                       4
civil                                                        4
close                                                        4
cold                                                         4
commend                                                      4
conjure                                                      4
county                                                       4
cousin!                                                      4
cousin,                                                      4
cruel                                                        4
cut                                                          4
dagger                                                       4
damned                                                       4
days                                                         4
death!                                                       4
death;                                                       4
deep                                                         4
dies                                                         4
dog                                                          4
either                                                       4
empty                                                        4
envious                                                      4
eyes.                                                        4
falls                                                        4
fatal                                                        4
fight                                                        4
fire                                                         4
flower                                                       4
flowers                                                      4
foul                                                         4
gave                                                         4
ghostly                                                      4
go.                                                          4
golden                                                       4
gone:                                                        4
gone;                                                        4
grace                                                        4
hadst                                                        4
half                                                         4
haste.                                                       4
hate                                                         4
hateful                                                      4
head,                                                        4
hence;                                                       4
her;                                                         4
here.                                                        4
hither                                                       4
hither,                                                      4
home                                                         4
honest                                                       4
honour                                                       4
honourable                                                   4
hope,                                                        4
hours                                                        4
house,                                                       4
houses!                                                      4
hurt                                                         4
is't                                                         4
itself                                                       4
keeps                                                        4
kill'd                                                       4
kinsman                                                      4
know'st                                                      4
ladies                                                       4
late,                                                        4
left                                                         4
lent                                                         4
life,                                                        4
light,                                                       4
longer                                                       4
look,                                                        4
loving                                                       4
man's                                                        4
marriage                                                     4
marriage,                                                    4
means                                                        4
men,                                                         4
men.                                                         4
merry                                                        4
might                                                        4
mine.                                                        4
minute                                                       4
mistress                                                     4
mother,                                                      4
murder                                                       4
names                                                        4
near                                                         4
needs                                                        4
news?                                                        4
next                                                         4
night's                                                      4
noise                                                        4
not;                                                         4
note                                                         4
now.                                                         4
nurse                                                        4
oft                                                          4
pay                                                          4
piteous                                                      4
place                                                        4
poison,                                                      4
prepare                                                      4
prove                                                        4
quickly                                                      4
ran                                                          4
ring                                                         4
rough                                                        4
rude                                                         4
saint,                                                       4
seen                                                         4
serve                                                        4
short                                                        4
slain,                                                       4
slaughter'd                                                  4
soul,                                                        4
sour                                                         4
speaks                                                       4
spirit                                                       4
stars                                                        4
stay,                                                        4
street.                                                      4
sword                                                        4
tale                                                         4
tears,                                                       4
that's                                                       4
there's                                                      4
things                                                       4
this.                                                        4
thumb                                                        4
thus                                                         4
to-morrow                                                    4
to-night.                                                    4
tomb                                                         4
too,                                                         4
too.                                                         4
torch                                                        4
up;                                                          4
vault,                                                       4
wear                                                         4
wife                                                         4
window                                                       4
wish                                                         4
words,                                                       4
world.                                                       4
yet,                                                         4
you!                                                         4
you?                                                         4
ACT                                                          5
Apothecary                                                   5
Could                                                        5
Did                                                          5
Ere                                                          5
Farewell,                                                    5
For,                                                         5
II.                                                          5
III.                                                         5
JOHN                                                         5
Laurence'                                                    5
Laurence's                                                   5
May                                                          5
Mercutio's                                                   5
Saint                                                        5
Turn                                                         5
Upon                                                         5
Verona                                                       5
Was                                                          5
Which,                                                       5
[Aside]                                                      5
[Within]                                                     5
again,                                                       5
all,                                                         5
alone;                                                       5
arm                                                          5
bade                                                         5
bed;                                                         5
behold                                                       5
bosom                                                        5
breath                                                       5
but,                                                         5
care                                                         5
case                                                         5
cheek                                                        5
child                                                        5
clouds                                                       5
come.                                                        5
consent                                                      5
cousin                                                       5
dark                                                         5
daughter                                                     5
do,                                                          5
exile                                                        5
eye,                                                         5
face,                                                        5
face.                                                        5
fetch                                                        5
fine                                                         5
for,                                                         5
further                                                      5
gives                                                        5
go,                                                          5
gone                                                         5
gone.                                                        5
ground                                                       5
hate,                                                        5
having                                                       5
he,                                                          5
her:                                                         5
here?                                                        5
him!                                                         5
him:                                                         5
it?                                                          5
joyful                                                       5
kind                                                         5
lady!                                                        5
laid                                                         5
lamentable                                                   5
last                                                         5
let's                                                        5
letter                                                       5
letters                                                      5
lovers'                                                      5
man!                                                         5
marry                                                        5
marry,                                                       5
measure                                                      5
morning                                                      5
mother                                                       5
move                                                         5
music                                                        5
need                                                         5
night!                                                       5
once                                                         5
one,                                                         5
orchard.                                                     5
peace,                                                       5
pray,                                                        5
pretty                                                       5
prince                                                       5
prince's                                                     5
prince,                                                      5
quoth                                                        5
reason                                                       5
remember                                                     5
sea,                                                         5
second                                                       5
sick                                                         5
sir?                                                         5
sleep                                                        5
slew                                                         5
soul                                                         5
sound                                                        5
spoke                                                        5
straight                                                     5
strength                                                     5
swear                                                        5
tear                                                         5
thank                                                        5
that?                                                        5
there.                                                       5
there?                                                       5
this,                                                        5
three                                                        5
under                                                        5
untimely                                                     5
unto                                                         5
us,                                                          5
villain,                                                     5
warrant,                                                     5
while                                                        5
whom                                                         5
woes                                                         5
word,                                                        5
years                                                        5
ABRAHAM                                                      6
From                                                         6
Here's                                                       6
Hold,                                                        6
Juliet's                                                     6
Like                                                         6
Lord,                                                        6
More                                                         6
Nurse,                                                       6
Our                                                          6
Romeo.                                                       6
These                                                        6
about                                                        6
again                                                        6
bed                                                          6
bloody                                                       6
body                                                         6
breath,                                                      6
day,                                                         6
dead!                                                        6
didst                                                        6
draw                                                         6
earth                                                        6
face                                                         6
fair,                                                        6
far                                                          6
father                                                       6
feel                                                         6
follow                                                       6
foot                                                         6
forget                                                       6
forth                                                        6
friend                                                       6
gentleman,                                                   6
grief                                                        6
haste,                                                       6
heaven,                                                      6
here,                                                        6
hit                                                          6
hold                                                         6
husband                                                      6
ill                                                          6
in,                                                          6
kiss                                                         6
lady,                                                        6
love!                                                        6
madam,                                                       6
me?                                                          6
mean                                                         6
meet                                                         6
men's                                                        6
myself                                                       6
nay,                                                         6
news                                                         6
night:                                                       6
pardon                                                       6
quarrel                                                      6
she,                                                         6
show                                                         6
shows                                                        6
silver                                                       6
sin                                                          6
slain                                                        6
so.                                                          6
sorrow                                                       6
sudden                                                       6
tender                                                       6
them,                                                        6
through                                                      6
times                                                        6
warrant                                                      6
wast                                                         6
way                                                          6
will,                                                        6
woe                                                          6
woful                                                        6
word:                                                        6
ye                                                           6
yonder                                                       6
you:                                                         6
you;                                                         6
All                                                          7
At                                                           7
But,                                                         7
His                                                          7
Mercutio,                                                    7
Montague,                                                    7
Paris,                                                       7
Re-enter                                                     7
Till                                                         7
Too                                                          7
What's                                                       7
Yet                                                          7
away.                                                        7
because                                                      7
bed,                                                         7
beseech                                                      7
calls                                                        7
came                                                         7
canst                                                        7
death:                                                       7
die                                                          7
die,                                                         7
dream                                                        7
else                                                         7
fearful                                                      7
grave                                                        7
hand,                                                        7
heart,                                                       7
hence,                                                       7
hide                                                         7
himself                                                      7
is,                                                          7
lips                                                         7
live,                                                        7
love;                                                        7
love?                                                        7
man;                                                         7
me;                                                          7
mind                                                         7
more,                                                        7
name,                                                        7
off                                                          7
out,                                                         7
past                                                         7
play                                                         7
poison                                                       7
rest                                                         7
she's                                                        7
since                                                        7
there,                                                       7
thou,                                                        7
thousand                                                     7
tongue                                                       7
turn                                                         7
vile                                                         7
watch                                                        7
we'll                                                        7
weep                                                         7
well,                                                        7
well.                                                        7
what,                                                        7
why,                                                         7
County                                                       8
I.                                                           8
On                                                           8
Or,                                                          8
Take                                                         8
Watchman                                                     8
Why                                                          8
ancient                                                      8
another                                                      8
beauty                                                       8
best                                                         8
bite                                                         8
black                                                        8
comfort                                                      8
dead;                                                        8
die.                                                         8
earth,                                                       8
eyes,                                                        8
faith,                                                       8
fear                                                         8
first                                                        8
full                                                         8
great                                                        8
head                                                         8
high                                                         8
house.                                                       8
it:                                                          8
lady's                                                       8
law                                                          8
lips,                                                        8
live                                                         8
lord                                                         8
man,                                                         8
man.                                                         8
master                                                       8
men                                                          8
noble                                                        8
none                                                         8
o'er                                                         8
pale                                                         8
said                                                         8
says                                                         8
set                                                          8
sir.                                                         8
sir;                                                         8
so?                                                          8
tears                                                        8
that,                                                        8
thought                                                      8
time,                                                        8
why                                                          8
world                                                        8
Doth                                                         9
Madam,                                                       9
Nor                                                          9
Romeo?                                                       9
Therefore                                                    9
Thursday                                                     9
Tybalt's                                                     9
again.                                                       9
against                                                      9
answer                                                       9
better                                                       9
bring                                                        9
cell.                                                        9
desperate                                                    9
even                                                         9
eyes                                                         9
father,                                                      9
friar,                                                       9
hands                                                        9
heavy                                                        9
help                                                         9
him,                                                         9
into                                                         9
kill                                                         9
life                                                         9
lives                                                        9
lord,                                                        9
ne'er                                                        9
not.                                                         9
nothing                                                      9
only                                                         9
others                                                       9
rich                                                         9
sun                                                          9
talk                                                         9
this?                                                        9
though                                                       9
villain                                                      9
Be                                                          10
Have                                                        10
Her                                                         10
I,                                                          10
Marry,                                                      10
One                                                         10
Paris                                                       10
Than                                                        10
There                                                       10
bear                                                        10
ever                                                        10
get                                                         10
happy                                                       10
hence                                                       10
ho!                                                         10
it.                                                         10
joy                                                         10
little                                                      10
me!                                                         10
name                                                        10
nor                                                         10
o'                                                          10
pray                                                        10
run                                                         10
saw                                                         10
send                                                        10
shalt                                                       10
son                                                         10
thee.                                                       10
therefore                                                   10
thing                                                       10
twenty                                                      10
within                                                      10
without                                                     10
Ah,                                                         11
CAPULET,                                                    11
Capulet's                                                   11
Come                                                        11
Friar                                                       11
Hath                                                        11
Let                                                         11
No                                                          11
No,                                                         11
Will                                                        11
blood                                                       11
every                                                       11
eye                                                         11
fall                                                        11
gentle                                                      11
gone,                                                       11
hand                                                        11
he's                                                        11
her,                                                        11
lay                                                         11
makes                                                       11
many                                                        11
night.                                                      11
own                                                         11
say,                                                        11
soon                                                        11
then,                                                       11
thine                                                       11
up,                                                         11
whose                                                       11
Go,                                                         12
Now                                                         12
Now,                                                        12
Romeo's                                                     12
Some                                                        12
They                                                        12
Your                                                        12
above                                                       12
being                                                       12
both                                                        12
could                                                       12
day!                                                        12
dost                                                        12
leave                                                       12
long                                                        12
love's                                                      12
love.                                                       12
me:                                                         12
new                                                         12
poor                                                        12
same                                                        12
still                                                       12
Being                                                       13
Give                                                        13
Go                                                          13
Romeo!                                                      13
Second                                                      13
When                                                        13
dead                                                        13
dead,                                                       13
down                                                        13
hour                                                        13
house                                                       13
lie                                                         13
lies                                                        13
most                                                        13
now,                                                        13
so,                                                         13
use                                                         13
word                                                        13
you.                                                        13
'Tis                                                        14
An                                                          14
Here                                                        14
Juliet                                                      14
Musician                                                    14
Nay,                                                        14
Not                                                         14
Shall                                                       14
Why,                                                        14
before                                                      14
early                                                       14
had                                                         14
heart                                                       14
it,                                                         14
nurse,                                                      14
stay                                                        14
two                                                         14
And,                                                        15
BALTHASAR                                                   15
Do                                                          15
GREGORY                                                     15
and,                                                        15
come,                                                       15
ere                                                         15
light                                                       15
married                                                     15
part                                                        15
put                                                         15
till                                                        15
Well,                                                       16
Who                                                         16
bid                                                         16
him.                                                        16
keep                                                        16
made                                                        16
me.                                                         16
night,                                                      16
other                                                       16
stand                                                       16
think                                                       16
those                                                       16
who                                                         16
young                                                       16
Good                                                        17
Juliet,                                                     17
MONTAGUE                                                    17
PETER                                                       17
PRINCE                                                      17
Thy                                                         17
Tybalt                                                      17
We                                                          17
back                                                        17
never                                                       17
speak                                                       17
God                                                         18
He                                                          18
She                                                         18
call                                                        18
cannot                                                      18
day                                                         18
look                                                        18
us                                                          18
Ay,                                                         19
Tybalt,                                                     19
You                                                         19
been                                                        19
death,                                                      19
holy                                                        19
mine                                                        19
time                                                        19
Then                                                        20
any                                                         20
find                                                        20
hear                                                        20
heaven                                                      20
true                                                        20
Or                                                          21
SAMPSON                                                     21
lady                                                        21
well                                                        21
where                                                       21
TYBALT                                                      22
What,                                                       22
comes                                                       22
dear                                                        22
death                                                       22
wilt                                                        22
If                                                          23
Which                                                       23
old                                                         23
sweet                                                       23
First                                                       24
How                                                         24
SCENE                                                       24
With                                                        24
hast                                                        24
not,                                                        24
Come,                                                       25
So                                                          25
Where                                                       25
very                                                        25
'tis                                                        26
By                                                          26
Servant                                                     26
see                                                         26
much                                                        27
night                                                       27
sir,                                                        27
Of                                                          28
PARIS                                                       28
Exit                                                        29
man                                                         29
Exeunt                                                      30
them                                                        30
which                                                       30
did                                                         31
how                                                         31
were                                                        31
In                                                          32
It                                                          32
give                                                        32
know                                                        32
like                                                        32
take                                                        32
As                                                          33
fair                                                        33
now                                                         33
say                                                         33
thee,                                                       33
yet                                                         33
Romeo,                                                      34
can                                                         34
let                                                         34
This                                                        35
come                                                        35
too                                                         35
up                                                          35
Thou                                                        36
love,                                                       36
me,                                                         36
or                                                          36
out                                                         36
than                                                        36
there                                                       36
these                                                       36
you,                                                        36
doth                                                        37
make                                                        37
must                                                        37
Is                                                          38
go                                                          38
upon                                                        38
then                                                        39
when                                                        39
here                                                        40
tell                                                        40
was                                                         40
such                                                        41
My                                                          42
may                                                         42
one                                                         42
they                                                        43
some                                                        44
art                                                         45
should                                                      45
their                                                       46
Romeo                                                       47
we                                                          48
more                                                        49
hath                                                        50
would                                                       51
For                                                         53
our                                                         54
am                                                          55
him                                                         56
if                                                          56
What                                                        57
love                                                        59
good                                                        61
LADY                                                        62
are                                                         62
at                                                          62
A                                                           63
LAURENCE                                                    63
an                                                          63
MERCUTIO                                                    66
O,                                                          66
do                                                          66
on                                                          66
But                                                         67
Enter                                                       69
no                                                          69
FRIAR                                                       70
The                                                         70
I'll                                                        71
what                                                        71
BENVOLIO                                                    72
That                                                        74
all                                                         77
O                                                           78
from                                                        80
thee                                                        81
To                                                          82
by                                                          82
she                                                         84
your                                                        90
so                                                          91
shall                                                       92
he                                                          96
but                                                        102
Nurse                                                      103
CAPULET                                                    108
have                                                       110
her                                                        118
will                                                       119
as                                                         123
his                                                        125
JULIET                                                     131
thy                                                        150
it                                                         153
this                                                       155
for                                                        157
me                                                         173
ROMEO                                                      176
be                                                         186
not                                                        200
you                                                        201
And                                                        217
with                                                       227
thou                                                       229
that                                                       252
in                                                         280
is                                                         292
my                                                         315
of                                                         361
a                                                          398
to                                                         432
and                                                        472
I                                                          546
the                                                        611

--- 6344 row(s) selected.
>>
>>-- some simple tests for the event_log_reader predefined TMUDF
>>-- (result of the UDF is not deterministic)
>>select [last 0] * from udf(event_log_reader());

--- 0 row(s) selected.
>>select [last 0] log_ts + interval '1' day,
+>                severity || 'x',
+>                substring(component from 1 for 2),
+>                node_number + 1,
+>                cpu + 2,
+>                pin * 4,
+>                process_name || query_id,
+>                sql_code,
+>                message,
+>                log_file_node,
+>                log_file_name,
+>                log_file_line -1,
+>                case when parse_status = ' ' then 'ok' else parse_status end
+>from udf(event_log_reader('f'));

--- 0 row(s) selected.
>>select coalesce(min(log_file_node), 0) from udf(event_log_reader('f')) x
+>where x.log_file_line <100;

(EXPR)     
-----------

          0

--- 1 row(s) selected.
>>
>>-- copy a file with known content to the log directory and see whether
>>-- we get the correct results
>>sh cp $$scriptsdir$$/udr/TEST002.sample_events $$TRAF_HOME$$/logs/master_exec_regr_999_99999.log;
>>
>>select count(*) as num_events,
+>       max(log_file_line) as num_lines,
+>       count(distinct query_id) num_query_ids,
+>       sum(case when parse_status = ' ' then 0 else 1 end) num_parse_errors
+>from udf(event_log_reader('f'))
+>where log_file_name = 'master_exec_regr_999_99999.log';

NUM_EVENTS            NUM_LINES    NUM_QUERY_IDS         NUM_PARSE_ERRORS
--------------------  -----------  --------------------  --------------------

                  22           33                    13                     3

--- 1 row(s) selected.
>>-- there are 22 events in 33 lines in this file, with 13 unique query ids and 3 parse errors
>>
>>select * from udf(event_log_reader('f'))
+>where log_file_name = 'master_exec_regr_999_99999.log'
+>  and (log_file_line in (1,3,8,16,23) or parse_status <> ' ')
+>order by log_file_line;

LOG_TS                      SEVERITY    COMPONENT                                           NODE_NUMBER  CPU          PIN          PROCESS_NAME  SQL_CODE     QUERY_ID                                                                                                                                                                                                  MESSAGE                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           LOG_FILE_NODE  LOG_FILE_NAME                                                                                                                                                                                             LOG_FILE_LINE  PARSE_STATUS
--------------------------  ----------  --------------------------------------------------  -----------  -----------  -----------  ------------  -----------  --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  -------------  --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  -------------  ------------

2015-02-03 00:08:03.480000  INFO        SQL.EXE                                                       0            0        25816  $Z000L2L                ?  ?                                                                                                                                                                                                         An executor process is launched.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              0  master_exec_regr_999_99999.log                                                                                                                                                                                        1              
2015-02-03 00:08:11.037000  INFO        SQL.COMP                                                      0            0        25952  $Z000L6H                ?  ?                                                                                                                                                                                                         A compiler process is launched.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               0  master_exec_regr_999_99999.log                                                                                                                                                                                        3              
2015-02-03 00:08:31.884000  ERROR       SQL.EXE                                                       0            0        25816  $Z000L2L            11252  MXID11000025816212289682083477587000000000206U3333300_1438___SQLCI_DML_LAST__                                                                                                                             *** ERROR[11252] Column  not found (SQLSTATE 38900)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           0  master_exec_regr_999_99999.log                                                                                                                                                                                        8              
2015-02-03 00:08:33.418000  ERROR       SQL.EXE                                                       0            0        25816  $Z000L2L            11246  MXID11000025816212289682083477587000000000206U3333300_1593___SQLCI_DML_LAST__                                                                                                                             *** ERROR[11246] An error occurred locating function 'SESSIONIZE_NON_EXISTENT' in library '/opt/home/zellerh/trafodion/core/sqf/rundir/udr/TEST001.dll'. 2015-02-03 00:this is a bad timestamp and should be appended to the previous message                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 0  master_exec_regr_999_99999.log                                                                                                                                                                                       16              
2015-02-03 00:08:33.500000  ERROR       ?                                                             ?            ?            ?  ?                       ?  ?                                                                                                                                                                                                         this should produce a parse error with this message                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           0  master_exec_regr_999_99999.log                                                                                                                                                                                       20  E           
2015-02-03 00:08:34.114000  ERROR       SQL.EXE                                                       0            0        25816  $Z000L2L            15001  MXID11000025816212289682083477587000000000206U3333300_1710___SQLCI_DML_LAST__                                                                                                                             *** ERROR[15001] A syntax error occurred at or before:  select * from udf(sessionize_dynamic(TABLE(SELECT userid, JULIANTIMESTAMP(ts) a s TS                           FROM clicks                           PARTITION  BY userid ORDER BY ts), TABLE(SELECT userid, JULIANTIMESTAMP(ts) as TS                            FROM clicks                           PARTITION BY userid ORDER BY ts), cast('TS' as char(2)),                     'USERID',                      60000000)) XOX;              ^ (409 characters from start of SQL statement)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       0  master_exec_regr_999_99999.log                                                                                                                                                                                       23              
2015-02-03 00:08:34.461000  ERROR       SQL.EXE                                                       0            0        25816  $Z000L2L            11252  MXID11000025816212289682083477587000000000206U3333300_1711___SQLCI_DML_LAST__                                                                                                                             Some Chinese UTF8 characters: ??????????? and invalid UTF-8 characters: ??hould see replacement characters to the left                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        0  master_exec_regr_999_99999.log                                                                                                                                                                                       30  C           
2015-02-03 00:08:34.461000  ERROR       SQL.EXE                                                       0            0        25816  $Z000L2L            11252  MXID11000025816212289682083477587000000000206U3333300_1711___SQLCI_DML_LAST__                                                                                                                             Parse error in continuation line: Invalid UTF-8 characters: ??hould see replacement characters to the left                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    0  master_exec_regr_999_99999.log                                                                                                                                                                                       31  C           

--- 8 row(s) selected.
>>-- lines 20, 30 and 31 have parse errors and are also displayed
>>
>>sh rm $$TRAF_HOME$$/logs/master_exec_regr_999_99999.log;
>>
>>-- some negative test cases
>>prepare s from select * from udf(event_log_reader(10));

*** ERROR[11252] Expecting a character constant as first parameter of the call to TRAFODION.SCH.EVENT_LOG_READER (SQLSTATE 38222)

*** ERROR[8822] The statement was not prepared.

>>-- parameter must be a string
>>prepare s from select * from udf(event_log_reader(?));

*** ERROR[11151] Unable to use 'type' 'UNSUPPORTED TYPE' in a user-defined routine. Details: unsupported type class.

*** ERROR[8822] The statement was not prepared.

>>-- parameter must be available at compile time
>>prepare s from select * from udf(event_log_reader(table(select * from (values (1)) as x)));

*** ERROR[11252] There should be no table-valued parameters to the call to TRAFODION.SCH.EVENT_LOG_READER, got 1 (SQLSTATE 38220)

*** ERROR[8822] The statement was not prepared.

>>-- table-valued input not allowed
>>prepare s from select query_id, log_file_name, parse_status
+>from udf(event_log_reader());

*** ERROR[4001] Column LOG_FILE_NAME is not found.  Tables in scope: NONE.  Default schema: TRAFODION.SCH.

*** ERROR[8822] The statement was not prepared.

>>-- log_file_name and parse_status columns not available without 'f' option
>>
>>-- some simple tests for the timeseries builtin UDF
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          partition by p
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL1', 'FC',
+>                    'VAL1', 'LC',
+>                    'VAL2', 'FC',
+>                    'VAL2', 'LC'))
+>order by p, slice_time;

P            SLICE_TIME                  VAL1_FC      VAL1_LC      VAL2_FC       VAL2_LC
-----------  --------------------------  -----------  -----------  ------------  ------------

          1  2015-01-01 00:00:00.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:05.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:10.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:15.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:20.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:25.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:30.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:35.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:40.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:45.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:50.000000            1            1          1.00          1.00
          1  2015-01-01 00:00:55.000000            1            1          1.00          1.00
          1  2015-01-01 00:01:00.000000           60           60         60.00         60.00
          2  2015-01-01 00:00:00.000000            ?            1             ?          1.00
          2  2015-01-01 00:00:05.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:10.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:15.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:20.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:25.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:30.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:35.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:40.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:45.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:50.000000            1            1          1.00          1.00
          2  2015-01-01 00:00:55.000000            1            1          1.00          1.00
          2  2015-01-01 00:01:00.000000           60           60         60.00         60.00
          3  2015-01-01 00:00:00.000000            1            1          1.00          1.00
          3  2015-01-01 00:00:05.000000            1            7          1.00          6.00
          3  2015-01-01 00:00:10.000000            7            7          6.00          6.00
          3  2015-01-01 00:00:15.000000            7            7          6.00          6.00
          3  2015-01-01 00:00:20.000000            7            7          6.00          6.00
          3  2015-01-01 00:00:25.000000            7            7          6.00          6.00
          3  2015-01-01 00:00:30.000000           30           30             ?             ?
          3  2015-01-01 00:00:35.000000            ?            ?         35.00         35.00
          3  2015-01-01 00:00:40.000000            ?            ?             ?             ?
          3  2015-01-01 00:00:45.000000            ?            ?             ?             ?
          3  2015-01-01 00:00:50.000000            ?            ?             ?             ?
          3  2015-01-01 00:00:55.000000            ?            ?             ?             ?
          3  2015-01-01 00:01:00.000000           60           60         60.00         60.00

--- 39 row(s) selected.
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          partition by p
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL1', 'FCI',
+>                    'VAL1', 'LCI',
+>                    'VAL2', 'FCI',
+>                    'VAL2', 'LCI',
+>                    'VAL1', 'FL',
+>                    'VAL1', 'LL',
+>                    'VAL2', 'FL',
+>                    'VAL2', 'LL',
+>                    'VAL1', 'FLi',
+>                    'VAL1', 'LLi',
+>                    'VAL2', 'FLi',
+>                    'VAL2', 'LLi'))
+>order by p, slice_time;

P            SLICE_TIME                  VAL1_FCI     VAL1_LCI     VAL2_FCI      VAL2_LCI      VAL1_FL                    VAL1_LL                    VAL2_FL                    VAL2_LL                    VAL1_FLI                   VAL1_LLI                   VAL2_FLI                   VAL2_LLI
-----------  --------------------------  -----------  -----------  ------------  ------------  -------------------------  -------------------------  -------------------------  -------------------------  -------------------------  -------------------------  -------------------------  -------------------------

          1  2015-01-01 00:00:00.000000            1            1          1.00          1.00   1.00000000000000000E+000   5.91666666666666624E+000   1.00000000000000000E+000   5.91666666666666624E+000   1.00000000000000000E+000   5.91666666666666624E+000   1.00000000000000000E+000   5.91666666666666624E+000
          1  2015-01-01 00:00:05.000000            1            1          1.00          1.00   5.91666666666666624E+000   1.08333333333333328E+001   5.91666666666666624E+000   1.08333333333333328E+001   5.91666666666666624E+000   1.08333333333333328E+001   5.91666666666666624E+000   1.08333333333333328E+001
          1  2015-01-01 00:00:10.000000            1            1          1.00          1.00   1.08333333333333328E+001   1.57500000000000032E+001   1.08333333333333328E+001   1.57500000000000032E+001   1.08333333333333328E+001   1.57500000000000032E+001   1.08333333333333328E+001   1.57500000000000032E+001
          1  2015-01-01 00:00:15.000000            1            1          1.00          1.00   1.57500000000000032E+001   2.06666666666666656E+001   1.57500000000000032E+001   2.06666666666666656E+001   1.57500000000000032E+001   2.06666666666666656E+001   1.57500000000000032E+001   2.06666666666666656E+001
          1  2015-01-01 00:00:20.000000            1            1          1.00          1.00   2.06666666666666656E+001   2.55833333333333344E+001   2.06666666666666656E+001   2.55833333333333344E+001   2.06666666666666656E+001   2.55833333333333344E+001   2.06666666666666656E+001   2.55833333333333344E+001
          1  2015-01-01 00:00:25.000000            1            1          1.00          1.00   2.55833333333333344E+001   3.05000000000000000E+001   2.55833333333333344E+001   3.05000000000000000E+001   2.55833333333333344E+001   3.05000000000000000E+001   2.55833333333333344E+001   3.05000000000000000E+001
          1  2015-01-01 00:00:30.000000            1            1          1.00          1.00   3.05000000000000000E+001   3.54166666666666752E+001   3.05000000000000000E+001   3.54166666666666752E+001   3.05000000000000000E+001   3.54166666666666752E+001   3.05000000000000000E+001   3.54166666666666752E+001
          1  2015-01-01 00:00:35.000000            1            1          1.00          1.00   3.54166666666666752E+001   4.03333333333333312E+001   3.54166666666666752E+001   4.03333333333333312E+001   3.54166666666666752E+001   4.03333333333333312E+001   3.54166666666666752E+001   4.03333333333333312E+001
          1  2015-01-01 00:00:40.000000            1            1          1.00          1.00   4.03333333333333312E+001   4.52500000000000064E+001   4.03333333333333312E+001   4.52500000000000064E+001   4.03333333333333312E+001   4.52500000000000064E+001   4.03333333333333312E+001   4.52500000000000064E+001
          1  2015-01-01 00:00:45.000000            1            1          1.00          1.00   4.52500000000000064E+001   5.01666666666666752E+001   4.52500000000000064E+001   5.01666666666666752E+001   4.52500000000000064E+001   5.01666666666666752E+001   4.52500000000000064E+001   5.01666666666666752E+001
          1  2015-01-01 00:00:50.000000            1            1          1.00          1.00   5.01666666666666752E+001   5.50833333333333312E+001   5.01666666666666752E+001   5.50833333333333312E+001   5.01666666666666752E+001   5.50833333333333312E+001   5.01666666666666752E+001   5.50833333333333312E+001
          1  2015-01-01 00:00:55.000000            1            1          1.00          1.00   5.50833333333333312E+001   6.00000000000000000E+001   5.50833333333333312E+001   6.00000000000000000E+001   5.50833333333333312E+001   6.00000000000000000E+001   5.50833333333333312E+001   6.00000000000000000E+001
          1  2015-01-01 00:01:00.000000           60           60         60.00         60.00   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?
          2  2015-01-01 00:00:00.000000            ?            1             ?          1.00                          ?   3.07017543859649088E+000                          ?   3.07017543859649088E+000                          ?   3.07017543859649088E+000                          ?   3.07017543859649088E+000
          2  2015-01-01 00:00:05.000000            1            1          1.00          1.00   3.07017543859649088E+000   8.24561403508771968E+000   3.07017543859649088E+000   8.24561403508771968E+000   3.07017543859649088E+000   8.24561403508771968E+000   3.07017543859649088E+000   8.24561403508771968E+000
          2  2015-01-01 00:00:10.000000            1            1          1.00          1.00   8.24561403508771968E+000   1.34210526315789472E+001   8.24561403508771968E+000   1.34210526315789472E+001   8.24561403508771968E+000   1.34210526315789472E+001   8.24561403508771968E+000   1.34210526315789472E+001
          2  2015-01-01 00:00:15.000000            1            1          1.00          1.00   1.34210526315789472E+001   1.85964912280701760E+001   1.34210526315789472E+001   1.85964912280701760E+001   1.34210526315789472E+001   1.85964912280701760E+001   1.34210526315789472E+001   1.85964912280701760E+001
          2  2015-01-01 00:00:20.000000            1            1          1.00          1.00   1.85964912280701760E+001   2.37719298245613984E+001   1.85964912280701760E+001   2.37719298245613984E+001   1.85964912280701760E+001   2.37719298245613984E+001   1.85964912280701760E+001   2.37719298245613984E+001
          2  2015-01-01 00:00:25.000000            1            1          1.00          1.00   2.37719298245613984E+001   2.89473684210526336E+001   2.37719298245613984E+001   2.89473684210526336E+001   2.37719298245613984E+001   2.89473684210526336E+001   2.37719298245613984E+001   2.89473684210526336E+001
          2  2015-01-01 00:00:30.000000            1            1          1.00          1.00   2.89473684210526336E+001   3.41228070175438592E+001   2.89473684210526336E+001   3.41228070175438592E+001   2.89473684210526336E+001   3.41228070175438592E+001   2.89473684210526336E+001   3.41228070175438592E+001
          2  2015-01-01 00:00:35.000000            1            1          1.00          1.00   3.41228070175438592E+001   3.92982456140350912E+001   3.41228070175438592E+001   3.92982456140350912E+001   3.41228070175438592E+001   3.92982456140350912E+001   3.41228070175438592E+001   3.92982456140350912E+001
          2  2015-01-01 00:00:40.000000            1            1          1.00          1.00   3.92982456140350912E+001   4.44736842105263168E+001   3.92982456140350912E+001   4.44736842105263168E+001   3.92982456140350912E+001   4.44736842105263168E+001   3.92982456140350912E+001   4.44736842105263168E+001
          2  2015-01-01 00:00:45.000000            1            1          1.00          1.00   4.44736842105263168E+001   4.96491228070175424E+001   4.44736842105263168E+001   4.96491228070175424E+001   4.44736842105263168E+001   4.96491228070175424E+001   4.44736842105263168E+001   4.96491228070175424E+001
          2  2015-01-01 00:00:50.000000            1            1          1.00          1.00   4.96491228070175424E+001   5.48245614035087680E+001   4.96491228070175424E+001   5.48245614035087680E+001   4.96491228070175424E+001   5.48245614035087680E+001   4.96491228070175424E+001   5.48245614035087680E+001
          2  2015-01-01 00:00:55.000000            1            1          1.00          1.00   5.48245614035087680E+001   6.00000000000000000E+001   5.48245614035087680E+001   6.00000000000000000E+001   5.48245614035087680E+001   6.00000000000000000E+001   5.48245614035087680E+001   6.00000000000000000E+001
          2  2015-01-01 00:01:00.000000           60           60         60.00         60.00   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?
          3  2015-01-01 00:00:00.000000            1            1          1.00          1.00   1.00000000000000000E+000   5.16666666666666688E+000   1.00000000000000000E+000   5.16666666666666688E+000   1.00000000000000000E+000   5.16666666666666688E+000   1.00000000000000000E+000   5.16666666666666688E+000
          3  2015-01-01 00:00:05.000000            1            7          1.00          6.00   5.16666666666666688E+000   1.00000000000000000E+001   5.16666666666666688E+000                          ?   5.16666666666666688E+000   1.00000000000000000E+001   5.16666666666666688E+000   9.10714285714285824E+000
          3  2015-01-01 00:00:10.000000            7            7          6.00          6.00   1.00000000000000000E+001   1.50000000000000000E+001                          ?                          ?   1.00000000000000000E+001   1.50000000000000000E+001   9.10714285714285824E+000   1.42857142857142864E+001
          3  2015-01-01 00:00:15.000000            7            7          6.00          6.00   1.50000000000000000E+001   2.00000000000000000E+001                          ?                          ?   1.50000000000000000E+001   2.00000000000000000E+001   1.42857142857142864E+001   1.94642857142857152E+001
          3  2015-01-01 00:00:20.000000            7            7          6.00          6.00   2.00000000000000000E+001   2.50000000000000000E+001                          ?                          ?   2.00000000000000000E+001   2.50000000000000000E+001   1.94642857142857152E+001   2.46428571428571488E+001
          3  2015-01-01 00:00:25.000000            7            7          6.00          6.00   2.50000000000000000E+001   3.00000000000000000E+001                          ?                          ?   2.50000000000000000E+001   3.00000000000000000E+001   2.46428571428571488E+001   2.98214285714285696E+001
          3  2015-01-01 00:00:30.000000           30           30          6.00          6.00   3.00000000000000000E+001                          ?                          ?                          ?   3.00000000000000000E+001   3.50000000000000000E+001   2.98214285714285696E+001   3.50000000000000000E+001
          3  2015-01-01 00:00:35.000000           30           30         35.00         35.00                          ?                          ?   3.50000000000000000E+001                          ?   3.50000000000000000E+001   4.00000000000000000E+001   3.50000000000000000E+001   4.00000000000000000E+001
          3  2015-01-01 00:00:40.000000           30           30         35.00         35.00                          ?                          ?                          ?                          ?   4.00000000000000000E+001   4.50000000000000000E+001   4.00000000000000000E+001   4.50000000000000000E+001
          3  2015-01-01 00:00:45.000000           30           30         35.00         35.00                          ?                          ?                          ?                          ?   4.50000000000000000E+001   5.00000000000000000E+001   4.50000000000000000E+001   5.00000000000000000E+001
          3  2015-01-01 00:00:50.000000           30           30         35.00         35.00                          ?                          ?                          ?                          ?   5.00000000000000000E+001   5.50000000000000000E+001   5.00000000000000000E+001   5.50000000000000000E+001
          3  2015-01-01 00:00:55.000000           30           30         35.00         35.00                          ?                          ?                          ?                          ?   5.50000000000000000E+001   6.00000000000000000E+001   5.50000000000000000E+001   6.00000000000000000E+001
          3  2015-01-01 00:01:00.000000           60           60         60.00         60.00   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?   6.00000000000000000E+001                          ?

--- 39 row(s) selected.
>>
>>-- JDBC queries through a TMUDF. Note that this requires the Trafodion T4
>>-- driver jar to exist in $TRAF_HOME/udr/external_libs.
>>sh mkdir -p $$TRAF_HOME$$/udr/external_libs;
>>sh cp $$TRAF_HOME$$/export/lib/jdbcT2.jar $$TRAF_HOME$$/udr/external_libs;
>>
>>-- with default ports, $$QUOTE$$$$JDBC_T4_URL$$$$QUOTE$$ should be
>>-- 'jdbc:t4jdbc://localhost:23400/:'
>>prepare s_traf from
+>select *
+>from udf(jdbc('jdbcT4-${TRAFODION_VER}.jar',
+>              'org.trafodion.jdbc.t4.T4Driver',
+>              $$QUOTE$$$$JDBC_T4_URL$$$$QUOTE$$,
+>              'any', -- no user id
+>              'any', -- no password
+>              'source',
+>              'select * from (values (''Hello'', ''World''), (''Hallo'', ''Welt'')) T(a,b)'));

--- SQL command prepared.
>>execute s_traf;

A           B         
----------  ----------

Hello       World     
Hallo       Welt      

--- 2 row(s) selected.
>>
>>-- negative tests
>>
>>select * from udf(timeseries());

*** ERROR[11252] TIMESERIES UDF: Expecting one table-valued input (SQLSTATE 38010)

*** ERROR[8822] The statement was not prepared.

>>-- must have one table-valued input
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          order by p),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL1', 'FC',
+>                    'VAL1', 'LC',
+>                    'VAL2', 'FC',
+>                    'VAL2', 'LC'));

*** ERROR[11252] TIMESERIES UDF: Must use ORDER BY a TIME or TIMESTAMP column for the input table (SQLSTATE 38030)

*** ERROR[8822] The statement was not prepared.

>>-- order by must be for a timestamp value
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    5,
+>                    'VAL1', 'FC',
+>                    'VAL1', 'LC',
+>                    'VAL2', 'FC',
+>                    'VAL2', 'LC'));

*** ERROR[11252] TIMESERIES UDF: Second scalar parameter for time slice width must be an interval constant in the day to second range (SQLSTATE 38070)

*** ERROR[8822] The statement was not prepared.

>>-- time slice width must be an interval
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          partition by p
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL1', 'AB',
+>                    'VAL1', 'LC'));

*** ERROR[11252] TIMESERIES UDF: Parameter 4 should start with F or L for first or last value (SQLSTATE 38110)

*** ERROR[8822] The statement was not prepared.

>>-- 'AB' is not a valid instruction
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          partition by p
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL9', 'FC'));

*** ERROR[11252] Column VAL9 not found (SQLSTATE 38900)

*** ERROR[8822] The statement was not prepared.

>>-- There is no column VAL9
>>
>>select *
+>from udf(timeseries(table(select * from t002_Timeseries
+>                          partition by p
+>                          order by ts),
+>                    'SLICE_TIME',
+>                    interval '5' second,
+>                    'VAL9', 'FC',
+>                    'VAL1'));

*** ERROR[11252] TIMESERIES UDF: Parameters need to be specified in pairs of column name and instructions (SQLSTATE 38080)

*** ERROR[8822] The statement was not prepared.

>>-- Arguments not in pairs of column names and instructions
>>
>>-- eclipse timeseries builtin function with a true UDF
>>create table_mapping function timeseries(pattern char(1))
+>returns (outval char(40))
+>external name 'TOKENIZER'
+>library TEST002;

--- SQL operation complete.
>>
>>select token, count(*) from
+>UDF(timeseries(TABLE(select text_data from doc_table), ' ')) XO(token)
+>group by token order by 2,1;

TOKEN                                     (EXPR)              
----------------------------------------  --------------------

This                                                         1
a                                                            1
is                                                           1
sample                                                       1
Hello                                                        2
world!                                                       2

--- 6 row(s) selected.
>>-- should do tokenizing, not timeseries
>>
>>drop table_mapping function timeseries;

--- SQL operation complete.
>>log;
