LUH-OCR-Evaluation-and-Correction
In [1]:
%load_ext autoreload
In [2]:
%autoreload 2
In [3]:
from text2topics import reports
from text2topics import utilities
from text2topics import clean
import re
import os
from os import listdir
from os.path import isfile, join
import collections
In [4]:
%matplotlib inline
In [5]:
wordlist_dir = "/Users/jeriwieringa/Dissertation/drafts/data/word-lists"
wordlists = ["2016-12-07-SDA-last-names.txt",
"2016-12-07-SDA-place-names.txt",
"2016-12-08-SDA-Vocabulary.txt",
"2017-01-03-place-names.txt",
"2017-02-14-Base-Word-List-SCOWL&KJV.txt",
"2017-02-14-Roman-Numerals.txt",
"2017-03-01-Additional-Approved-Words.txt"
]
In [6]:
spelling_dictionary = utilities.create_spelling_dictionary(wordlist_dir, wordlists)
In [7]:
title = "LUH"
In [8]:
base_dir = "/Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/{}/".format(title)
Baseline¶
In [9]:
cycle = 'baseline'
In [10]:
stats = reports.overview_report(join(base_dir, cycle), spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/baseline Average verified rate: 0.9445383705870094 Average of error rates: 0.058906913996627314 Total token count: 5815444
In [11]:
errors_summary = reports.get_errors_summary( stats )
reports.top_errors( errors_summary, 500 )
Out[11]:
[('e', 15258), ('w', 12124), ('m', 9188), ('r', 8859), ('br', 8423), ('g', 7795), ('f', 7653), ('-', 6725), ('d', 6632), ("'", 3635), ('n', 3541), ('od', 3492), ('¥', 3324), ('gc', 3049), ('ñ', 2742), ('k', 2676), ('wm', 2500), ('con-', 2408), ('re-', 2095), ('t', 2061), ('in-', 1720), ('th', 1715), ('tion', 1704), (')', 1363), ('_', 1178), ("canvassers'", 1177), ('be-', 1173), ('ence', 1110), ('pg', 1107), ('%', 1004), ('com-', 951), ('de-', 932), ('bf', 907), ('ment', 899), ('mt', 889), ('confer-', 886), ('co', 876), ('ex-', 843), ('ference', 812), ('ck', 766), ('meet-', 735), ('hm', 728), ('en-', 714), ('mis-', 703), ('sab-', 641), ('ber', 625), ('u', 568), ('(', 526)]
Check Special Characters¶
In [12]:
reports.tokens_with_special_characters(errors_summary)[:50]
Out[12]:
[('¥', 3324), ('ñ', 2742), (')', 1363), ('_', 1178), ('%', 1004), ('(', 526), ('ña', 489), ('*', 426), ('ñthe', 379), ('*two', 366), ('ññ', 247), ('(b)', 242), ('(a)', 241), ('ñselected', 233), ('__', 222), (']', 210), ('ñmrs', 182), ('ñwe', 166), ('(c)', 159), ('(del)', 145), ('/', 138), ('ñto', 138), ('*j', 122), ('ñi', 118), ('(del', 108), ('*c', 94), ('ñat', 88), ('___', 82), ('*e', 81), ('*a', 80), ('(the', 78), ('(d)', 78), ('*mrs', 73), ('ñtwo', 72), ('ñone', 71), ('*h', 68), ('ñan', 63), ('`', 63), ('*w', 63), ('ñby', 61), ('*f', 56), ('+', 55), ('ñvol', 55), ('ã', 54), ('¥the', 53), ('(eng', 53), ('ñin', 52), ('ñfarm', 50), ('ñvolume', 48), ('ñfor', 46)]
Correction 1 -- Normalize Special Characters¶
In [13]:
# %load shared_elements/normalize_characters.py
prev = cycle
cycle = "correction1"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
# Substitute for all other dashes
content = re.sub(r"—-—–‑", r"-", content)
# Substitute formatted apostrophe
content = re.sub(r"\’\’\‘\'\‛\´", r"'", content)
# Replace all special characters with a space (as these tend to occur at the end of lines)
content = re.sub(r"[^a-zA-Z0-9\s,.!?$:;\-&\'\"]", r" ", content)
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
In [14]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction1 Average verified rate: 0.9497736576334066 Average of error rates: 0.05332276559865093 Total token count: 5807132
In [15]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[15]:
[('e', 15492), ('w', 12244), ('m', 9242), ('r', 8951), ('br', 8450), ('g', 7869), ('f', 7789), ('-', 6920), ('d', 6764), ("'", 3734), ('n', 3573), ('od', 3516), ('gc', 3058), ('k', 2713), ('wm', 2525), ('con-', 2414), ('t', 2121), ('re-', 2100), ('in-', 1725), ('th', 1721), ('tion', 1711), ("canvassers'", 1177), ('be-', 1173), ('pg', 1115), ('ence', 1112), ('com-', 952), ('de-', 933), ('co', 915), ('bf', 910), ('ment', 901), ('mt', 893), ('confer-', 886), ('ex-', 845), ('ference', 813), ('ck', 766), ('meet-', 735), ('hm', 731), ('en-', 714), ('mis-', 703), ('sab-', 642), ('ber', 625), ('u', 578), ('pro-', 498), ('peo-', 478), ('ad-', 476), ('ords', 475), ('ple', 474), ("sec'y-treas", 472), ('ers', 461), ('pre-', 459)]
Correction 2 -- Fix Line Endings¶
In [16]:
# %load shared_elements/correct_line_endings.py
prev = cycle
cycle = "correction2"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
content = re.sub(r"(\w+)(\-\s{1,})([a-z]+)", r"\1\3", content)
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
In [17]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction2 Average verified rate: 0.9669711277342059 Average of error rates: 0.03633355817875211 Total token count: 5737132
In [18]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[18]:
[('e', 15489), ('w', 12244), ('m', 9242), ('r', 8949), ('br', 8450), ('g', 7868), ('f', 7778), ('-', 6872), ('d', 6764), ("'", 3734), ('n', 3571), ('od', 3512), ('gc', 3058), ('k', 2712), ('wm', 2525), ('t', 2117), ('th', 1721), ("canvassers'", 1207), ('pg', 1115), ('bf', 910), ('co', 909), ('mt', 893), ('ck', 766), ('hm', 731), ('u', 578), ("sec'y-treas", 472), ('ords', 470), ('drury', 452), ('two-per-cent', 408), ('x', 403), ('suda', 358), ("elders'", 338), ('-gallon', 333), ('kimberlin', 264), ('plake', 241), ("colporteurs'", 238), ('mitzelfelt', 215), ('-gal', 207), ('secretary-treasurer', 204), ("'the", 204), ("soldiers'", 202), ('erald', 201), ('--', 199), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('church-schools', 168), ('pengelly', 166), ('es', 160), ('five-gallon', 158)]
Correction 3 -- Remove extra dashes¶
In [19]:
# %load shared_elements/remove_extra_dashes.py
prev = cycle
cycle = "correction3"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
text = re.sub(r"[0-9,!?$:;&]", " ", content)
tokens = utilities.tokenize_text(text)
replacements = []
for token in tokens:
if token[0] is "-":
replacements.append((token, token[1:]))
elif token[-1] is "-":
replacements.append((token, token[:-1]))
else:
pass
if len(replacements) > 0:
print("{}: {}".format(filename, replacements))
for replacement in replacements:
content = clean.replace_pair(replacement, content)
else:
pass
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
LUH19081104-V01-01-page1.txt: [('-', ''), ('HER-', 'HER')] LUH19081104-V01-01-page3.txt: [('Sab-', 'Sab')] LUH19081104-V01-01-page5.txt: [('-', ''), ('-', ''), ('-s.J.L', 's.J.L')] LUH19081104-V01-01-page6.txt: [('-M', 'M')] LUH19081104-V01-01-page7.txt: [('-Chem', 'Chem'), ('educa-', 'educa'), ('en-', 'en')] LUH19081111-V01-02-page1.txt: [('bright-', 'bright')] LUH19081111-V01-02-page2.txt: [('-', ''), ('-', '')] LUH19081111-V01-02-page3.txt: [('.-', '.'), ('-', '')] LUH19081111-V01-02-page4.txt: [('-', ''), ('-Be', 'Be'), ('fami-', 'fami')] LUH19081111-V01-02-page5.txt: [('-preaches', 'preaches'), ('-', '')] LUH19081111-V01-02-page7.txt: [('Gen-', 'Gen'), ('en-', 'en'), ('thinking-', 'thinking'), ('-', '')] LUH19081119-V01-03-page2.txt: [('WORKERS.-', 'WORKERS.'), ('de-', 'de')] LUH19081119-V01-03-page3.txt: [('-', '')] LUH19081119-V01-03-page5.txt: [('-', ''), ('camp-', 'camp')] LUH19081119-V01-03-page6.txt: [('-"', '"'), ('-.', '.')] LUH19081119-V01-03-page7.txt: [('-work', 'work')] LUH19081119-V01-03-page8.txt: [('-', '')] LUH19081125-V01-04-page1.txt: [('-', '')] LUH19081125-V01-04-page3.txt: [('-slight', 'slight'), ('-', '')] LUH19081125-V01-04-page4.txt: [('-pay', 'pay'), ('-berths.', 'berths.'), ('-my', 'my'), ('teach-', 'teach'), ('-', '')] LUH19081125-V01-04-page5.txt: [('-', ''), ('-', '')] LUH19081125-V01-04-page6.txt: [('-"', '"')] LUH19081125-V01-04-page7.txt: [('--', '-'), ('Ra-', 'Ra')] LUH19081202-V01-05-page1.txt: [('-O', 'O'), ('suc-', 'suc')] LUH19081202-V01-05-page2.txt: [('-God', 'God'), ('-', ''), (".'-", ".'"), ('-', ''), ('e-', 'e'), ('-A', 'A'), ('-Israel.', 'Israel.')] LUH19081202-V01-05-page3.txt: [('-', ''), ('-', '')] LUH19081202-V01-05-page4.txt: [('-', ''), ('-', '')] LUH19081202-V01-05-page5.txt: [('-', '')] LUH19081202-V01-05-page6.txt: [('-But', 'But')] LUH19081202-V01-05-page7.txt: [('mis-', 'mis'), ('-the', 'the'), ('--.', '-.')] LUH19081202-V01-05-page8.txt: [('-whole', 'whole')] LUH19081209-V01-06-page1.txt: [('WRIT-', 'WRIT'), ('them.-', 'them.')] LUH19081209-V01-06-page2.txt: [('-had', 'had')] LUH19081209-V01-06-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19081209-V01-06-page4.txt: [('-are', 'are')] LUH19081209-V01-06-page5.txt: [('Re-', 'Re')] LUH19081209-V01-06-page6.txt: [('-', ''), ('pa-', 'pa')] LUH19081209-V01-06-page7.txt: [('edu-', 'edu'), ('-', '')] LUH19081209-V01-06-page8.txt: [('-', '')] LUH19081216-V01-07-page1.txt: [('-', '')] LUH19081216-V01-07-page3.txt: [('eports.-', 'eports.')] LUH19081216-V01-07-page4.txt: [('-the', 'the'), ('-of', 'of')] LUH19081216-V01-07-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19081216-V01-07-page7.txt: [('-', '')] LUH19081216-V01-07-page8.txt: [('SEV-', 'SEV')] LUH19081223-V01-08-page2.txt: [('-.a', '.a')] LUH19081223-V01-08-page3.txt: [('ScHooL.-', 'ScHooL.'), ('-', '')] LUH19081223-V01-08-page4.txt: [('main-', 'main')] LUH19081223-V01-08-page5.txt: [('-AtK-', 'AtK-'), ('-', ''), ('educa-', 'educa')] LUH19081223-V01-08-page6.txt: [('input-', 'input'), ('M-', 'M'), ('-foreign', 'foreign'), ('-..B.R.', '..B.R.'), ('tongue-', 'tongue'), ('proof-reading-', 'proof-reading')] LUH19081223-V01-08-page7.txt: [('sup-', 'sup'), ('-announce', 'announce'), ('-the', 'the'), ('-', ''), ('--', '-'), ('-.-', '.-'), ('-', ''), ('address--', 'address-'), ('-', ''), ('inde-', 'inde')] LUH19081223-V01-08-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19081230-V01-09-page1.txt: [('-hill', 'hill'), ('-sin.', 'sin.'), ('-the', 'the'), ('-that', 'that'), ('perse-', 'perse')] LUH19081230-V01-09-page3.txt: [('Mes-', 'Mes')] LUH19081230-V01-09-page4.txt: [('everything-', 'everything'), ('something-', 'something'), ('Reports.---', 'Reports.--')] LUH19081230-V01-09-page5.txt: [('-he', 'he'), ('in-', 'in')] LUH19081230-V01-09-page7.txt: [('Van-', 'Van'), ('Van-', 'Van'), ('-', ''), ('-', '')] LUH19081230-V01-09-page8.txt: [('SEV-', 'SEV')] LUH19090106-V01-10-page1.txt: [('not."-', 'not."')] LUH19090106-V01-10-page3.txt: [('-', ''), ('---', '--'), ('LINTON.-', 'LINTON.'), ('re-', 're'), ('X-', 'X')] LUH19090106-V01-10-page5.txt: [('-S', 'S'), ('-', ''), ('-', ''), ("--itK'A", "-itK'A"), ('X-', 'X'), ('-', ''), ('-', ''), ('-XtV', 'XtV')] LUH19090106-V01-10-page6.txt: [('-.', '.'), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090106-V01-10-page7.txt: [('-the', 'the'), ('-', '')] LUH19090106-V01-10-page8.txt: [('OF-', 'OF'), ('SEV-', 'SEV'), ('-', '')] LUH19090113-V01-11-page1.txt: [('deVo-', 'deVo')] LUH19090113-V01-11-page2.txt: [('recita-', 'recita')] LUH19090113-V01-11-page3.txt: [('-', ''), ('-', '')] LUH19090113-V01-11-page4.txt: [('--.', '-.'), ('-', ''), ('xek-', 'xek'), ('-', ''), ('a-', 'a'), ('-', ''), ('-', ''), ('-', ''), ('kind-', 'kind')] LUH19090113-V01-11-page5.txt: [('rZ-', 'rZ'), ('-.Z', '.Z'), ('-', '')] LUH19090113-V01-11-page7.txt: [('-', ''), ('Mc-', 'Mc')] LUH19090113-V01-11-page8.txt: [('SEV-', 'SEV')] LUH19090120-V01-12-page2.txt: [('-', ''), ('ac-', 'ac')] LUH19090120-V01-12-page8.txt: [('Du-', 'Du'), ('-', ''), ('SEV-', 'SEV')] LUH19090127-V01-13-page1.txt: [('-', ''), ('Christ.-', 'Christ.')] LUH19090127-V01-13-page2.txt: [('-', '')] LUH19090127-V01-13-page3.txt: [('-', ''), ('-to', 'to')] LUH19090127-V01-13-page4.txt: [('-', ''), ('-', '')] LUH19090127-V01-13-page5.txt: [('Sa-', 'Sa'), ('-', ''), ('-', ''), ('renew-', 'renew')] LUH19090127-V01-13-page6.txt: [('-', '')] LUH19090127-V01-13-page7.txt: [('-room', 'room')] LUH19090127-V01-13-page8.txt: [('SEV-', 'SEV'), ('pfa-', 'pfa'), ('serv-', 'serv')] LUH19090203-V01-14-page1.txt: [('utter-', 'utter')] LUH19090203-V01-14-page2.txt: [('EXECU-', 'EXECU')] LUH19090203-V01-14-page3.txt: [('breath-', 'breath')] LUH19090203-V01-14-page4.txt: [('-', ''), ('-', '')] LUH19090203-V01-14-page5.txt: [('ar-', 'ar'), ('erect-', 'erect')] LUH19090203-V01-14-page6.txt: [('-', ''), ('acquiesce-', 'acquiesce')] LUH19090203-V01-14-page7.txt: [('Licen-', 'Licen'), ('mem-', 'mem')] LUH19090203-V01-14-page8.txt: [('SEV-', 'SEV'), ('lam-', 'lam'), ('-', ''), ('-', ''), ('-', ''), ('-room', 'room'), ('-', '')] LUH19090210-V01-15-page1.txt: [('-', '')] LUH19090210-V01-15-page2.txt: [('-', ''), ('--', '-'), ('-', '')] LUH19090210-V01-15-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-room', 'room')] LUH19090217-V01-16-page2.txt: [('-', ''), ('-', '')] LUH19090217-V01-16-page3.txt: [('-', ''), ('-', '')] LUH19090217-V01-16-page4.txt: [('eports.----', 'eports.---'), ('-', '')] LUH19090217-V01-16-page5.txt: [('-Ag', 'Ag'), ('-', '')] LUH19090217-V01-16-page7.txt: [('System-', 'System')] LUH19090217-V01-16-page8.txt: [('self-sup-', 'self-sup'), ('SEV-', 'SEV'), ('-room', 'room'), ('-our', 'our'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090224-V01-17-page3.txt: [('Reports.---', 'Reports.--')] LUH19090224-V01-17-page4.txt: [('-', '')] LUH19090224-V01-17-page5.txt: [('-', '')] LUH19090224-V01-17-page7.txt: [('-', ''), ('agi-', 'agi')] LUH19090224-V01-17-page8.txt: [('-', ''), ('concern-', 'concern'), ('SEV-', 'SEV'), ('Present-', 'Present'), ('-', ''), ('-X', 'X'), ('S-', 'S'), ('-S', 'S'), ('C-', 'C'), ("'-", "'"), ('-', ''), ('-', '')] LUH19090303-V01-18-page2.txt: [('-', ''), ('pur-', 'pur')] LUH19090303-V01-18-page3.txt: [('-', ''), ('per-', 'per')] LUH19090303-V01-18-page4.txt: [('Educa-', 'Educa')] LUH19090303-V01-18-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('HER-', 'HER')] LUH19090303-V01-18-page8.txt: [("workers'-", "workers'"), ('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-highly', 'highly')] LUH19090310-V01-19-page1.txt: [('-', '')] LUH19090310-V01-19-page2.txt: [('-', ''), ('Inter-', 'Inter'), ('Pittsburg-', 'Pittsburg')] LUH19090310-V01-19-page3.txt: [('-', '')] LUH19090310-V01-19-page4.txt: [('-', ''), ('-', '')] LUH19090310-V01-19-page5.txt: [('-', '')] LUH19090310-V01-19-page6.txt: [('-', '')] LUH19090310-V01-19-page7.txt: [('-', ''), ('Tri-', 'Tri'), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Rap-', 'Rap')] LUH19090310-V01-19-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19090317-V01-20-page4.txt: [('-', ''), ('Jeru-', 'Jeru')] LUH19090317-V01-20-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19090317-V01-20-page7.txt: [('-', ''), ('FISHER.-', 'FISHER.'), ('WANTED.-', 'WANTED.'), ('-', ''), ('-', ''), ('-', '')] LUH19090317-V01-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-', '')] LUH19090324-V01-21-page5.txt: [('-', ''), ('-', ''), ('ac-', 'ac')] LUH19090324-V01-21-page6.txt: [('Singing-', 'Singing')] LUH19090324-V01-21-page7.txt: [('I-', 'I'), ('tenaper-', 'tenaper')] LUH19090324-V01-21-page8.txt: [('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-March', 'March'), ('ef-', 'ef')] LUH19090331-V01-22-page1.txt: [('unkind-', 'unkind')] LUH19090331-V01-22-page2.txt: [('-from', 'from'), ('glad-', 'glad')] LUH19090331-V01-22-page5.txt: [('-', '')] LUH19090331-V01-22-page7.txt: [('-', '')] LUH19090331-V01-22-page8.txt: [('SEV-', 'SEV')] LUH19090407-V01-23-page1.txt: [('-o', 'o')] LUH19090407-V01-23-page3.txt: [('-', ''), ('-', '')] LUH19090407-V01-23-page4.txt: [('-', ''), ('--g', '-g'), ('-', ''), ("-'", "'"), ('-', ''), ('--c.--c-..', '-c.--c-..'), ('-', ''), ('.-', '.'), ('-.-..', '.-..'), ('--', '-'), ('.-...---', '.-...--'), ('---', '--')] LUH19090407-V01-23-page6.txt: [('-', ''), ('-', ''), ('short-', 'short')] LUH19090407-V01-23-page7.txt: [('-', '')] LUH19090407-V01-23-page8.txt: [('-', ''), ('-', ''), ('SEV-', 'SEV')] LUH19090414-V01-24-page1.txt: [('re-', 're')] LUH19090414-V01-24-page2.txt: [('-', ''), ('neces-', 'neces'), ('as-', 'as')] LUH19090414-V01-24-page4.txt: [('-many', 'many'), ('-and', 'and')] LUH19090414-V01-24-page5.txt: [('-this', 'this')] LUH19090414-V01-24-page6.txt: [('-if', 'if')] LUH19090414-V01-24-page7.txt: [('-', ''), ('-Dahlias', 'Dahlias'), ('-', ''), ('de-', 'de'), ('-', '')] LUH19090414-V01-24-page8.txt: [('SEV-', 'SEV'), ('Twenty-', 'Twenty')] LUH19090421-V01-25-page1.txt: [('-MORRIS', 'MORRIS')] LUH19090421-V01-25-page5.txt: [('interests.-', 'interests.'), ('-rlbcaith', 'rlbcaith')] LUH19090421-V01-25-page7.txt: [('Lake.-', 'Lake.')] LUH19090421-V01-25-page8.txt: [('SEV-', 'SEV'), ('-T', 'T'), ('-', ''), ('-', '')] LUH19090428-V01-26-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19090428-V01-26-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('thou-', 'thou')] LUH19090428-V01-26-page4.txt: [('-', ''), ('-', '')] LUH19090428-V01-26-page7.txt: [('-', '')] LUH19090428-V01-26-page8.txt: [('SEV-', 'SEV'), ('pure--', 'pure-'), ('-', '')] LUH19090505-V01-27-page1.txt: [('the-', 'the')] LUH19090505-V01-27-page3.txt: [('-honor', 'honor'), ('store-', 'store'), ('dissatis--', 'dissatis-')] LUH19090505-V01-27-page4.txt: [('-', '')] LUH19090505-V01-27-page5.txt: [('-come', 'come'), ('-', ''), ('re-', 're'), ('-garded', 'garded'), ('GEN-', 'GEN'), ('-place.', 'place.'), ('-to', 'to')] LUH19090505-V01-27-page6.txt: [('-though', 'though'), ('-leaning', 'leaning'), ('-', ''), ('AORICULT-', 'AORICULT'), ('-very', 'very'), ('in-', 'in'), ('-', ''), ('-ones', 'ones'), ('training-', 'training'), ('-C-""', 'C-""'), ('E"\'...k"-', 'E"\'...k"'), ('EXPERIENCE-', 'EXPERIENCE')] LUH19090505-V01-27-page7.txt: [('coun-', 'coun'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ("-'", "'"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090505-V01-27-page8.txt: [('SEV-', 'SEV')] LUH19090512-V01-28-page2.txt: [('-God', 'God')] LUH19090512-V01-28-page4.txt: [('-', '')] LUH19090512-V01-28-page6.txt: [('child-mind.-', 'child-mind.')] LUH19090512-V01-28-page8.txt: [('SEV-', 'SEV'), ('I-', 'I')] LUH19090519-V01-29-page3.txt: [('-of', 'of'), ('be-', 'be')] LUH19090519-V01-29-page4.txt: [('-are', 'are'), ('-before', 'before'), ('-which', 'which'), ('-', '')] LUH19090519-V01-29-page5.txt: [('-draw', 'draw'), ('A-', 'A'), ('BEECH-', 'BEECH'), ('-', '')] LUH19090519-V01-29-page8.txt: [('SEV-', 'SEV')] LUH19090526-V01-30-page1.txt: [('-', ''), ('circum-', 'circum')] LUH19090526-V01-30-page11.txt: [('-', '')] LUH19090526-V01-30-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19090526-V01-30-page13.txt: [('-', ''), ('--but', '-but')] LUH19090526-V01-30-page14.txt: [('-to', 'to'), ('t-', 't')] LUH19090526-V01-30-page15.txt: [('LIB-', 'LIB'), ('-Workman.', 'Workman.')] LUH19090526-V01-30-page16.txt: [('mem-', 'mem'), ('SEV-', 'SEV'), ('-', '')] LUH19090526-V01-30-page4.txt: [('-', '')] LUH19090526-V01-30-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090526-V01-30-page6.txt: [('-', ''), ('under-', 'under'), ('put-', 'put'), ('-', ''), ('----', '---')] LUH19090526-V01-30-page7.txt: [('-delivering', 'delivering'), ('Wisconsin-I-', 'Wisconsin-I'), ('-', '')] LUH19090526-V01-30-page8.txt: [('Washing-', 'Washing'), ('SEV-', 'SEV'), ('Soo--', 'Soo-'), ('.g.-', '.g.'), ('-', ''), ('-', ''), ('-g.', 'g.'), ('-', '')] LUH19090526-V01-30-page9.txt: [('No.-', 'No.')] LUH19090602-V01-31-page1.txt: [('No.-', 'No.')] LUH19090602-V01-31-page3.txt: [('-', '')] LUH19090602-V01-31-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19090602-V01-31-page5.txt: [('-', '')] LUH19090602-V01-31-page7.txt: [('LIB-', 'LIB')] LUH19090602-V01-31-page8.txt: [('mem-', 'mem'), ('LAK-', 'LAK'), ('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-', '')] LUH19090609-V01-32-page2.txt: [('low-', 'low')] LUH19090609-V01-32-page3.txt: [('-not', 'not'), ('COL-', 'COL')] LUH19090609-V01-32-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('HERALD-', 'HERALD')] LUH19090609-V01-32-page6.txt: [('-------', '------'), ('--zs------', '-zs------'), ('-.', '.'), ('-...sc-..-.', '...sc-..-.'), ('-..-..-c', '..-..-c'), ('-', ''), ('-.', '.'), ('-', ''), ('..-.-', '..-.'), ('-', ''), ('-', ''), ('-.-..', '.-..'), ('.-', '.'), ('.-', '.'), ('-', '')] LUH19090609-V01-32-page7.txt: [('system-', 'system'), ('-', ''), ('-', '')] LUH19090609-V01-32-page8.txt: [('SEV-', 'SEV'), ('All-', 'All'), ('-', '')] LUH19090616-V01-33-page2.txt: [('-', '')] LUH19090616-V01-33-page5.txt: [('-', '')] LUH19090616-V01-33-page7.txt: [('-', '')] LUH19090616-V01-33-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', '')] LUH19090623-V01-34-page1.txt: [('salva-', 'salva')] LUH19090623-V01-34-page2.txt: [('plat-', 'plat')] LUH19090623-V01-34-page3.txt: [('COL-', 'COL'), ('-the', 'the')] LUH19090623-V01-34-page4.txt: [('-', ''), ('provided.-', 'provided.')] LUH19090623-V01-34-page5.txt: [('CONFER-', 'CONFER')] LUH19090623-V01-34-page6.txt: [('con-', 'con'), ('-""', '""'), ('-', '')] LUH19090623-V01-34-page7.txt: [('-', ''), ('Sep-', 'Sep'), ('-', '')] LUH19090623-V01-34-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('sum-', 'sum')] LUH19090630-V01-35-page1.txt: [('be-', 'be')] LUH19090630-V01-35-page2.txt: [('COL-', 'COL')] LUH19090630-V01-35-page5.txt: [('VOLUN-', 'VOLUN')] LUH19090630-V01-35-page7.txt: [('."-', '."'), ('-', '')] LUH19090630-V01-35-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', '')] LUH19090707-V01-36-page1.txt: [('pre-', 'pre')] LUH19090707-V01-36-page2.txt: [('-', ''), ('-Mrs.', 'Mrs.'), ('-', ''), ('-', ''), ('COL-', 'COL')] LUH19090707-V01-36-page3.txt: [('-', '')] LUH19090707-V01-36-page6.txt: [('encour-', 'encour'), ('-at', 'at'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-S-', 'S-'), ('-Itta.', 'Itta.'), ('-atEl', 'atEl'), ('le-', 'le'), ('---------', '--------'), ('.-', '.'), ('tW-', 'tW'), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('e-', 'e')] LUH19090707-V01-36-page7.txt: [('-', '')] LUH19090707-V01-36-page8.txt: [('SEV-', 'SEV'), ('-Aug.', 'Aug.'), ('-', ''), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', '')] LUH19090714-V01-37-page3.txt: [('-', ''), ('Cos-', 'Cos')] LUH19090714-V01-37-page6.txt: [('-', '')] LUH19090714-V01-37-page7.txt: [('-', ''), ('-', '')] LUH19090714-V01-37-page8.txt: [('SEV-', 'SEV'), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-', '')] LUH19090721-V01-38-page2.txt: [('South-', 'South')] LUH19090721-V01-38-page4.txt: [('-', '')] LUH19090721-V01-38-page5.txt: [('-', ''), ('mes-', 'mes')] LUH19090721-V01-38-page6.txt: [('e-', 'e'), ('-', ''), ('-', ''), ('-', '')] LUH19090721-V01-38-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', '')] LUH19090728-V01-39-page1.txt: [('heav-', 'heav')] LUH19090728-V01-39-page3.txt: [('confer-', 'confer')] LUH19090728-V01-39-page4.txt: [('-', '')] LUH19090728-V01-39-page6.txt: [('.-A--', '.-A-'), ('-I', 'I')] LUH19090728-V01-39-page7.txt: [('-', ''), ('-', '')] LUH19090728-V01-39-page8.txt: [('Oak-', 'Oak'), ('SEV-', 'SEV'), ('-Aug.', 'Aug.'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', '')] LUH19090804-V01-40-page1.txt: [('misrep-', 'misrep')] LUH19090804-V01-40-page4.txt: [('-', ''), ('-', ''), ('K-', 'K')] LUH19090804-V01-40-page6.txt: [('------c', '-----c'), ('beginning-', 'beginning'), ('--t', '-t'), ('-', '')] LUH19090804-V01-40-page8.txt: [('-', ''), ('-', ''), ('ac-', 'ac'), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('deeds-', 'deeds'), ('-Aug.', 'Aug.'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('--BobLvi', '-BobLvi')] LUH19090811-V01-41-page1.txt: [('hen-', 'hen')] LUH19090811-V01-41-page3.txt: [('-', '')] LUH19090811-V01-41-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090811-V01-41-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('K-', 'K'), ('-', ''), ('-the', 'the')] LUH19090811-V01-41-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('week-', 'week'), ('-kitchen', 'kitchen')] LUH19090818-V01-42-page4.txt: [('-It', 'It')] LUH19090818-V01-42-page5.txt: [('New-', 'New'), ('-', ''), ('-', ''), ('-StteltXelfge', 'StteltXelfge'), ('-', ''), ('-', ''), ('Itc-', 'Itc'), ('exist-', 'exist')] LUH19090818-V01-42-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090818-V01-42-page7.txt: [('To-', 'To'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090818-V01-42-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-.', '.'), ('con-', 'con')] LUH19090825-V01-43-page1.txt: [('-home', 'home')] LUH19090825-V01-43-page4.txt: [('-poor', 'poor'), ('-strength', 'strength')] LUH19090825-V01-43-page5.txt: [('-different', 'different'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('applica-', 'applica'), ('-', '')] LUH19090825-V01-43-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090825-V01-43-page7.txt: [('-te', 'te')] LUH19090825-V01-43-page8.txt: [('.SEV-', '.SEV'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-', ''), ('-Oct.', 'Oct.')] LUH19090901-V01-44-page4.txt: [('dead.-', 'dead.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090901-V01-44-page5.txt: [('reach-', 'reach'), ('-', '')] LUH19090901-V01-44-page6.txt: [('-', '')] LUH19090901-V01-44-page7.txt: [('.-', '.'), ('--', '-'), ('K-', 'K'), ('-.', '.'), ('-S-', 'S-'), ('inter-', 'inter'), ('impor-', 'impor'), ('.-', '.'), ('--....', '-....'), ("-.-..'", ".-..'"), ('LI"--', 'LI"-'), ('.---', '.--'), ('-', ''), ('.."--', '.."-'), ('r--', 'r-'), ('c-', 'c'), ('-.L', '.L'), ('-', ''), ('-"-.-..', '"-.-..'), ('-', ''), ('.--', '.-'), ('-..--', '..--'), ('.---', '.--'), ('-', ''), ("---'", "--'"), ('-t', 't'), ('--z', '-z'), ('-', ''), ('-', ''), ('-', ''), ("-'.-.", "'.-."), ('.-.-', '.-.'), ('----', '---'), ('.-', '.'), ('-', ''), ('--', '-'), ('.-.-', '.-.'), ('---', '--'), ('.-', '.'), ('-', ''), ('-.', '.'), ('-', ''), (".'-", ".'")] LUH19090901-V01-44-page8.txt: [('SEV-', 'SEV'), ('-Sept.', 'Sept.'), ('-', ''), ('-', ''), ('-Oct.', 'Oct.'), ('-', ''), ('-', ''), ('-', '')] LUH19090908-V01-45-page2.txt: [('-', ''), ('-are', 'are'), ('-', ''), ('-His', 'His'), ('-good', 'good'), ('-before', 'before'), ("-world's", "world's"), ('-', '')] LUH19090908-V01-45-page3.txt: [('senti-', 'senti')] LUH19090908-V01-45-page5.txt: [('-', ''), ('-', '')] LUH19090908-V01-45-page6.txt: [('xe-', 'xe'), ('tg-', 'tg'), ('e---', 'e--'), ('consecra-', 'consecra')] LUH19090908-V01-45-page7.txt: [('-Marie', 'Marie')] LUH19090908-V01-45-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-Oct.', 'Oct.'), ('-', ''), ('-', '')] LUH19090915-V01-46-page1.txt: [('-', ''), ('them-', 'them')] LUH19090915-V01-46-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090915-V01-46-page6.txt: [('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090915-V01-46-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19090915-V01-46-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-Oct.', 'Oct.'), ('-', '')] LUH19090922-V01-47-page3.txt: [('-', '')] LUH19090922-V01-47-page4.txt: [('.-', '.')] LUH19090922-V01-47-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19090922-V01-47-page8.txt: [('SEV-', 'SEV'), ('-Oct.', 'Oct.')] LUH19090929-V01-48-page1.txt: [('labors.-', 'labors.')] LUH19090929-V01-48-page6.txt: [('-and', 'and'), ('-rt', 'rt'), ('t-', 't'), ('-', ''), ('-', '')] LUH19090929-V01-48-page7.txt: [('-', ''), ('be-', 'be')] LUH19090929-V01-48-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19091006-V01-49-page2.txt: [('--', '-'), ('-The', 'The')] LUH19091006-V01-49-page3.txt: [('sow.-', 'sow.')] LUH19091006-V01-49-page4.txt: [('-but', 'but')] LUH19091006-V01-49-page6.txt: [('-', '')] LUH19091006-V01-49-page7.txt: [('-', ''), ('-', '')] LUH19091006-V01-49-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('ar-', 'ar'), ('-', ''), ('in-', 'in')] LUH19091013-V01-50-page5.txt: [('-', ''), ('A-', 'A')] LUH19091013-V01-50-page6.txt: [('-are', 'are'), ('.P-', '.P'), ("''.-", "''."), ('-.', '.'), ('-', '')] LUH19091013-V01-50-page7.txt: [('-orders', 'orders'), ('can-', 'can')] LUH19091013-V01-50-page8.txt: [('-November', 'November'), ('SEV-', 'SEV'), ('-of', 'of')] LUH19091020-V01-51-page1.txt: [('not-', 'not')] LUH19091020-V01-51-page2.txt: [('-', '')] LUH19091020-V01-51-page3.txt: [('con-', 'con')] LUH19091020-V01-51-page4.txt: [('lEOucattOnat-', 'lEOucattOnat'), ('-', '')] LUH19091020-V01-51-page5.txt: [('-', ''), ('Yom-', 'Yom'), ('-L.', 'L.')] LUH19091020-V01-51-page6.txt: [('-Our', 'Our'), ('W.-', 'W.')] LUH19091020-V01-51-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('BLOSSERt-', 'BLOSSERt'), ('-', ''), ('-', ''), ('-.', '.'), ('-', ''), ('-', ''), ("'-'--", "'-'-"), ('.-', '.'), ('-"-.', '"-.'), ('-.-.', '.-.'), ('-', ''), ('-', ''), ('-', '')] LUH19091020-V01-51-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('The-', 'The')] LUH19091027-V01-52-page4.txt: [('our-', 'our')] LUH19091027-V01-52-page5.txt: [('-', ''), ('-S', 'S'), ('-', '')] LUH19091027-V01-52-page7.txt: [('-', '')] LUH19091027-V01-52-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19091103-V01-53-page1.txt: [('-moon', 'moon'), ('-fully', 'fully')] LUH19091103-V01-53-page2.txt: [('-', '')] LUH19091103-V01-53-page3.txt: [('-', ''), ('Q.c-', 'Q.c'), ('-od', 'od'), ('-All', 'All')] LUH19091103-V01-53-page5.txt: [('state-', 'state'), ('Afro-', 'Afro'), ('If-', 'If')] LUH19091103-V01-53-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19091103-V01-53-page8.txt: [("'.-", "'."), ('-', ''), ('SEV-', 'SEV')] LUH19091110-V01-54-page1.txt: [('-', ''), ('-', '')] LUH19091110-V01-54-page2.txt: [('-serious', 'serious')] LUH19091110-V01-54-page3.txt: [('-', ''), ('-.', '.'), ('indi-', 'indi')] LUH19091110-V01-54-page5.txt: [('Blos-', 'Blos'), ('-', ''), ('mission-', 'mission'), ('senti-', 'senti'), ('-the', 'the'), ('canvass-', 'canvass')] LUH19091110-V01-54-page6.txt: [('-', ''), ('al-', 'al'), ('-.-', '.-'), ("-l'", "l'")] LUH19091110-V01-54-page7.txt: [('-Skinner', 'Skinner'), ('-', ''), ('re-', 're')] LUH19091110-V01-54-page8.txt: [('Thanksgiving-', 'Thanksgiving'), ('-', ''), ('-', ''), ('iEV-', 'iEV'), ('-', ''), ('-HERALD', 'HERALD')] LUH19091117-V01-55-page1.txt: [('labor-', 'labor')] LUH19091117-V01-55-page2.txt: [('make-', 'make')] LUH19091117-V01-55-page4.txt: [('-', ''), ('gar-', 'gar')] LUH19091117-V01-55-page6.txt: [('break-', 'break')] LUH19091117-V01-55-page7.txt: [('-', ''), ('-', '')] LUH19091117-V01-55-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-rtiPi', 'rtiPi'), ('SEV-', 'SEV'), ('Christ"-', 'Christ"'), ('-', '')] LUH19091124-V01-56-page3.txt: [('im-', 'im')] LUH19091124-V01-56-page4.txt: [('meet-', 'meet')] LUH19091124-V01-56-page6.txt: [('-', '')] LUH19091124-V01-56-page8.txt: [('SEV-', 'SEV'), ('La-', 'La'), ('-', ''), ('-', ''), ('Chicago.-', 'Chicago.'), ('-', ''), ('-', ''), ('-', ''), ('litera-', 'litera')] LUH19091201-V01-57-page2.txt: [('-carry', 'carry')] LUH19091201-V01-57-page3.txt: [('organ-', 'organ')] LUH19091201-V01-57-page4.txt: [('misunderstand-', 'misunderstand')] LUH19091201-V01-57-page5.txt: [('-', '')] LUH19091201-V01-57-page7.txt: [('G-', 'G')] LUH19091201-V01-57-page8.txt: [('SEV-', 'SEV'), ('-', '')] LUH19091208-V01-58-page2.txt: [('-or', 'or'), ('-', ''), ('-', '')] LUH19091208-V01-58-page3.txt: [('-', ''), ('-these', 'these'), ('-', ''), ('-we', 'we'), ('criti-', 'criti'), ('-', ''), ('un-', 'un')] LUH19091208-V01-58-page5.txt: [('-', ''), ('faithful-', 'faithful')] LUH19091208-V01-58-page6.txt: [('-', ''), ('-place', 'place'), ('-', ''), ('-', ''), ('-', ''), ("-boys'", "boys'"), ('-', ''), ('-cattle.', 'cattle.')] LUH19091208-V01-58-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('cold-', 'cold'), ('-', ''), ('-', '')] LUH19091208-V01-58-page8.txt: [('L.--', 'L.-'), ('A-', 'A'), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19091215-V01-59-page5.txt: [('pro-', 'pro')] LUH19091215-V01-59-page6.txt: [('-', ''), ('-', ''), ('--', '-')] LUH19091215-V01-59-page7.txt: [('-', '')] LUH19091215-V01-59-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19091222-V01-60-page1.txt: [('--just', '-just')] LUH19091222-V01-60-page2.txt: [('independ-', 'independ')] LUH19091222-V01-60-page4.txt: [('im-', 'im')] LUH19091222-V01-60-page5.txt: [('Be-', 'Be'), ('re-', 're')] LUH19091222-V01-60-page6.txt: [('-', ''), ('in-', 'in'), ('-', ''), ('-', ''), ('-', ''), ('G-', 'G'), ('-', ''), ('-', ''), ('-', '')] LUH19091222-V01-60-page7.txt: [('-', ''), ('short-', 'short'), ('over-', 'over'), ('cnurch-', 'cnurch'), ('Spring-', 'Spring'), ('lib-', 'lib'), ('out-', 'out'), ('Tho-', 'Tho'), ('lead-', 'lead')] LUH19091222-V01-60-page8.txt: [('Ingather-', 'Ingather'), ('-', ''), ('SEV-', 'SEV'), ('-', ''), ('Sabbath-', 'Sabbath'), ('-.', '.'), ('-', ''), ('congrega-', 'congrega')] LUH19100105-V02-01-page1.txt: [('acquiesce-', 'acquiesce')] LUH19100105-V02-01-page2.txt: [('--', '-')] LUH19100105-V02-01-page3.txt: [('-today', 'today')] LUH19100105-V02-01-page4.txt: [('-islation', 'islation')] LUH19100105-V02-01-page5.txt: [('-----', '----'), ('-', '')] LUH19100105-V02-01-page6.txt: [('-...-', '...-'), ('-', ''), ('--', '-'), ('-t', 't'), ('-..-..', '..-..'), ('-z', 'z'), ('--', '-'), ('-', ''), ('-..', '..'), ('-.', '.'), ('-.-', '.-'), ('..-..-', '..-..'), ('---', '--'), ('.-', '.'), ('---.-...', '--.-...'), ('t-.-', 't-.'), ('-', ''), ("-'-", "'-"), ('---', '--'), ('...-.-', '...-.'), ('-', ''), ('-p--', 'p--')] LUH19100105-V02-01-page7.txt: [('Moses-', 'Moses'), ('-', ''), ('at-', 'at')] LUH19100105-V02-01-page8.txt: [('-', ''), ('boys-', 'boys'), ('SEV-', 'SEV')] LUH19100112-V02-02-page2.txt: [("'confer-", "'confer")] LUH19100112-V02-02-page5.txt: [('-', ''), ('-.tgetAtK.', '.tgetAtK.'), ('-Srtils"', 'Srtils"'), ('-', ''), ('-', '')] LUH19100112-V02-02-page6.txt: [("MN-''.''-", "MN-''.''"), ('R.-', 'R.'), ('-', ''), ('-r-.Z..--.f', 'r-.Z..--.f'), ('-', ''), ('..-E-', '..-E'), ('-', ''), ('-..', '..'), ('.-.--', '.-.-'), ('-', ''), ('-.e...-..', '.e...-..'), ('---c', '--c'), ('.-', '.'), ('--.-', '-.-'), ('.-.f--', '.-.f-'), ('-', ''), ('-', ''), ('-', ''), ('...-', '...'), ('-', ''), ('-', ''), ('-', ''), ('..-', '..'), ('..---', '..--'), ('-F', 'F'), ('-N', 'N')] LUH19100112-V02-02-page8.txt: [('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-', ''), ('-', '')] LUH19100119-V02-03-page2.txt: [('-', '')] LUH19100119-V02-03-page3.txt: [('-', ''), ('-Mary', 'Mary'), ('Member-', 'Member'), ('-', ''), ('-', '')] LUH19100119-V02-03-page4.txt: [('-the', 'the'), ('-', ''), ('-books.', 'books.'), ('-', '')] LUH19100119-V02-03-page5.txt: [('doinR-', 'doinR'), ('Trum-', 'Trum')] LUH19100119-V02-03-page7.txt: [('-', '')] LUH19100119-V02-03-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-', '')] LUH19100126-V02-04-page4.txt: [('-', '')] LUH19100126-V02-04-page5.txt: [('-', '')] LUH19100126-V02-04-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19100126-V02-04-page7.txt: [('Mc-', 'Mc'), ('Sablaith-', 'Sablaith'), ('-', ''), ('-', ''), ('-', '')] LUH19100126-V02-04-page8.txt: [('twen-', 'twen'), ('SEV-', 'SEV'), ('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-', '')] LUH19100202-V02-05-page4.txt: [('-', ''), ('-the', 'the')] LUH19100202-V02-05-page5.txt: [('-', '')] LUH19100202-V02-05-page6.txt: [('diffi-', 'diffi'), ('-', '')] LUH19100202-V02-05-page8.txt: [('SEV-', 'SEV'), ('-lb.', 'lb.'), ('-', ''), ('-', '')] LUH19100209-V02-06-page1.txt: [('guid-', 'guid'), ('being-', 'being'), ('con-', 'con')] LUH19100209-V02-06-page6.txt: [('--', '-')] LUH19100209-V02-06-page7.txt: [('-', '')] LUH19100209-V02-06-page8.txt: [('SEV-', 'SEV')] LUH19100216-V02-07-page10.txt: [('BARA-', 'BARA'), ('pneu-', 'pneu')] LUH19100216-V02-07-page11.txt: [('-from', 'from')] LUH19100216-V02-07-page13.txt: [('Pro-', 'Pro'), ('enroll-', 'enroll')] LUH19100216-V02-07-page14.txt: [('Catholics-', 'Catholics'), ('-', ''), ('strong-', 'strong')] LUH19100216-V02-07-page15.txt: [('-', ''), ('Wis-', 'Wis'), ('-Campbell', 'Campbell')] LUH19100216-V02-07-page16.txt: [('.-', '.'), ('-cent', 'cent'), ('SEV-', 'SEV'), ('-', ''), ('reg-', 'reg')] LUH19100216-V02-07-page2.txt: [('-dministration', 'dministration')] LUH19100216-V02-07-page3.txt: [('thou-', 'thou')] LUH19100216-V02-07-page4.txt: [('in-', 'in'), ('--', '-')] LUH19100216-V02-07-page5.txt: [('mission-', 'mission')] LUH19100216-V02-07-page6.txt: [('effec-', 'effec')] LUH19100216-V02-07-page7.txt: [('ap-', 'ap')] LUH19100216-V02-07-page9.txt: [('-perhaps', 'perhaps'), ('under-', 'under'), ('-', '')] LUH19100223-V02-08-page1.txt: [('fulfil-', 'fulfil'), ('-.Z', '.Z')] LUH19100223-V02-08-page10.txt: [('-', '')] LUH19100223-V02-08-page13.txt: [('-', ''), ('-', ''), ('----', '---')] LUH19100223-V02-08-page14.txt: [('-o', 'o')] LUH19100223-V02-08-page15.txt: [('-', ''), ('-', ''), ('Wiscon-', 'Wiscon'), ('-tent-master', 'tent-master')] LUH19100223-V02-08-page16.txt: [('-', ''), ('SEV-', 'SEV')] LUH19100223-V02-08-page2.txt: [('-', ''), ('Mc-', 'Mc'), ('-', ''), ('-', '')] LUH19100223-V02-08-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('Aged-', 'Aged'), ('Acct.-', 'Acct.'), ('Meet-', 'Meet'), ('-', '')] LUH19100223-V02-08-page9.txt: [('Ses-', 'Ses'), ('-', '')] LUH19100302-V02-09-page1.txt: [('-', ''), ('Un-', 'Un')] LUH19100302-V02-09-page11.txt: [('-', ''), ('Commit-', 'Commit'), ('Mc-', 'Mc')] LUH19100302-V02-09-page12.txt: [('-', '')] LUH19100302-V02-09-page15.txt: [('-', '')] LUH19100302-V02-09-page16.txt: [('frac-', 'frac'), ('SEV-', 'SEV'), ('-April', 'April'), ('cre-', 'cre')] LUH19100302-V02-09-page3.txt: [('peo-', 'peo')] LUH19100302-V02-09-page4.txt: [('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('Mc-', 'Mc')] LUH19100302-V02-09-page5.txt: [('-this', 'this')] LUH19100302-V02-09-page6.txt: [('Mc-', 'Mc'), ('Han-', 'Han')] LUH19100302-V02-09-page7.txt: [('-only', 'only')] LUH19100302-V02-09-page8.txt: [('-', '')] LUH19100302-V02-09-page9.txt: [('serious-', 'serious')] LUH19100309-V02-10-page1.txt: [('-', '')] LUH19100309-V02-10-page10.txt: [('-', '')] LUH19100309-V02-10-page11.txt: [('-', '')] LUH19100309-V02-10-page12.txt: [('By-', 'By')] LUH19100309-V02-10-page13.txt: [('-', '')] LUH19100309-V02-10-page14.txt: [('-', ''), ('-', ''), ('-', '')] LUH19100309-V02-10-page15.txt: [('-new.', 'new.'), ('-', ''), ('-filled', 'filled')] LUH19100309-V02-10-page16.txt: [('SEV-', 'SEV'), ('-April', 'April')] LUH19100309-V02-10-page2.txt: [('-', ''), ('-', '')] LUH19100309-V02-10-page3.txt: [('disap-', 'disap'), ('Col-', 'Col')] LUH19100309-V02-10-page5.txt: [('-', '')] LUH19100309-V02-10-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('.-', '.')] LUH19100309-V02-10-page7.txt: [('-doing', 'doing')] LUH19100309-V02-10-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100309-V02-10-page9.txt: [('Ot-', 'Ot')] LUH19100316-V02-11-page3.txt: [('-talk', 'talk')] LUH19100316-V02-11-page8.txt: [('HER-', 'HER'), ('-', ''), ('-', ''), ('Em-', 'Em')] LUH19100323-V02-12-page3.txt: [('in-', 'in')] LUH19100323-V02-12-page4.txt: [('materi-', 'materi')] LUH19100323-V02-12-page6.txt: [('-is', 'is')] LUH19100323-V02-12-page7.txt: [('-', ''), ('Can-', 'Can')] LUH19100323-V02-12-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', '')] LUH19100330-V02-13-page1.txt: [('Committee-', 'Committee')] LUH19100330-V02-13-page4.txt: [('-', ''), ('Con-', 'Con'), ('-', '')] LUH19100330-V02-13-page6.txt: [('-general', 'general')] LUH19100330-V02-13-page7.txt: [('say-', 'say')] LUH19100330-V02-13-page8.txt: [('sel-', 'sel'), ('SEV-', 'SEV')] LUH19100406-V02-14-page1.txt: [('-', '')] LUH19100406-V02-14-page2.txt: [('con-', 'con')] LUH19100406-V02-14-page3.txt: [('-', '')] LUH19100406-V02-14-page5.txt: [('----', '---')] LUH19100406-V02-14-page6.txt: [('-', ''), ('-', ''), ('-May', 'May'), ('-May', 'May'), ('-', ''), ('-', ''), ('-', '')] LUH19100406-V02-14-page7.txt: [('-', ''), ('-', '')] LUH19100406-V02-14-page8.txt: [('SEV-', 'SEV'), ('-', '')] LUH19100413-V02-15-page5.txt: [('-', '')] LUH19100413-V02-15-page6.txt: [('-', ''), ('-', ''), ('-May', 'May'), ('-May', 'May'), ('-', ''), ('-', ''), ('-', ''), ('-May', 'May'), ('--', '-')] LUH19100413-V02-15-page7.txt: [('-', ''), ('im-', 'im'), ('-', '')] LUH19100413-V02-15-page8.txt: [('SEV-', 'SEV')] LUH19100420-V02-16-page3.txt: [('ef-', 'ef')] LUH19100420-V02-16-page5.txt: [('Anti-', 'Anti')] LUH19100420-V02-16-page6.txt: [('-', ''), ('.-', '.'), ('-May', 'May'), ('-', '')] LUH19100420-V02-16-page7.txt: [('con-', 'con')] LUH19100420-V02-16-page8.txt: [('-', ''), ('-', ''), ('SEV-', 'SEV'), ('-church-school', 'church-school')] LUH19100427-V02-17-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('life--', 'life-'), ('-', ''), ('-', '')] LUH19100427-V02-17-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('wonderfully.-', 'wonderfully.')] LUH19100427-V02-17-page4.txt: [('-May', 'May'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100427-V02-17-page5.txt: [('-', ''), ('PETRE.-', 'PETRE.'), ('-Died', 'Died'), ('-', '')] LUH19100427-V02-17-page7.txt: [('-', ''), ('as-', 'as')] LUH19100427-V02-17-page8.txt: [('Readings"-', 'Readings"'), ('SEV-', 'SEV')] LUH19100504-V02-18-page1.txt: [('-must', 'must')] LUH19100504-V02-18-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100504-V02-18-page3.txt: [('-', ''), ('further-', 'further'), ('-', '')] LUH19100504-V02-18-page4.txt: [('dollars.-', 'dollars.'), ('-', '')] LUH19100504-V02-18-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-----------------------P', '----------------------P'), ('-', ''), ('---', '--')] LUH19100504-V02-18-page6.txt: [('recent-', 'recent')] LUH19100504-V02-18-page7.txt: [('-', ''), ('Confer-', 'Confer')] LUH19100504-V02-18-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19100511-V02-19-page1.txt: [('-', '')] LUH19100511-V02-19-page2.txt: [('-however', 'however')] LUH19100511-V02-19-page3.txt: [('papers-', 'papers')] LUH19100511-V02-19-page4.txt: [('-Inventory', 'Inventory'), ('-', ''), ('Property-', 'Property')] LUH19100511-V02-19-page5.txt: [('-checks', 'checks'), ('-', ''), ('-', ''), ('Un-', 'Un'), ('-', ''), ('--', '-'), ('--', '-')] LUH19100511-V02-19-page6.txt: [('-', '')] LUH19100511-V02-19-page7.txt: [('-', ''), ('-', ''), ('-t', 't')] LUH19100511-V02-19-page8.txt: [('SEV-', 'SEV'), ('Mc-', 'Mc'), ('Water-', 'Water'), ('-', '')] LUH19100518-V02-20-page1.txt: [('in-', 'in'), ('-"o\'', '"o\'')] LUH19100518-V02-20-page2.txt: [('MILWAUKEE.-', 'MILWAUKEE.')] LUH19100518-V02-20-page3.txt: [('RAPSON.-', 'RAPSON.'), ('-we', 'we'), ("-God's", "God's"), ("-'", "'"), ('-', ''), ('--', '-'), ('T.-', 'T.'), ('-', '')] LUH19100518-V02-20-page4.txt: [('-I', 'I'), ('-', '')] LUH19100518-V02-20-page5.txt: [('-', ''), ('-', ''), ('exper-', 'exper'), ('--', '-')] LUH19100518-V02-20-page6.txt: [('Pres-', 'Pres'), ('-Reuben', 'Reuben'), ('-Mary', 'Mary'), ('-Alfred', 'Alfred'), ('SMITH.-', 'SMITH.'), ('-Malissa', 'Malissa'), ('-Sister', 'Sister')] LUH19100518-V02-20-page8.txt: [('--"This', '-"This'), ('SEV-', 'SEV'), ('-', ''), ('Sanitarium-', 'Sanitarium')] LUH19100525-V02-21-page3.txt: [('-', ''), ('per-', 'per'), ('Mas-', 'Mas'), ('-', ''), ('in-', 'in')] LUH19100525-V02-21-page5.txt: [('-Indiana', 'Indiana'), ('Sabbath-', 'Sabbath'), ('---', '--')] LUH19100525-V02-21-page6.txt: [('-', ''), ('-for', 'for'), ('-', '')] LUH19100525-V02-21-page7.txt: [('-', '')] LUH19100525-V02-21-page8.txt: [('mis-', 'mis'), ('SEV-', 'SEV'), ('-', ''), ('-', ''), ('Sanitarium-', 'Sanitarium')] LUH19100601-V02-22-page2.txt: [('-oak', 'oak')] LUH19100601-V02-22-page4.txt: [('-------', '------')] LUH19100601-V02-22-page6.txt: [('-use.', 'use.'), ('--', '-')] LUH19100601-V02-22-page7.txt: [('-cent', 'cent')] LUH19100601-V02-22-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('Sanitarium-', 'Sanitarium')] LUH19100608-V02-23-page1.txt: [('Noon-', 'Noon')] LUH19100608-V02-23-page4.txt: [('-', '')] LUH19100608-V02-23-page6.txt: [('-', ''), ('-', '')] LUH19100608-V02-23-page7.txt: [('-', ''), ('-', ''), ('La-', 'La')] LUH19100608-V02-23-page8.txt: [('-the', 'the'), ('SEV-', 'SEV'), ('Sanitarium-', 'Sanitarium')] LUH19100615-V02-24-page2.txt: [('imagi-', 'imagi')] LUH19100615-V02-24-page4.txt: [('-', '')] LUH19100615-V02-24-page5.txt: [('-', '')] LUH19100615-V02-24-page6.txt: [('--', '-'), ('Un-', 'Un')] LUH19100615-V02-24-page7.txt: [('-', '')] LUH19100615-V02-24-page8.txt: [('SEV-', 'SEV')] LUH19100622-V02-25-page1.txt: [('Rela-', 'Rela')] LUH19100622-V02-25-page2.txt: [('-', '')] LUH19100622-V02-25-page4.txt: [('-', '')] LUH19100622-V02-25-page5.txt: [('-', '')] LUH19100622-V02-25-page6.txt: [('-P.', 'P.'), ('..--', '..-')] LUH19100622-V02-25-page7.txt: [('Mc-', 'Mc'), ('-', '')] LUH19100622-V02-25-page8.txt: [('SEV-', 'SEV'), ('-', '')] LUH19100629-V02-26-page1.txt: [('pos-', 'pos')] LUH19100629-V02-26-page10.txt: [('hun-', 'hun'), ('-', '')] LUH19100629-V02-26-page11.txt: [('-', ''), ('-', ''), ('sev-', 'sev')] LUH19100629-V02-26-page12.txt: [('SEV-', 'SEV'), ('-', '')] LUH19100629-V02-26-page2.txt: [('-', ''), ('-', '')] LUH19100629-V02-26-page3.txt: [('-Angel', 'Angel'), ('-', '')] LUH19100629-V02-26-page4.txt: [('be-', 'be')] LUH19100629-V02-26-page5.txt: [('-', ''), ('under-', 'under')] LUH19100629-V02-26-page6.txt: [('-', '')] LUH19100629-V02-26-page7.txt: [('-', ''), ('-', '')] LUH19100629-V02-26-page8.txt: [('-', ''), ('Lew-', 'Lew')] LUH19100629-V02-26-page9.txt: [('---H.', '--H.'), ('---', '--'), ('.-', '.'), ('-', '')] LUH19100706-V02-27-page1.txt: [('-for', 'for')] LUH19100706-V02-27-page10.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', '')] LUH19100706-V02-27-page2.txt: [('La-', 'La')] LUH19100706-V02-27-page4.txt: [('Thurs-', 'Thurs'), ('at-', 'at')] LUH19100706-V02-27-page8.txt: [('-', ''), ('-the', 'the'), ('Sab-', 'Sab')] LUH19100706-V02-27-page9.txt: [('-', '')] LUH19100713-V02-28-page1.txt: [('-', '')] LUH19100713-V02-28-page2.txt: [('-', '')] LUH19100713-V02-28-page3.txt: [('sub-', 'sub'), ('-', ''), ('-', '')] LUH19100713-V02-28-page4.txt: [('-', ''), ('-By', 'By')] LUH19100713-V02-28-page5.txt: [('-', ''), ('-', '')] LUH19100713-V02-28-page6.txt: [('Du-', 'Du'), ('ex-', 'ex')] LUH19100713-V02-28-page7.txt: [('-', '')] LUH19100713-V02-28-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-', ''), ('Graber-', 'Graber')] LUH19100720-V02-29-page1.txt: [('-', ''), ('fam-', 'fam')] LUH19100720-V02-29-page10.txt: [('Mc-', 'Mc')] LUH19100720-V02-29-page11.txt: [('-', ''), ('HER-', 'HER')] LUH19100720-V02-29-page12.txt: [('SEV-', 'SEV'), ('-', ''), ('-', '')] LUH19100720-V02-29-page3.txt: [('-', ''), ('-', '')] LUH19100720-V02-29-page4.txt: [('Doug-', 'Doug'), ('-notably', 'notably'), ('-they', 'they'), ('-', '')] LUH19100720-V02-29-page5.txt: [('camp-', 'camp')] LUH19100720-V02-29-page6.txt: [('house-to-', 'house-to'), ('-', '')] LUH19100720-V02-29-page7.txt: [('-', ''), ('-of', 'of')] LUH19100720-V02-29-page8.txt: [('---', '--'), ('--', '-')] LUH19100720-V02-29-page9.txt: [('institu-', 'institu'), ('De-', 'De'), ('-', '')] LUH19100727-V02-30-page1.txt: [('-', ''), ('-', '')] LUH19100727-V02-30-page3.txt: [('-', '')] LUH19100727-V02-30-page5.txt: [('-----', '----'), ('--', '-'), ('-', ''), ('----', '---'), ('-', '')] LUH19100727-V02-30-page6.txt: [('-', '')] LUH19100727-V02-30-page7.txt: [('-', '')] LUH19100727-V02-30-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19100803-V02-31-page1.txt: [('-workers', 'workers')] LUH19100803-V02-31-page2.txt: [('-', ''), ('Sun-', 'Sun')] LUH19100803-V02-31-page4.txt: [('-', ''), ('-', '')] LUH19100803-V02-31-page5.txt: [('-', ''), ('-Wary', 'Wary'), ('--', '-'), ('-', ''), ('-', ''), ('--', '-')] LUH19100803-V02-31-page7.txt: [('Han-', 'Han'), ('-', ''), ('Wash-', 'Wash'), ('-', '')] LUH19100803-V02-31-page8.txt: [('SEV-', 'SEV'), ('Confer-', 'Confer'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100810-V02-32-page10.txt: [('-unless', 'unless'), ('-so', 'so'), ('Harrison-', 'Harrison'), ('-be', 'be'), ('-', ''), ('-', '')] LUH19100810-V02-32-page11.txt: [('-', ''), ('-C.', 'C.'), ('Self-', 'Self'), ('-', '')] LUH19100810-V02-32-page12.txt: [('-', ''), ('SEV-', 'SEV'), ('Confer-', 'Confer'), ('-', ''), ('-', ''), ('-', '')] LUH19100810-V02-32-page4.txt: [('-the', 'the'), ('-', '')] LUH19100810-V02-32-page5.txt: [('-the', 'the'), ('-work', 'work'), ('be-', 'be'), ('-', ''), ('Michigan-', 'Michigan'), ('Menominee-', 'Menominee'), ('-', '')] LUH19100810-V02-32-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19100810-V02-32-page7.txt: [('-', ''), ('---', '--'), ('-', ''), ('.-', '.'), ('-', '')] LUH19100810-V02-32-page8.txt: [('-for', 'for'), (".'-", ".'"), ('-night', 'night'), ('-Elder', 'Elder'), ('-', ''), ('-Mr.', 'Mr.'), ('-means', 'means'), ('Musca-', 'Musca'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100810-V02-32-page9.txt: [('-sold', 'sold'), ('-be', 'be'), ('-before', 'before'), ('-their', 'their'), ('-Walworth', 'Walworth'), ('-', ''), ('-for', 'for'), ('-baptism.', 'baptism.'), ('-', ''), ('-enjoyed', 'enjoyed'), ('--Myrtle', '-Myrtle'), ('.-', '.'), ('-', ''), ('-', ''), ('meeting-', 'meeting'), ('-they', 'they'), ('-', '')] LUH19100817-V02-33-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100817-V02-33-page2.txt: [('-J.', 'J.')] LUH19100817-V02-33-page3.txt: [('philos-', 'philos'), ('-cent', 'cent'), ('-', '')] LUH19100817-V02-33-page4.txt: [('-', ''), ('-', ''), ('in-', 'in')] LUH19100817-V02-33-page7.txt: [('-', ''), ('denomina-', 'denomina'), ('-', '')] LUH19100817-V02-33-page8.txt: [('-', ''), ('SEV-', 'SEV')] LUH19100824-V02-34-page1.txt: [('re-', 're')] LUH19100824-V02-34-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100824-V02-34-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('--', '-')] LUH19100824-V02-34-page7.txt: [('-McLean', 'McLean')] LUH19100824-V02-34-page8.txt: [('-', ''), ('SEV-', 'SEV'), ('-J.', 'J.')] LUH19100831-V02-35-page1.txt: [('-then', 'then')] LUH19100831-V02-35-page2.txt: [('-', ''), ('move-', 'move')] LUH19100831-V02-35-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100831-V02-35-page4.txt: [('-', '')] LUH19100831-V02-35-page5.txt: [('-', ''), ('.-', '.'), ('-', ''), ('--', '-')] LUH19100831-V02-35-page6.txt: [('-', '')] LUH19100831-V02-35-page8.txt: [('SEV-', 'SEV'), ('-that', 'that')] LUH19100907-V02-36-page2.txt: [('Master-', 'Master')] LUH19100907-V02-36-page3.txt: [('ad-', 'ad'), ('-', ''), ('-', ''), ('-', '')] LUH19100907-V02-36-page8.txt: [('SEV-', 'SEV')] LUH19100914-V02-37-page3.txt: [('-the', 'the')] LUH19100914-V02-37-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100914-V02-37-page5.txt: [("-Daniel's", "Daniel's")] LUH19100914-V02-37-page6.txt: [('-', '')] LUH19100914-V02-37-page7.txt: [('-', ''), ('seventy-', 'seventy')] LUH19100914-V02-37-page8.txt: [('SEV-', 'SEV'), ('-lb', 'lb'), ('Sanitarium-', 'Sanitarium')] LUH19100921-V02-38-page1.txt: [('-', '')] LUH19100921-V02-38-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19100921-V02-38-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-L', 'L'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19100921-V02-38-page4.txt: [('-', ''), ('La-', 'La')] LUH19100921-V02-38-page5.txt: [('camp-', 'camp')] LUH19100921-V02-38-page8.txt: [('SEV-', 'SEV'), ('-lb', 'lb'), ('Sanitarium-', 'Sanitarium')] LUH19100928-V02-39-page2.txt: [('no-', 'no')] LUH19100928-V02-39-page3.txt: [('-', ''), ('-', '')] LUH19100928-V02-39-page4.txt: [('Total-', 'Total'), ('Total-', 'Total'), ('Total-', 'Total'), ('Total-', 'Total'), ('Total-', 'Total'), ('Total-', 'Total'), ('Total-', 'Total')] LUH19100928-V02-39-page5.txt: [('-', '')] LUH19100928-V02-39-page6.txt: [('-', '')] LUH19100928-V02-39-page7.txt: [('Mc-', 'Mc'), ('-cent', 'cent'), ('-cent', 'cent')] LUH19100928-V02-39-page8.txt: [('SEV-', 'SEV')] LUH19101005-V02-40-page1.txt: [('help-', 'help')] LUH19101005-V02-40-page12.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101005-V02-40-page2.txt: [('Le-', 'Le')] LUH19101005-V02-40-page4.txt: [('-', ''), ('-', '')] LUH19101005-V02-40-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Two-', 'Two'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101005-V02-40-page6.txt: [('-', ''), ('-', '')] LUH19101005-V02-40-page7.txt: [('be-', 'be')] LUH19101005-V02-40-page8.txt: [('CONFER-', 'CONFER')] LUH19101005-V02-40-page9.txt: [('-', '')] LUH19101012-V02-41-page11.txt: [('-', '')] LUH19101012-V02-41-page12.txt: [('SEV-', 'SEV'), ('SUPERINTEN-', 'SUPERINTEN')] LUH19101012-V02-41-page3.txt: [('-ne', 'ne'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101012-V02-41-page4.txt: [('Sunday-', 'Sunday')] LUH19101012-V02-41-page5.txt: [('ALEDO-', 'ALEDO')] LUH19101012-V02-41-page7.txt: [('-', ''), ('-', ''), ('-now', 'now'), ('----', '---')] LUH19101012-V02-41-page8.txt: [('-', '')] LUH19101019-V02-42-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101019-V02-42-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101019-V02-42-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('-', ''), ('-', ''), ('-', '')] LUH19101019-V02-42-page6.txt: [('-', '')] LUH19101019-V02-42-page7.txt: [('study-', 'study')] LUH19101019-V02-42-page8.txt: [('bene-', 'bene'), ('SEV-', 'SEV'), ('-', '')] LUH19101026-V02-43-page1.txt: [('Vol-', 'Vol'), ('-', '')] LUH19101026-V02-43-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('finan-', 'finan')] LUH19101026-V02-43-page5.txt: [('McRey-', 'McRey')] LUH19101026-V02-43-page6.txt: [('-', ''), ('-', '')] LUH19101026-V02-43-page7.txt: [('-cent', 'cent'), ('-', ''), ('-', ''), ('-', '')] LUH19101026-V02-43-page8.txt: [('Du-', 'Du'), ('SEV-', 'SEV'), ('-', '')] LUH19101102-V02-44-page1.txt: [('Tri-', 'Tri')] LUH19101102-V02-44-page2.txt: [('indi-', 'indi')] LUH19101102-V02-44-page3.txt: [('-', '')] LUH19101102-V02-44-page4.txt: [('Ten-Cent-a-', 'Ten-Cent-a')] LUH19101102-V02-44-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101102-V02-44-page6.txt: [('-', ''), ('-', '')] LUH19101102-V02-44-page7.txt: [('-by', 'by')] LUH19101102-V02-44-page8.txt: [('SEV-', 'SEV'), ('Wa-', 'Wa')] LUH19101109-V02-45-page1.txt: [('Sabbath-', 'Sabbath')] LUH19101109-V02-45-page4.txt: [('-cent', 'cent'), ('-Brother', 'Brother'), ('Du-', 'Du')] LUH19101109-V02-45-page5.txt: [('-', ''), ('applaud-', 'applaud'), ('-', '')] LUH19101109-V02-45-page6.txt: [('-', ''), ('HER-', 'HER'), ('-', '')] LUH19101109-V02-45-page8.txt: [('SEV-', 'SEV'), ('Ky-', 'Ky')] LUH19101116-V02-46-page3.txt: [('re-', 're'), ('-', ''), ('-', ''), ('-', '')] LUH19101116-V02-46-page6.txt: [('-', ''), ('Octo-', 'Octo')] LUH19101116-V02-46-page7.txt: [('-', '')] LUH19101116-V02-46-page8.txt: [('SEV-', 'SEV'), ('mem-', 'mem'), ('--', '-'), ('-', ''), ('calen-', 'calen'), ('-', ''), ('-', ''), ('--', '-')] LUH19101123-V02-47-page1.txt: [('"-', '"')] LUH19101123-V02-47-page3.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc'), ('inter-', 'inter')] LUH19101123-V02-47-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101123-V02-47-page5.txt: [('-', ''), ('Afro-', 'Afro')] LUH19101123-V02-47-page6.txt: [('-', '')] LUH19101123-V02-47-page7.txt: [('-', '')] LUH19101123-V02-47-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', '')] LUH19101130-V02-48-page1.txt: [('peo-', 'peo')] LUH19101130-V02-48-page4.txt: [('con-', 'con'), ('-', ''), ('-', '')] LUH19101130-V02-48-page5.txt: [('---', '--')] LUH19101130-V02-48-page6.txt: [('Butka-', 'Butka'), ('-', ''), ('-', ''), ('-', '')] LUH19101130-V02-48-page7.txt: [('"Sabbath-', '"Sabbath'), ('-', ''), ('parsnips-', 'parsnips'), ('-', ''), ('-', '')] LUH19101130-V02-48-page8.txt: [('SEV-', 'SEV'), ('-', ''), ('-', ''), ('cock-', 'cock')] LUH19101207-V02-49-page10.txt: [('-know', 'know')] LUH19101207-V02-49-page12.txt: [('-', ''), ('Poor-', 'Poor')] LUH19101207-V02-49-page2.txt: [('con-', 'con')] LUH19101207-V02-49-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('--', '-')] LUH19101207-V02-49-page5.txt: [('-', ''), ('do-', 'do')] LUH19101207-V02-49-page6.txt: [('-', '')] LUH19101207-V02-49-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101207-V02-49-page8.txt: [('-experiences.', 'experiences.'), ('SEV-', 'SEV')] LUH19101207-V02-49-page9.txt: [('-', '')] LUH19101214-V02-50-page1.txt: [('con-', 'con')] LUH19101214-V02-50-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101214-V02-50-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19101214-V02-50-page5.txt: [('-', ''), ('--', '-'), ('---', '--'), ('Seventh-', 'Seventh'), ('exception-', 'exception'), ('-', '')] LUH19101214-V02-50-page8.txt: [('SEV-', 'SEV')] LUH19101221-V02-51-page1.txt: [('spiritu-', 'spiritu')] LUH19101221-V02-51-page10.txt: [('-', '')] LUH19101221-V02-51-page11.txt: [('-page', 'page')] LUH19101221-V02-51-page12.txt: [('SEV-', 'SEV'), ('-', ''), ('-', '')] LUH19101221-V02-51-page2.txt: [('-', '')] LUH19101221-V02-51-page3.txt: [('Training-', 'Training')] LUH19101221-V02-51-page4.txt: [('-', ''), ('Step-', 'Step')] LUH19101221-V02-51-page5.txt: [('Church-', 'Church'), ('work-', 'work')] LUH19101221-V02-51-page7.txt: [('--', '-'), ('-', ''), ('-', ''), ('-', '')] LUH19101221-V02-51-page8.txt: [('-', ''), ('Reve-', 'Reve')] LUH19101221-V02-51-page9.txt: [('-', '')] LUH19110104-V03-01-page1.txt: [('conse-', 'conse'), ('-', ''), ('-', '')] LUH19110104-V03-01-page2.txt: [('-in', 'in'), ('-Writer', 'Writer')] LUH19110104-V03-01-page3.txt: [('-', ''), ('-', '')] LUH19110104-V03-01-page4.txt: [('-', '')] LUH19110104-V03-01-page5.txt: [('-', ''), ('-', '')] LUH19110104-V03-01-page6.txt: [('reg-', 'reg')] LUH19110104-V03-01-page7.txt: [('ex-', 'ex')] LUH19110104-V03-01-page8.txt: [('-', ''), ('-', '')] LUH19110111-V03-02-page4.txt: [('-', ''), ('-', '')] LUH19110111-V03-02-page6.txt: [('-', ''), ('-', '')] LUH19110111-V03-02-page7.txt: [('-', ''), ('-was', 'was'), ('-', '')] LUH19110111-V03-02-page8.txt: [('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-ears', 'ears'), ('-', '')] LUH19110118-V03-03-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110118-V03-03-page2.txt: [('Afro-', 'Afro'), ('-', '')] LUH19110118-V03-03-page5.txt: [('-', ''), ('-', '')] LUH19110118-V03-03-page6.txt: [('-', ''), ('-', ''), ('Sabbath-', 'Sabbath')] LUH19110118-V03-03-page7.txt: [('-', '')] LUH19110118-V03-03-page8.txt: [('-', ''), ('-', '')] LUH19110125-V03-04-page1.txt: [('-', '')] LUH19110125-V03-04-page3.txt: [('-', '')] LUH19110125-V03-04-page7.txt: [('-', '')] LUH19110125-V03-04-page8.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon')] LUH19110201-V03-05-page1.txt: [('-', '')] LUH19110201-V03-05-page3.txt: [('-', ''), ('-', ''), ('speak-', 'speak'), ('-', '')] LUH19110201-V03-05-page5.txt: [('-', ''), ('-way', 'way'), ('-', '')] LUH19110201-V03-05-page8.txt: [('-', ''), ('-', '')] LUH19110208-V03-06-page2.txt: [('-', '')] LUH19110208-V03-06-page4.txt: [('-', '')] LUH19110208-V03-06-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110208-V03-06-page6.txt: [('-', ''), ('neces-', 'neces')] LUH19110208-V03-06-page8.txt: [('-', ''), ('-', '')] LUH19110215-V03-07-page2.txt: [('-', '')] LUH19110215-V03-07-page8.txt: [('year-', 'year'), ('-', '')] LUH19110222-V03-08-page12.txt: [('-', ''), ('Life."-', 'Life."'), ('SALE.-', 'SALE.')] LUH19110222-V03-08-page6.txt: [('-', '')] LUH19110222-V03-08-page8.txt: [('Healing"-', 'Healing"')] LUH19110222-V03-08-page9.txt: [('-', ''), ('-', '')] LUH19110301-V03-09-page1.txt: [('-people.', 'people.'), ('natur-', 'natur')] LUH19110301-V03-09-page2.txt: [('-', '')] LUH19110301-V03-09-page3.txt: [('HER-', 'HER')] LUH19110301-V03-09-page4.txt: [('-', ''), ('bless-', 'bless')] LUH19110301-V03-09-page5.txt: [('-', '')] LUH19110301-V03-09-page6.txt: [('-', ''), ('-', '')] LUH19110301-V03-09-page8.txt: [('-', '')] LUH19110308-V03-10-page1.txt: [('interested-', 'interested'), ('-', ''), ('--r', '-r'), ('Tom-ro..-', 'Tom-ro..'), ("-'", "'"), ('-the', 'the'), ('-', ''), ('hospi-', 'hospi'), ('-', ''), ('Sabbath-school-', 'Sabbath-school'), ('not-', 'not'), ('-', ''), ('-.', '.'), ('-.', '.'), ('-', ''), ('-t', 't'), ('tre-', 'tre')] LUH19110308-V03-10-page3.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', '')] LUH19110308-V03-10-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110308-V03-10-page7.txt: [('-', ''), ('--', '-')] LUH19110308-V03-10-page8.txt: [('-gallon', 'gallon'), ('-', ''), ('gath-', 'gath')] LUH19110315-V03-11-page2.txt: [('Bible-', 'Bible')] LUH19110315-V03-11-page5.txt: [('teach-', 'teach'), ('Two-', 'Two')] LUH19110315-V03-11-page7.txt: [('price-', 'price')] LUH19110315-V03-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110322-V03-12-page1.txt: [('Committee-', 'Committee'), ('mis-', 'mis')] LUH19110322-V03-12-page11.txt: [('else-', 'else')] LUH19110322-V03-12-page12.txt: [('co-oper-', 'co-oper')] LUH19110322-V03-12-page14.txt: [('Mc-', 'Mc')] LUH19110322-V03-12-page16.txt: [('-', ''), ('-.', '.'), ('-', '')] LUH19110322-V03-12-page2.txt: [('suc-', 'suc')] LUH19110322-V03-12-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110322-V03-12-page5.txt: [('unani-', 'unani')] LUH19110322-V03-12-page7.txt: [('-', '')] LUH19110322-V03-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in')] LUH19110322-V03-12-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110329-V03-13-page1.txt: [('-', '')] LUH19110329-V03-13-page2.txt: [('-', ''), ('-', '')] LUH19110329-V03-13-page5.txt: [('pa-', 'pa'), ('-', '')] LUH19110329-V03-13-page7.txt: [('interest-', 'interest')] LUH19110329-V03-13-page8.txt: [('-', '')] LUH19110405-V03-14-page2.txt: [('-', '')] LUH19110405-V03-14-page3.txt: [('-', '')] LUH19110405-V03-14-page4.txt: [('se-', 'se'), ('-', ''), ('-', '')] LUH19110405-V03-14-page5.txt: [('mean-', 'mean'), ('inter-', 'inter')] LUH19110405-V03-14-page8.txt: [('-', '')] LUH19110412-V03-15-page1.txt: [('-', '')] LUH19110412-V03-15-page2.txt: [('-', '')] LUH19110412-V03-15-page3.txt: [('Lake....-..-', 'Lake....-..'), ('Individual..-', 'Individual..')] LUH19110412-V03-15-page4.txt: [('-Willaman', 'Willaman'), ('-', '')] LUH19110412-V03-15-page6.txt: [('-year', 'year')] LUH19110412-V03-15-page7.txt: [('-', '')] LUH19110412-V03-15-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110419-V03-16-page1.txt: [('-', '')] LUH19110419-V03-16-page2.txt: [('bless-', 'bless')] LUH19110419-V03-16-page3.txt: [('.-', '.')] LUH19110419-V03-16-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('Paper--', 'Paper-')] LUH19110419-V03-16-page5.txt: [('-', '')] LUH19110419-V03-16-page6.txt: [('-', ''), ('-', ''), ('con-', 'con')] LUH19110419-V03-16-page8.txt: [('-', '')] LUH19110426-V03-17-page3.txt: [('-', '')] LUH19110426-V03-17-page5.txt: [('-', ''), ('-is', 'is')] LUH19110426-V03-17-page7.txt: [('day-', 'day'), ('-', ''), ('--', '-'), ('--', '-')] LUH19110426-V03-17-page8.txt: [('-', ''), ('dis-', 'dis'), ('-', ''), ('-', '')] LUH19110503-V03-18-page1.txt: [('re-', 're')] LUH19110503-V03-18-page2.txt: [('--', '-'), ('--', '-')] LUH19110503-V03-18-page3.txt: [('-', ''), ('im-', 'im')] LUH19110503-V03-18-page4.txt: [('-', '')] LUH19110503-V03-18-page5.txt: [('-', ''), ('-', '')] LUH19110503-V03-18-page6.txt: [('-', ''), ('-tract', 'tract')] LUH19110503-V03-18-page7.txt: [('Mac-', 'Mac'), ('-', ''), ('pro-', 'pro'), ('---', '--'), ('---', '--')] LUH19110503-V03-18-page8.txt: [('canvass-', 'canvass'), ('-', '')] LUH19110510-V03-19-page1.txt: [('ex-', 'ex')] LUH19110510-V03-19-page2.txt: [('-', ''), ('Mc-', 'Mc'), ('Grand-', 'Grand')] LUH19110510-V03-19-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110510-V03-19-page4.txt: [('-', '')] LUH19110510-V03-19-page5.txt: [('-', '')] LUH19110510-V03-19-page7.txt: [('-the', 'the'), ('-help', 'help'), ('-', '')] LUH19110510-V03-19-page8.txt: [('-', ''), ('Prayer.-', 'Prayer.'), ('HATCHING.-', 'HATCHING.'), ('VEGETABLES.-', 'VEGETABLES.')] LUH19110510-V03-19s-page1.txt: [('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('WELLS.-', 'WELLS.'), ('-', ''), ('-', ''), ('-', '')] LUH19110510-V03-19s-page2.txt: [('-', ''), ('-Mrs.', 'Mrs.'), ('ALDEN.-', 'ALDEN.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110510-V03-19s-page3.txt: [('LAKIN.-', 'LAKIN.')] LUH19110510-V03-19s-page4.txt: [('Mohr.-', 'Mohr.'), ('-', ''), ('-', '')] LUH19110517-V03-20-page2.txt: [('-', ''), ('-', '')] LUH19110517-V03-20-page3.txt: [('-', '')] LUH19110517-V03-20-page4.txt: [('-gallon', 'gallon'), ('-Brother', 'Brother'), ('-begin', 'begin')] LUH19110517-V03-20-page5.txt: [('-', '')] LUH19110517-V03-20-page7.txt: [('outpour-', 'outpour'), ('-', '')] LUH19110517-V03-20-page8.txt: [('-', ''), ('sell-', 'sell'), ('-', '')] LUH19110524-V03-21-page1.txt: [('-March', 'March'), ('earnest-', 'earnest')] LUH19110524-V03-21-page2.txt: [('-HERALD', 'HERALD')] LUH19110524-V03-21-page3.txt: [('-', '')] LUH19110524-V03-21-page4.txt: [('-', '')] LUH19110524-V03-21-page5.txt: [('--', '-'), ('-', '')] LUH19110524-V03-21-page6.txt: [('congre-', 'congre')] LUH19110524-V03-21-page7.txt: [('-', ''), ('-', ''), ('---', '--')] LUH19110524-V03-21-page8.txt: [('-', '')] LUH19110531-V03-22-page3.txt: [('-', '')] LUH19110531-V03-22-page4.txt: [('-the', 'the')] LUH19110531-V03-22-page5.txt: [('-', ''), ('-which', 'which'), ('in-', 'in')] LUH19110531-V03-22-page7.txt: [('-my', 'my'), ('Fair-', 'Fair')] LUH19110531-V03-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-quart', 'quart'), ('-quart', 'quart')] LUH19110607-V03-23-page1.txt: [('every-', 'every'), ('-until', 'until')] LUH19110607-V03-23-page3.txt: [('-', ''), ('-green', 'green')] LUH19110607-V03-23-page4.txt: [('-us', 'us'), ('-', '')] LUH19110607-V03-23-page5.txt: [('-', '')] LUH19110607-V03-23-page8.txt: [('-quart', 'quart'), ('-quart', 'quart'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19110614-V03-24-page1.txt: [('-iarmony', 'iarmony'), ('-for', 'for'), ('Danish-', 'Danish')] LUH19110614-V03-24-page3.txt: [('-Clare', 'Clare')] LUH19110614-V03-24-page5.txt: [('-', '')] LUH19110614-V03-24-page7.txt: [('-', ''), ('-', '')] LUH19110614-V03-24-page8.txt: [('-', '')] LUH19110621-V03-25-page2.txt: [('-', ''), ('-the', 'the'), ('-', '')] LUH19110621-V03-25-page3.txt: [('-', '')] LUH19110621-V03-25-page5.txt: [('be-', 'be')] LUH19110621-V03-25-page6.txt: [('-', ''), ('--', '-'), ('al-', 'al')] LUH19110621-V03-25-page7.txt: [('-', ''), ('-gallon', 'gallon')] LUH19110621-V03-25-page8.txt: [('-', ''), ("-'", "'"), ('---', '--')] LUH19110628-V03-26-page3.txt: [('time-', 'time'), ('-', ''), ('-means', 'means'), ('-', '')] LUH19110628-V03-26-page4.txt: [('edu-', 'edu')] LUH19110628-V03-26-page5.txt: [('-gallon', 'gallon'), ('repre-', 'repre')] LUH19110628-V03-26-page6.txt: [('-', '')] LUH19110628-V03-26-page8.txt: [('-', ''), ('-', ''), ('R.-', 'R.'), ('----', '---'), ('-', '')] LUH19110705-V03-27-page3.txt: [('-', '')] LUH19110705-V03-27-page6.txt: [('-', '')] LUH19110705-V03-27-page7.txt: [('-September', 'September'), ('-cent', 'cent'), ('total-', 'total'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19110705-V03-27-page8.txt: [('-', ''), ('en-', 'en'), ('seem-', 'seem'), ('-ducation', 'ducation'), ('--', '-'), ('----', '---'), ('--', '-'), ('-', '')] LUH19110712-V03-28-page2.txt: [('WIG-', 'WIG'), ('-rot', 'rot')] LUH19110712-V03-28-page3.txt: [('mid-', 'mid')] LUH19110712-V03-28-page4.txt: [('-', ''), ('Indi-', 'Indi')] LUH19110712-V03-28-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('hope-', 'hope')] LUH19110712-V03-28-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19110712-V03-28-page8.txt: [('-', '')] LUH19110719-V03-29-page1.txt: [('De-', 'De')] LUH19110719-V03-29-page3.txt: [('-', ''), ('-foot', 'foot'), ('sleeping-', 'sleeping'), ('--', '-')] LUH19110719-V03-29-page4.txt: [('-', '')] LUH19110719-V03-29-page6.txt: [('-', '')] LUH19110719-V03-29-page7.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19110719-V03-29-page8.txt: [('....-', '....')] LUH19110726-V03-30-page3.txt: [('-', ''), ('-on', 'on')] LUH19110726-V03-30-page5.txt: [('-', ''), ('pre-', 'pre')] LUH19110726-V03-30-page6.txt: [('orches-', 'orches')] LUH19110726-V03-30-page7.txt: [('-', ''), ('SALE.-', 'SALE.'), ('STRAWBERRIES.-', 'STRAWBERRIES.')] LUH19110726-V03-30-page8.txt: [('-', ''), ('--', '-')] LUH19110802-V03-31-page2.txt: [('at-', 'at')] LUH19110802-V03-31-page4.txt: [('-the', 'the'), ('meet-', 'meet')] LUH19110802-V03-31-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110802-V03-31-page7.txt: [('asso-', 'asso'), ('Training-', 'Training')] LUH19110802-V03-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110809-V03-32-page10.txt: [('JUDD.-', 'JUDD.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('twen-', 'twen')] LUH19110809-V03-32-page11.txt: [('La-', 'La'), ('Training-', 'Training'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19110809-V03-32-page12.txt: [('-', ''), ('--', '-')] LUH19110809-V03-32-page5.txt: [('--', '-')] LUH19110809-V03-32-page6.txt: [('-', ''), ('-', '')] LUH19110809-V03-32-page8.txt: [('-I', 'I')] LUH19110809-V03-32-page9.txt: [('-', '')] LUH19110816-V03-33-page2.txt: [('-', ''), ('-', '')] LUH19110816-V03-33-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110816-V03-33-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19110816-V03-33-page6.txt: [('-', ''), ('-', '')] LUH19110816-V03-33-page7.txt: [('-gallon', 'gallon'), ('La-', 'La')] LUH19110816-V03-33-page8.txt: [('-', ''), ('-', ''), ('--', '-'), ('-.......', '.......')] LUH19110823-V03-34-page2.txt: [('-', '')] LUH19110823-V03-34-page4.txt: [('-', ''), ('-', '')] LUH19110823-V03-34-page6.txt: [('-', ''), ('-', '')] LUH19110823-V03-34-page7.txt: [('in-', 'in')] LUH19110823-V03-34-page8.txt: [('-', ''), ('--', '-'), ('-', '')] LUH19110830-V03-35-page2.txt: [('-', ''), ('-gallon', 'gallon')] LUH19110830-V03-35-page3.txt: [('-and', 'and')] LUH19110830-V03-35-page5.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc')] LUH19110830-V03-35-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110830-V03-35-page7.txt: [('-', ''), ('-', ''), ('peo-', 'peo'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110830-V03-35-page8.txt: [('-', ''), ('La-', 'La'), ('-', ''), ('-', ''), ('-G.', 'G.')] LUH19110906-V03-36-page3.txt: [('re-', 're')] LUH19110906-V03-36-page4.txt: [('-seemed', 'seemed'), ('-Life', 'Life'), ('Le-', 'Le'), ('-kind', 'kind'), ('mag-', 'mag')] LUH19110906-V03-36-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110906-V03-36-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110906-V03-36-page8.txt: [('-', '')] LUH19110913-V03-37-page2.txt: [('-', '')] LUH19110913-V03-37-page4.txt: [('-rence', 'rence'), ('-Freight', 'Freight')] LUH19110913-V03-37-page7.txt: [('Brother-', 'Brother'), ('---', '--')] LUH19110913-V03-37-page8.txt: [('-lb.', 'lb.'), ('ol-', 'ol'), ('-', ''), ('-', ''), ('-September-October', 'September-October'), ('La-', 'La'), ('.-', '.'), ('--', '-')] LUH19110920-V03-38-page3.txt: [('-June', 'June')] LUH19110920-V03-38-page5.txt: [('-school', 'school'), ('-that', 'that'), ('Property-', 'Property')] LUH19110920-V03-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('pro-', 'pro')] LUH19110920-V03-38-page7.txt: [('-', '')] LUH19110920-V03-38-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110927-V03-39-page1.txt: [('Le-', 'Le')] LUH19110927-V03-39-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110927-V03-39-page3.txt: [('-', '')] LUH19110927-V03-39-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19110927-V03-39-page6.txt: [('-', ''), ('-', ''), ('of-', 'of')] LUH19110927-V03-39-page7.txt: [('-', ''), ('-', '')] LUH19110927-V03-39-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('--', '-'), ('La-', 'La'), ('gentle-', 'gentle'), ('-.', '.')] LUH19111004-V03-40-page1.txt: [('-of', 'of'), ('stom-', 'stom')] LUH19111004-V03-40-page4.txt: [('-', '')] LUH19111004-V03-40-page5.txt: [('-', ''), ('-', '')] LUH19111004-V03-40-page6.txt: [('-', '')] LUH19111004-V03-40-page7.txt: [('Jacob-', 'Jacob')] LUH19111004-V03-40-page8.txt: [('-', ''), ('-gallon', 'gallon')] LUH19111011-V03-41-page1.txt: [('Committee-', 'Committee')] LUH19111011-V03-41-page5.txt: [('preach-', 'preach'), ('-', '')] LUH19111011-V03-41-page7.txt: [('Member-', 'Member'), ('De-', 'De')] LUH19111011-V03-41-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19111018-V03-42-page1.txt: [('-acre', 'acre'), ('-cost', 'cost')] LUH19111018-V03-42-page3.txt: [('-', '')] LUH19111018-V03-42-page4.txt: [('Ten-cent-a-', 'Ten-cent-a')] LUH19111018-V03-42-page5.txt: [('-', '')] LUH19111018-V03-42-page6.txt: [('-sure', 'sure')] LUH19111018-V03-42-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19111025-V03-43-page3.txt: [('Turko-', 'Turko'), ('-', '')] LUH19111025-V03-43-page4.txt: [('-', ''), ('-', '')] LUH19111025-V03-43-page5.txt: [('-', '')] LUH19111025-V03-43-page6.txt: [('-', '')] LUH19111025-V03-43-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19111101-V03-44-page1.txt: [('at-', 'at')] LUH19111101-V03-44-page4.txt: [('-', ''), ('-', '')] LUH19111101-V03-44-page6.txt: [('-', '')] LUH19111101-V03-44-page7.txt: [('-', ''), ('-one', 'one'), ('-', '')] LUH19111101-V03-44-page8.txt: [('-subscriptions', 'subscriptions'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19111108-V03-45-page1.txt: [('re-', 're'), ('-', '')] LUH19111108-V03-45-page2.txt: [('-The', 'The')] LUH19111108-V03-45-page4.txt: [('-', ''), ('Mc-', 'Mc')] LUH19111108-V03-45-page6.txt: [('-', ''), ('-is', 'is'), ('-', ''), ('wo-', 'wo')] LUH19111108-V03-45-page7.txt: [('of-', 'of')] LUH19111108-V03-45-page8.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19111115-V03-46-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19111115-V03-46-page4.txt: [('offici-', 'offici')] LUH19111115-V03-46-page6.txt: [('HER-', 'HER')] LUH19111115-V03-46-page7.txt: [('-.', '.'), ('....-...-', '....-...'), ('Alma...-', 'Alma...')] LUH19111115-V03-46-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('--', '-')] LUH19111117-V03-46e-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('di-', 'di')] LUH19111117-V03-46e-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19111117-V03-46e-page3.txt: [('-', '')] LUH19111117-V03-46e-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('be-', 'be')] LUH19111117-V03-46e-page5.txt: [('-', '')] LUH19111117-V03-46e-page6.txt: [('-', '')] LUH19111117-V03-46e-page8.txt: [('-', '')] LUH19111122-V03-47-page6.txt: [('ma-', 'ma'), ('-chines', 'chines')] LUH19111122-V03-47-page7.txt: [('--', '-'), ('-', ''), ('.-', '.')] LUH19111122-V03-47-page8.txt: [('-WEEKLY', 'WEEKLY'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', '')] LUH19111129-V03-48-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19111129-V03-48-page10.txt: [('present-', 'present')] LUH19111129-V03-48-page11.txt: [('-', ''), ('-', ''), ('-', '')] LUH19111129-V03-48-page12.txt: [('-the', 'the'), ('-', ''), ('-', '')] LUH19111129-V03-48-page15.txt: [('also-', 'also'), ('-', ''), ('-', '')] LUH19111129-V03-48-page16.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19111129-V03-48-page2.txt: [('-', ''), ('-', '')] LUH19111129-V03-48-page3.txt: [('--ood', '-ood'), ('-', '')] LUH19111129-V03-48-page4.txt: [('-', '')] LUH19111129-V03-48-page5.txt: [('get-', 'get')] LUH19111129-V03-48-page6.txt: [('-', '')] LUH19111129-V03-48-page7.txt: [('breth-', 'breth')] LUH19111206-V03-49-page1.txt: [('-', '')] LUH19111206-V03-49-page2.txt: [('interest-', 'interest')] LUH19111206-V03-49-page3.txt: [('-', '')] LUH19111206-V03-49-page4.txt: [('-', '')] LUH19111206-V03-49-page5.txt: [('-', ''), ('-', '')] LUH19111206-V03-49-page6.txt: [('-', '')] LUH19111206-V03-49-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19111213-V03-50-page1.txt: [('-', ''), ('-', '')] LUH19111213-V03-50-page2.txt: [('-', '')] LUH19111213-V03-50-page3.txt: [('For-', 'For'), ('Sagi-', 'Sagi'), ('-', ''), ('-', '')] LUH19111213-V03-50-page4.txt: [('-offering', 'offering')] LUH19111213-V03-50-page5.txt: [('-', ''), ('-The', 'The')] LUH19111213-V03-50-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19111220-V03-51-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('evident-', 'evident')] LUH19111220-V03-51-page3.txt: [('-attended', 'attended')] LUH19111220-V03-51-page6.txt: [('HER-', 'HER'), ('..-', '..')] LUH19111220-V03-51-page7.txt: [('-of', 'of')] LUH19111220-V03-51-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('M-', 'M')] LUH19120103-V04-01-page10.txt: [('-', ''), ('-', '')] LUH19120103-V04-01-page11.txt: [('-', ''), ('-', '')] LUH19120103-V04-01-page12.txt: [('-', '')] LUH19120103-V04-01-page2.txt: [('-', '')] LUH19120103-V04-01-page3.txt: [("Sec'y-", "Sec'y")] LUH19120103-V04-01-page4.txt: [('-', ''), ('-', '')] LUH19120103-V04-01-page5.txt: [('-', ''), ('in-', 'in')] LUH19120103-V04-01-page6.txt: [('-', ''), ('-Lord', 'Lord')] LUH19120103-V04-01-page8.txt: [('-', ''), ('-great', 'great')] LUH19120103-V04-01-page9.txt: [('-', ''), ('-church', 'church'), ('Du-', 'Du')] LUH19120109-V04-02-page1.txt: [('sec-', 'sec')] LUH19120109-V04-02-page2.txt: [('-', '')] LUH19120109-V04-02-page3.txt: [('-', ''), ("Sec'y-", "Sec'y")] LUH19120109-V04-02-page4.txt: [('acres-', 'acres'), ('-', ''), ('his-', 'his')] LUH19120117-V04-03-page1.txt: [('-', ''), ('faith-', 'faith')] LUH19120117-V04-03-page2.txt: [('-', ''), ('can-', 'can')] LUH19120117-V04-03-page3.txt: [('Confer-', 'Confer')] LUH19120117-V04-03-page4.txt: [('-two', 'two'), ('suc-', 'suc')] LUH19120117-V04-03-page5.txt: [('-....', '....'), ('-', ''), ('rep-', 'rep'), ('-', '')] LUH19120117-V04-03-page6.txt: [('-', '')] LUH19120117-V04-03-page7.txt: [("Sec'y-", "Sec'y"), ('-a-week', 'a-week')] LUH19120117-V04-03-page8.txt: [('-', ''), ('-', ''), ('-', '')] LUH19120124-V04-04-page1.txt: [('-', '')] LUH19120124-V04-04-page2.txt: [('-', '')] LUH19120124-V04-04-page3.txt: [('-', ''), ('church-', 'church'), ('end-', 'end')] LUH19120124-V04-04-page4.txt: [('..-', '..'), ('-', '')] LUH19120124-V04-04-page5.txt: [('-', '')] LUH19120124-V04-04-page6.txt: [('in-', 'in')] LUH19120124-V04-04-page7.txt: [('-', '')] LUH19120124-V04-04-page8.txt: [('-', ''), ('-', ''), ('Morrison...-', 'Morrison...')] LUH19120131-V04-05-page3.txt: [('-', ''), ('insti-', 'insti')] LUH19120131-V04-05-page4.txt: [('-for', 'for'), ('-', ''), ('atten-', 'atten')] LUH19120131-V04-05-page6.txt: [('-', '')] LUH19120131-V04-05-page7.txt: [('-Ora', 'Ora'), ('-', ''), ('-Mary', 'Mary'), ('-Sister', 'Sister')] LUH19120131-V04-05-page8.txt: [('-', ''), ('-gallon', 'gallon')] LUH19120207-V04-06-page1.txt: [('-', ''), ('Committee-', 'Committee')] LUH19120207-V04-06-page3.txt: [('-', '')] LUH19120207-V04-06-page5.txt: [('-', ''), ('-', ''), ('-order', 'order')] LUH19120207-V04-06-page7.txt: [('-.', '.'), ('-', '')] LUH19120207-V04-06-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('---', '--')] LUH19120214-V04-07-page1.txt: [('informa-', 'informa')] LUH19120214-V04-07-page3.txt: [('-', ''), ('-', '')] LUH19120214-V04-07-page4.txt: [('-', ''), ('-', '')] LUH19120214-V04-07-page5.txt: [('-', '')] LUH19120214-V04-07-page8.txt: [('-', ''), ('-', ''), ('-', '')] LUH19120221-V04-08-page1.txt: [('-', '')] LUH19120221-V04-08-page4.txt: [('-', '')] LUH19120221-V04-08-page5.txt: [('-', ''), ('soci-', 'soci')] LUH19120221-V04-08-page6.txt: [('-', ''), ('print-', 'print')] LUH19120221-V04-08-page8.txt: [('-', ''), ('-', '')] LUH19120221-V04-08s-page1.txt: [('-', ''), ('"Intermis-', '"Intermis'), ('-', '')] LUH19120221-V04-08s-page3.txt: [('-', ''), ('-', ''), ('----', '---'), ('--', '-'), ('----', '---'), ('-----', '----'), ('-', '')] LUH19120221-V04-08s-page4.txt: [('-', '')] LUH19120228-V04-09-page5.txt: [('indebted-', 'indebted')] LUH19120228-V04-09-page6.txt: [('-', ''), ('Mc-', 'Mc')] LUH19120228-V04-09-page7.txt: [('Out-of-', 'Out-of')] LUH19120228-V04-09-page8.txt: [('-', '')] LUH19120306-V04-10-page1.txt: [('-', '')] LUH19120306-V04-10-page2.txt: [('-', '')] LUH19120306-V04-10-page3.txt: [('-', ''), ('-', '')] LUH19120306-V04-10-page4.txt: [('-', '')] LUH19120306-V04-10-page6.txt: [('-.', '.'), ('---', '--')] LUH19120306-V04-10-page7.txt: [('Van-', 'Van')] LUH19120306-V04-10-page8.txt: [('-', ''), ('-', ''), ('acres-', 'acres'), ('-', '')] LUH19120313-V04-11-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('nothing."-', 'nothing."')] LUH19120313-V04-11-page2.txt: [('-', ''), ('-', '')] LUH19120313-V04-11-page3.txt: [('-', '')] LUH19120313-V04-11-page5.txt: [('-Brother', 'Brother'), ('simi-', 'simi')] LUH19120313-V04-11-page7.txt: [('A.-', 'A.')] LUH19120320-V04-12-page3.txt: [('-', '')] LUH19120320-V04-12-page4.txt: [('Bar-', 'Bar')] LUH19120320-V04-12-page6.txt: [('-', ''), ('appre-', 'appre'), ('-', ''), ('-', ''), ('num-', 'num')] LUH19120320-V04-12-page7.txt: [('-gallon', 'gallon')] LUH19120327-V04-13-page1.txt: [('-', '')] LUH19120327-V04-13-page6.txt: [('-', '')] LUH19120327-V04-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--')] LUH19120403-V04-14-page1.txt: [('canvass-', 'canvass')] LUH19120403-V04-14-page2.txt: [('-', '')] LUH19120403-V04-14-page3.txt: [('-', '')] LUH19120403-V04-14-page4.txt: [('-', '')] LUH19120403-V04-14-page5.txt: [('Clenathan-', 'Clenathan'), ('-', '')] LUH19120410-V04-15-page1.txt: [('-', '')] LUH19120410-V04-15-page2.txt: [('thir-', 'thir')] LUH19120410-V04-15-page3.txt: [('-', ''), ('re-', 're')] LUH19120410-V04-15-page4.txt: [('thirteenth-', 'thirteenth')] LUH19120410-V04-15-page6.txt: [('-', '')] LUH19120410-V04-15-page7.txt: [('-', '')] LUH19120410-V04-15-page8.txt: [('-', ''), ('--', '-')] LUH19120417-V04-16-page1.txt: [('-page', 'page'), ('-', ''), ('cheer-', 'cheer')] LUH19120417-V04-16-page4.txt: [('begin-', 'begin'), ('-', ''), ('Walkerton.........-', 'Walkerton.........'), ('-', ''), ('-', '')] LUH19120417-V04-16-page8.txt: [('-', ''), ('--', '-'), ('----', '---')] LUH19120424-V04-17-page2.txt: [('-a', 'a')] LUH19120424-V04-17-page3.txt: [('-', '')] LUH19120424-V04-17-page4.txt: [('invit-', 'invit')] LUH19120424-V04-17-page5.txt: [('-', ''), ('-', '')] LUH19120424-V04-17-page7.txt: [('-', ''), ('LUNGER.-', 'LUNGER.'), ('An-', 'An'), ('Le-', 'Le'), ('-', ''), ('Bengham-on-the-', 'Bengham-on-the'), ('SmALLEv.-', 'SmALLEv.')] LUH19120501-V04-18-page11.txt: [('glory."-', 'glory."')] LUH19120501-V04-18-page12.txt: [('-', ''), ('every-', 'every')] LUH19120501-V04-18-page13.txt: [('-', ''), ('Mc-', 'Mc'), ('-W.', 'W.')] LUH19120501-V04-18-page14.txt: [('-', '')] LUH19120501-V04-18-page15.txt: [('-', ''), ('-eloquence', 'eloquence')] LUH19120501-V04-18-page3.txt: [('--', '-')] LUH19120501-V04-18-page4.txt: [('at-', 'at'), ('-', ''), ('-', ''), ('-', ''), ('Col-', 'Col')] LUH19120501-V04-18-page5.txt: [('-', ''), ('-', '')] LUH19120501-V04-18-page6.txt: [('in-', 'in')] LUH19120501-V04-18-page7.txt: [('-', '')] LUH19120501-V04-18-page8.txt: [('suc-', 'suc')] LUH19120501-V04-18-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-o', 'o'), ('-', '')] LUH19120508-V04-19-page2.txt: [('-', ''), ("Ass'n-", "Ass'n"), ('Fund-', 'Fund'), ('Payable-', 'Payable')] LUH19120508-V04-19-page3.txt: [('-', '')] LUH19120508-V04-19-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('therefore-', 'therefore'), ('-', ''), ('-', ''), ('time.-', 'time.')] LUH19120508-V04-19-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120515-V04-20-page4.txt: [('-was', 'was'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120515-V04-20-page5.txt: [('College--', 'College-'), ('continued-', 'continued'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120515-V04-20-page6.txt: [('-', '')] LUH19120515-V04-20-page7.txt: [('-cent', 'cent'), ('-', '')] LUH19120515-V04-20-page8.txt: [('--', '-')] LUH19120522-V04-21-page1.txt: [('-', ''), ('GREET-', 'GREET')] LUH19120522-V04-21-page2.txt: [('ministers-', 'ministers'), ('labor-', 'labor'), ('-', ''), ('-', '')] LUH19120522-V04-21-page3.txt: [('.-', '.'), ('thereforeq-', 'thereforeq'), ('Mc-', 'Mc')] LUH19120522-V04-21-page4.txt: [('-', ''), ('-', '')] LUH19120522-V04-21-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19120522-V04-21-page7.txt: [('-', ''), ('HER-', 'HER')] LUH19120522-V04-21-page8.txt: [('Curtis-', 'Curtis')] LUH19120529-V04-22-page3.txt: [('-', ''), ('Mc-', 'Mc'), ('--', '-')] LUH19120529-V04-22-page6.txt: [('-', ''), ('-', '')] LUH19120529-V04-22-page7.txt: [('-message', 'message'), ('-News', 'News')] LUH19120529-V04-22-page8.txt: [('-', ''), ('.-', '.')] LUH19120605-V04-23-page2.txt: [('-with', 'with'), ('-a', 'a'), ('.-', '.'), ('equal-', 'equal')] LUH19120605-V04-23-page3.txt: [('-', '')] LUH19120605-V04-23-page4.txt: [('Mc-', 'Mc'), ('mag-', 'mag')] LUH19120605-V04-23-page5.txt: [('-', ''), ('Onaway-', 'Onaway')] LUH19120605-V04-23-page7.txt: [('-', ''), ('-', '')] LUH19120605-V04-23-page8.txt: [('.-', '.'), ('-.-', '.-')] LUH19120612-V04-24-page2.txt: [('HER-', 'HER'), ('-', '')] LUH19120612-V04-24-page3.txt: [('-', '')] LUH19120612-V04-24-page5.txt: [('Van-', 'Van')] LUH19120612-V04-24-page7.txt: [('-', '')] LUH19120619-V04-25-page2.txt: [('-', ''), ('-', '')] LUH19120619-V04-25-page3.txt: [('-Something', 'Something'), ('-As', 'As')] LUH19120619-V04-25-page4.txt: [('-', '')] LUH19120619-V04-25-page5.txt: [('Mc-', 'Mc')] LUH19120619-V04-25-page7.txt: [('.........-', '.........')] LUH19120619-V04-25-page8.txt: [('-SUED', 'SUED'), ('-', '')] LUH19120626-V04-26-page1.txt: [('Mc-', 'Mc'), ('Van-', 'Van'), ('suc-', 'suc')] LUH19120626-V04-26-page2.txt: [('com-', 'com'), ('-months', 'months')] LUH19120626-V04-26-page3.txt: [('Countryman.-', 'Countryman.')] LUH19120626-V04-26-page5.txt: [('city-', 'city')] LUH19120626-V04-26-page6.txt: [('-', ''), ('re-', 're')] LUH19120626-V04-26-page7.txt: [('-', '')] LUH19120626-V04-26-page8.txt: [('-motes', 'motes'), ('-', ''), ('-', ''), ('-', ''), ('-Hugo', 'Hugo'), ('-', '')] LUH19120703-V04-27-page6.txt: [('Sabbath-', 'Sabbath')] LUH19120703-V04-27-page7.txt: [('prob-', 'prob')] LUH19120703-V04-27-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120710-V04-28-page5.txt: [('La-', 'La')] LUH19120710-V04-28-page7.txt: [('-', '')] LUH19120710-V04-28-page8.txt: [('-SUED', 'SUED'), ('-', '')] LUH19120717-V04-29-page3.txt: [('-', '')] LUH19120717-V04-29-page7.txt: [('-', '')] LUH19120717-V04-29-page8.txt: [('.-', '.'), ('-', ''), ('---', '--')] LUH19120724-V04-30-page10.txt: [('ELT-', 'ELT')] LUH19120724-V04-30-page14.txt: [('-Bessie', 'Bessie'), ('-', ''), ('-Elizabeth', 'Elizabeth'), ('-Elders', 'Elders'), ('-', ''), ('-Eva', 'Eva'), ('-Gideon', 'Gideon'), ('-Charlotte', 'Charlotte')] LUH19120724-V04-30-page15.txt: [('-', '')] LUH19120724-V04-30-page16.txt: [('-SUED', 'SUED'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120724-V04-30-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.')] LUH19120724-V04-30-page4.txt: [('automo-', 'automo'), ('-E.', 'E.')] LUH19120724-V04-30-page5.txt: [('re-', 're')] LUH19120724-V04-30-page6.txt: [('Au--', 'Au-')] LUH19120724-V04-30-page7.txt: [('peo-', 'peo')] LUH19120724-V04-30-page8.txt: [('-as', 'as')] LUH19120724-V04-30-page9.txt: [('af-', 'af')] LUH19120731-V04-31-page1.txt: [('spirit-', 'spirit'), ('-', '')] LUH19120731-V04-31-page4.txt: [('-at', 'at'), ('-work', 'work')] LUH19120731-V04-31-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120731-V04-31-page6.txt: [('-', '')] LUH19120731-V04-31-page7.txt: [('-', ''), ('-Arthur', 'Arthur'), ('-', '')] LUH19120731-V04-31-page8.txt: [('-SUED', 'SUED')] LUH19120807-V04-32-page2.txt: [('-', ''), ('-', '')] LUH19120807-V04-32-page3.txt: [('-', ''), ('-', '')] LUH19120807-V04-32-page4.txt: [('-', ''), ('circum--', 'circum-')] LUH19120807-V04-32-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120807-V04-32-page6.txt: [('-Fox', 'Fox')] LUH19120807-V04-32-page8.txt: [('-', '')] LUH19120814-V04-33-page1.txt: [('-', ''), ('-', ''), ('Walder-', 'Walder')] LUH19120814-V04-33-page4.txt: [('Camp-', 'Camp'), ('-', ''), ('-', '')] LUH19120814-V04-33-page6.txt: [('-', ''), ('ques-', 'ques'), ('-', ''), ('with-', 'with')] LUH19120814-V04-33-page8.txt: [('-.SUED', '.SUED'), ('-acre', 'acre')] LUH19120821-V04-34-page1.txt: [('Con-', 'Con')] LUH19120821-V04-34-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('therefote.-', 'therefote.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-parts', 'parts'), ('-', '')] LUH19120821-V04-34-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120821-V04-34-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120821-V04-34-page6.txt: [('-', '')] LUH19120821-V04-34-page7.txt: [('-', '')] LUH19120821-V04-34-page8.txt: [('-', ''), ('-.HED', '.HED')] LUH19120828-V04-35-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] LUH19120828-V04-35-page2.txt: [('-', '')] LUH19120828-V04-35-page3.txt: [('-', '')] LUH19120828-V04-35-page4.txt: [('-', '')] LUH19120828-V04-35-page5.txt: [('-', '')] LUH19120828-V04-35-page6.txt: [('-', ''), ('find-', 'find'), ('-', '')] LUH19120828-V04-35-page8.txt: [('-', '')] LUH19120904-V04-36-page4.txt: [('-', '')] LUH19120904-V04-36-page6.txt: [('-', '')] LUH19120904-V04-36-page7.txt: [('-', ''), ('--hOst', '-hOst')] LUH19120904-V04-36-page8.txt: [('-SUED', 'SUED'), ('-gallon', 'gallon'), ('-', ''), ('-.ers.Report', '.ers.Report')] LUH19120911-V04-37-page1.txt: [('-and', 'and'), ('associ-', 'associ')] LUH19120911-V04-37-page2.txt: [('-', '')] LUH19120911-V04-37-page3.txt: [('con-', 'con'), ('workper-', 'workper')] LUH19120911-V04-37-page5.txt: [('Wis.-', 'Wis.')] LUH19120911-V04-37-page7.txt: [('-Died', 'Died'), ('-Mrs', 'Mrs'), ('-', ''), ('-Albert', 'Albert'), ('-Carrie', 'Carrie')] LUH19120911-V04-37-page8.txt: [('the-', 'the'), ('-gallon', 'gallon'), ('-', '')] LUH19120918-V04-38-page1.txt: [('-supporting.', 'supporting.')] LUH19120918-V04-38-page2.txt: [('indi-', 'indi')] LUH19120918-V04-38-page3.txt: [('-', ''), ('--', '-'), ('-', ''), ('-', '')] LUH19120918-V04-38-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19120918-V04-38-page5.txt: [('-', '')] LUH19120918-V04-38-page7.txt: [('vic-', 'vic'), ('..................---', '..................--'), ('-o-', 'o-'), ('-', ''), ('-gallon', 'gallon')] LUH19120918-V04-38-page8.txt: [('-', ''), ('-', '')] LUH19120925-V04-39-page1.txt: [('-', '')] LUH19120925-V04-39-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120925-V04-39-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120925-V04-39-page4.txt: [('Mc-', 'Mc')] LUH19120925-V04-39-page5.txt: [('-', '')] LUH19120925-V04-39-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19120925-V04-39-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Record-', 'Record')] LUH19120925-V04-39-page8.txt: [('-gallon', 'gallon')] LUH19121002-V04-40-page1.txt: [('Anglo-', 'Anglo'), ('immigra-', 'immigra')] LUH19121002-V04-40-page2.txt: [('-', '')] LUH19121002-V04-40-page3.txt: [('possi-', 'possi'), ('-tract', 'tract'), ('-', '')] LUH19121002-V04-40-page4.txt: [('-', '')] LUH19121002-V04-40-page6.txt: [('-gallon', 'gallon')] LUH19121009-V04-41-page1.txt: [('-the', 'the'), ('-', ''), ('reads.--', 'reads.-')] LUH19121009-V04-41-page3.txt: [('Ingather-', 'Ingather'), ('-', '')] LUH19121009-V04-41-page4.txt: [('and-', 'and'), ('liberali-', 'liberali')] LUH19121009-V04-41-page5.txt: [('-we', 'we')] LUH19121009-V04-41-page6.txt: [('cour-', 'cour')] LUH19121009-V04-41-page8.txt: [('-gallon', 'gallon'), ('-', '')] LUH19121016-V04-42-page1.txt: [('-', '')] LUH19121016-V04-42-page2.txt: [('-', ''), ('-', '')] LUH19121016-V04-42-page4.txt: [('th-', 'th'), ('-it', 'it')] LUH19121016-V04-42-page5.txt: [('-', ''), ('-', ''), ('UNION-', 'UNION')] LUH19121016-V04-42-page7.txt: [('Mc-', 'Mc'), ('-', '')] LUH19121016-V04-42-page8.txt: [('rep-', 'rep')] LUH19121023-V04-43-page1.txt: [('German-', 'German'), ('Hebrew-German-Irish-Italian-Bohemian-', 'Hebrew-German-Irish-Italian-Bohemian'), ('-', '')] LUH19121023-V04-43-page2.txt: [('-', '')] LUH19121023-V04-43-page5.txt: [('-', ''), ('-', '')] LUH19121023-V04-43-page6.txt: [('-', '')] LUH19121023-V04-43-page7.txt: [('-gallon', 'gallon')] LUH19121023-V04-43-page8.txt: [('HER-', 'HER')] LUH19121030-V04-44-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('sever-', 'sever')] LUH19121030-V04-44-page4.txt: [('-"Where', '"Where')] LUH19121030-V04-44-page6.txt: [('-', '')] LUH19121030-V04-44-page7.txt: [('-', ''), ('-gallon', 'gallon')] LUH19121106-V04-45-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19121106-V04-45-page4.txt: [('Fos-', 'Fos')] LUH19121106-V04-45-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19121106-V04-45-page6.txt: [('-gal', 'gal'), ('intense-', 'intense')] LUH19121106-V04-45-page7.txt: [('and-', 'and')] LUH19121113-V04-46-page1.txt: [('Mrs.---', 'Mrs.--'), ('-', ''), ('minister-', 'minister')] LUH19121113-V04-46-page3.txt: [('rem-', 'rem')] LUH19121113-V04-46-page5.txt: [('dis-', 'dis')] LUH19121113-V04-46-page6.txt: [('-', ''), ('per-', 'per'), ('-', ''), ('..-', '..')] LUH19121113-V04-46-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19121120-V04-47-page1.txt: [('-', '')] LUH19121120-V04-47-page2.txt: [('-', ''), ('-', '')] LUH19121120-V04-47-page4.txt: [('Mc-', 'Mc'), ('Mon-', 'Mon'), ('-', '')] LUH19121120-V04-47-page6.txt: [('-', '')] LUH19121120-V04-47-page7.txt: [('rail-', 'rail')] LUH19121120-V04-47-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('at-', 'at')] LUH19121127-V04-48-page2.txt: [('-', '')] LUH19121127-V04-48-page3.txt: [('Mrs.--', 'Mrs.-'), ('-', '')] LUH19121127-V04-48-page4.txt: [('card-', 'card'), ('-', '')] LUH19121127-V04-48-page5.txt: [('-', ''), ('-for', 'for')] LUH19121127-V04-48-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19121204-V04-49-page1.txt: [('for-', 'for'), ('in-', 'in')] LUH19121204-V04-49-page2.txt: [('-bathe', 'bathe')] LUH19121204-V04-49-page4.txt: [('-', ''), ('-', '')] LUH19121204-V04-49-page5.txt: [('-', ''), ('-of', 'of'), ('-', '')] LUH19121204-V04-49-page6.txt: [('-', ''), ('-', '')] LUH19121204-V04-49-page7.txt: [('-', ''), ('Oct.-', 'Oct.'), ('-', ''), ('-', ''), ('-Jan.', 'Jan.'), ('-', ''), ('-Feb.', 'Feb.'), ('-', ''), ('-', ''), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19121204-V04-49-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19121211-V04-50-page1.txt: [('re-', 're')] LUH19121211-V04-50-page3.txt: [('-', '')] LUH19121211-V04-50-page4.txt: [('se-', 'se')] LUH19121211-V04-50-page5.txt: [('vis-', 'vis'), ('-', '')] LUH19121211-V04-50-page6.txt: [('-', '')] LUH19121211-V04-50-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19121211-V04-50-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal', 'gal'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('spend-', 'spend'), ('-----', '----'), ('-', ''), ('-', '')] LUH19121218-V04-51-page1.txt: [('-', '')] LUH19121218-V04-51-page2.txt: [('-', ''), ('-', ''), ('-in', 'in'), ('-gave', 'gave')] LUH19121218-V04-51-page6.txt: [('Advent-', 'Advent'), ('assist-', 'assist')] LUH19121218-V04-51-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', '')] LUH19121218-V04-51-page8.txt: [('-', ''), ('-', ''), ('-Jan.', 'Jan.'), ('-', ''), ('-Feb.', 'Feb.'), ('-', ''), ('-', ''), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19121225-V04-52-page2.txt: [('-ounden', 'ounden'), ('-word', 'word'), ('-had', 'had')] LUH19121225-V04-52-page3.txt: [('-', ''), ('CON-', 'CON')] LUH19121225-V04-52-page4.txt: [('-', ''), ('-', '')] LUH19121225-V04-52-page5.txt: [('-', ''), ('-', '')] LUH19121225-V04-52-page8.txt: [('delicious.-', 'delicious.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', ''), ('-Jan.', 'Jan.'), ('-', ''), ('-Feb.', 'Feb.'), ('-', ''), ('-', ''), ('-', ''), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19130108-V05-01-page1.txt: [('-', ''), ('-', ''), ('-two', 'two')] LUH19130108-V05-01-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130108-V05-01-page3.txt: [('-', '')] LUH19130108-V05-01-page6.txt: [('-', '')] LUH19130108-V05-01-page7.txt: [('-', ''), ('-', ''), ('Teach-', 'Teach')] LUH19130108-V05-01-page8.txt: [('post-', 'post'), ('delicious.-', 'delicious.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('------------D.R.', '-----------D.R.')] LUH19130115-V05-02-page2.txt: [('-', '')] LUH19130115-V05-02-page3.txt: [('-', '')] LUH19130115-V05-02-page4.txt: [('-', ''), ('-', '')] LUH19130115-V05-02-page6.txt: [('-', '')] LUH19130115-V05-02-page7.txt: [('-', ''), ('-', ''), ('-Feb.', 'Feb.'), ('-', ''), ('-', ''), ('-', ''), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19130115-V05-02-page8.txt: [('-gallon', 'gallon'), ('-', ''), ('-', ''), ('delicious.-', 'delicious.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130122-V05-03-page1.txt: [('-', '')] LUH19130122-V05-03-page2.txt: [('-', '')] LUH19130122-V05-03-page3.txt: [('Fen-', 'Fen')] LUH19130122-V05-03-page6.txt: [('TOLIVER.-', 'TOLIVER.'), ('-', ''), ('DARLING.-', 'DARLING.'), ('HUBBARD.-', 'HUBBARD.'), ('RAKESTRAW.-', 'RAKESTRAW.'), ('TRIPP.-', 'TRIPP.')] LUH19130122-V05-03-page8.txt: [('-gallon', 'gallon'), ('-', ''), ('-', ''), ('delicious.-', 'delicious.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19130129-V05-04-page1.txt: [('Wood-', 'Wood'), ('-', '')] LUH19130129-V05-04-page2.txt: [('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130129-V05-04-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130129-V05-04-page4.txt: [('-', '')] LUH19130129-V05-04-page6.txt: [('in-', 'in')] LUH19130129-V05-04-page7.txt: [('-', ''), ('-', ''), ('-Feb.', 'Feb.'), ('-', ''), ('-', ''), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19130129-V05-04-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('A-', 'A'), ('-can', 'can'), ('-lb', 'lb'), ('delicious.-', 'delicious.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130205-V05-05-page1.txt: [('-', '')] LUH19130205-V05-05-page2.txt: [('-', '')] LUH19130205-V05-05-page3.txt: [('doh-', 'doh')] LUH19130205-V05-05-page5.txt: [('-', '')] LUH19130205-V05-05-page7.txt: [('-', ''), ('-January', 'January'), ('patron-', 'patron'), ('un-', 'un')] LUH19130205-V05-05-page8.txt: [('N-', 'N'), ('-gallon', 'gallon'), ('n-', 'n'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19130212-V05-06-page1.txt: [('-', '')] LUH19130212-V05-06-page2.txt: [('-', '')] LUH19130212-V05-06-page3.txt: [('-one', 'one'), ('-', ''), ('-', '')] LUH19130212-V05-06-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130212-V05-06-page7.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-can', 'can'), ('-lb', 'lb'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19130212-V05-06-page8.txt: [('-Place', 'Place'), ('-Mar.', 'Mar.'), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19130219-V05-07-page3.txt: [('-', '')] LUH19130219-V05-07-page5.txt: [('-', '')] LUH19130219-V05-07-page6.txt: [('Mc-', 'Mc')] LUH19130219-V05-07-page7.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc')] LUH19130219-V05-07-page8.txt: [('-gallon', 'gallon'), ('-can', 'can'), ('-lb', 'lb'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19130226-V05-08-page1.txt: [('neces-', 'neces'), ('your-', 'your')] LUH19130226-V05-08-page10.txt: [('-John', 'John'), ('CARTER.-', 'CARTER.'), ('-', ''), ('BYERLY.-', 'BYERLY.')] LUH19130226-V05-08-page11.txt: [('-', ''), ('-can', 'can'), ('-lb', 'lb'), ('-', ''), ('-', ''), ('-room', 'room'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19130226-V05-08-page7.txt: [('-', '')] LUH19130226-V05-08-page8.txt: [('at-', 'at'), ('-', ''), ('-', '')] LUH19130226-V05-08-page9.txt: [('-', ''), ('com-', 'com')] LUH19130305-V05-09-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130305-V05-09-page6.txt: [('-', ''), ('-', '')] LUH19130305-V05-09-page8.txt: [('-', ''), ('-', ''), ('-can', 'can'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Apr.', 'Apr.'), ('-', ''), ('-', ''), ('-May', 'May')] LUH19130312-V05-10-page3.txt: [('..--', '..-'), ('-', ''), ('-', ''), ('-', ''), ('Sun-', 'Sun'), ('.....--', '.....-')] LUH19130312-V05-10-page5.txt: [('earnest-', 'earnest')] LUH19130312-V05-10-page7.txt: [('-', ''), ('-', '')] LUH19130312-V05-10-page8.txt: [('confident-', 'confident'), ('-', ''), ('-', ''), ('-can', 'can'), ('-lb', 'lb'), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19130319-V05-11-page1.txt: [('-from', 'from')] LUH19130319-V05-11-page2.txt: [('-', '')] LUH19130319-V05-11-page4.txt: [('-', ''), ('-', ''), ('-F.', 'F.'), ('con-', 'con')] LUH19130319-V05-11-page6.txt: [('ex-', 'ex')] LUH19130319-V05-11-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19130326-V05-12-page1.txt: [('insti-', 'insti')] LUH19130326-V05-12-page10.txt: [('-', '')] LUH19130326-V05-12-page13.txt: [('NORRIS.-', 'NORRIS.')] LUH19130326-V05-12-page15.txt: [('Booth-', 'Booth'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19130326-V05-12-page16.txt: [('-e', 'e')] LUH19130326-V05-12-page2.txt: [('-', '')] LUH19130326-V05-12-page3.txt: [('-which', 'which')] LUH19130326-V05-12-page4.txt: [('va-', 'va'), ('-', '')] LUH19130326-V05-12-page5.txt: [('-', '')] LUH19130326-V05-12-page6.txt: [('half-', 'half')] LUH19130326-V05-12-page7.txt: [('-', '')] LUH19130326-V05-12-page8.txt: [('-', ''), ('...-', '...')] LUH19130326-V05-12-page9.txt: [('organi-', 'organi'), ('-', ''), ('-', '')] LUH19130402-V05-13-page2.txt: [('-', '')] LUH19130402-V05-13-page3.txt: [('-', ''), ('Elgin-', 'Elgin')] LUH19130402-V05-13-page4.txt: [('North-', 'North')] LUH19130402-V05-13-page5.txt: [('-', ''), ('-', '')] LUH19130402-V05-13-page7.txt: [('-', ''), ('-', ''), ('-May', 'May'), ('-', '')] LUH19130402-V05-13-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-pure', 'pure'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19130409-V05-14-page3.txt: [('-', '')] LUH19130409-V05-14-page4.txt: [('-.ffered', '.ffered')] LUH19130409-V05-14-page6.txt: [('-', '')] LUH19130409-V05-14-page7.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', '')] LUH19130409-V05-14-page8.txt: [('-', '')] LUH19130416-V05-15-page1.txt: [('Sabbath-', 'Sabbath')] LUH19130416-V05-15-page2.txt: [('faith-', 'faith')] LUH19130416-V05-15-page4.txt: [('-', '')] LUH19130416-V05-15-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130423-V05-16-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130423-V05-16-page5.txt: [('-', '')] LUH19130423-V05-16-page7.txt: [('-', '')] LUH19130423-V05-16-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130430-V05-17-page3.txt: [('-', '')] LUH19130430-V05-17-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-but', 'but')] LUH19130430-V05-17-page6.txt: [('-', ''), ('-', '')] LUH19130430-V05-17-page7.txt: [('-', ''), ('-Week', 'Week')] LUH19130430-V05-17-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130507-V05-18-page2.txt: [('Sun-', 'Sun')] LUH19130507-V05-18-page6.txt: [('-', '')] LUH19130507-V05-18-page7.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130507-V05-18-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130514-V05-19-page1.txt: [('-', ''), ('-', '')] LUH19130514-V05-19-page2.txt: [('-', '')] LUH19130514-V05-19-page3.txt: [('-', ''), ('-', '')] LUH19130514-V05-19-page4.txt: [('at-', 'at'), ('-', '')] LUH19130514-V05-19-page5.txt: [('-Spirit.', 'Spirit.')] LUH19130514-V05-19-page7.txt: [('-', '')] LUH19130514-V05-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-apply', 'apply'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-galoln', 'galoln'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130521-V05-20-page1.txt: [('withold-', 'withold')] LUH19130521-V05-20-page2.txt: [('-', '')] LUH19130521-V05-20-page4.txt: [('Un-', 'Un')] LUH19130521-V05-20-page6.txt: [('-', ''), ('---', '--')] LUH19130521-V05-20-page7.txt: [('-will', 'will')] LUH19130521-V05-20-page8.txt: [('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130528-V05-21-page1.txt: [('-it.', 'it.'), ('sanitar-', 'sanitar'), ('-Blow', 'Blow')] LUH19130528-V05-21-page2.txt: [('carpet-', 'carpet')] LUH19130528-V05-21-page3.txt: [('-I', 'I')] LUH19130528-V05-21-page4.txt: [('-', ''), ('-', ''), ('-Haskell', 'Haskell'), ('be-', 'be')] LUH19130528-V05-21-page5.txt: [('-', '')] LUH19130528-V05-21-page7.txt: [('-', ''), ('KELLOGG.-', 'KELLOGG.'), ('-', ''), ('-Wallace', 'Wallace')] LUH19130528-V05-21-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130604-V05-22-page1.txt: [('pres-', 'pres')] LUH19130604-V05-22-page2.txt: [('-will', 'will')] LUH19130604-V05-22-page3.txt: [('-Composed', 'Composed')] LUH19130604-V05-22-page4.txt: [('forgot-', 'forgot')] LUH19130604-V05-22-page5.txt: [('of-', 'of')] LUH19130604-V05-22-page6.txt: [('Foot-', 'Foot'), ('condi-', 'condi')] LUH19130604-V05-22-page7.txt: [('-', ''), ('-Susan', 'Susan'), ('-', '')] LUH19130604-V05-22-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130611-V05-23-page3.txt: [('spirit-', 'spirit')] LUH19130611-V05-23-page4.txt: [('usu-', 'usu')] LUH19130611-V05-23-page7.txt: [('-', ''), ('-', '')] LUH19130611-V05-23-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130618-V05-24-page1.txt: [('--', '-')] LUH19130618-V05-24-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130618-V05-24-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130618-V05-24-page7.txt: [('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19130618-V05-24-page8.txt: [('-', ''), ('"-', '"'), ('-', ''), ('-', '')] LUH19130625-V05-25-page1.txt: [('estab-', 'estab')] LUH19130625-V05-25-page4.txt: [('trans-', 'trans')] LUH19130625-V05-25-page5.txt: [('-.', '.')] LUH19130625-V05-25-page6.txt: [('-', ''), ('-', ''), ('--.', '-.'), ('-', ''), ('-', ''), ('accom-', 'accom')] LUH19130625-V05-25-page7.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', '')] LUH19130625-V05-25-page8.txt: [('Mc-', 'Mc'), ('--.', '-.')] LUH19130702-V05-26-page1.txt: [('animal-', 'animal')] LUH19130702-V05-26-page2.txt: [('-', '')] LUH19130702-V05-26-page3.txt: [('-', ''), ('-', ''), ('arrange-', 'arrange'), ('-', '')] LUH19130702-V05-26-page4.txt: [('-', ''), ('-', '')] LUH19130702-V05-26-page6.txt: [('Sec-', 'Sec')] LUH19130702-V05-26-page7.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130702-V05-26-page8.txt: [('Sabbath-', 'Sabbath'), ('-', ''), ('..-', '..')] LUH19130709-V05-27-page2.txt: [('-', '')] LUH19130709-V05-27-page3.txt: [('-', '')] LUH19130709-V05-27-page4.txt: [('-m', 'm'), ('Danish-', 'Danish')] LUH19130709-V05-27-page5.txt: [('-home.', 'home.'), ('-', '')] LUH19130709-V05-27-page7.txt: [('postage-', 'postage'), ('...-', '...'), ('Bailey-----', 'Bailey----'), ('-', ''), ('----', '---'), ('--', '-')] LUH19130709-V05-27-page8.txt: [('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130716-V05-28-page2.txt: [('-', ''), ('-ofbedding', 'ofbedding'), ('-', '')] LUH19130716-V05-28-page3.txt: [('-', '')] LUH19130716-V05-28-page4.txt: [('-', '')] LUH19130716-V05-28-page6.txt: [('-', ''), ('-', '')] LUH19130716-V05-28-page7.txt: [('-', ''), ('-', '')] LUH19130716-V05-28-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-roomed', 'roomed')] LUH19130723-V05-29-page3.txt: [('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('HER-', 'HER')] LUH19130723-V05-29-page4.txt: [('-', ''), ('-I', 'I'), ('-', '')] LUH19130723-V05-29-page5.txt: [('-', ''), ('-', '')] LUH19130723-V05-29-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130723-V05-29-page7.txt: [('-by', 'by'), ('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-', '')] LUH19130723-V05-29-page8.txt: [('-', ''), ('---T', '--T')] LUH19130730-V05-30-page1.txt: [('-L', 'L'), ('-', '')] LUH19130730-V05-30-page11.txt: [('-korld', 'korld')] LUH19130730-V05-30-page12.txt: [('-', ''), ('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130730-V05-30-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130730-V05-30-page6.txt: [('educa-', 'educa')] LUH19130730-V05-30-page7.txt: [('Indianapolis.-', 'Indianapolis.'), ('-Letters', 'Letters')] LUH19130730-V05-30-page8.txt: [('-', ''), ('num-', 'num')] LUH19130730-V05-30-page9.txt: [('-', ''), ('Wood-', 'Wood')] LUH19130806-V05-31-page2.txt: [('-', '')] LUH19130806-V05-31-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130806-V05-31-page4.txt: [('-', ''), ('-', '')] LUH19130806-V05-31-page5.txt: [('hid-', 'hid')] LUH19130806-V05-31-page6.txt: [('Sec-', 'Sec'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130806-V05-31-page7.txt: [('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('ac-', 'ac')] LUH19130806-V05-31-page8.txt: [('-', '')] LUH19130813-V05-32-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130813-V05-32-page5.txt: [('HER-', 'HER'), ('con-', 'con')] LUH19130813-V05-32-page7.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130813-V05-32-page8.txt: [('-', '')] LUH19130820-V05-33-page2.txt: [('-reports', 'reports'), ('-', ''), ('-', '')] LUH19130820-V05-33-page3.txt: [('-', '')] LUH19130820-V05-33-page4.txt: [('-can', 'can')] LUH19130820-V05-33-page5.txt: [('-', '')] LUH19130820-V05-33-page6.txt: [('-', '')] LUH19130820-V05-33-page8.txt: [('twenty-', 'twenty'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130827-V05-34-page2.txt: [('-', '')] LUH19130827-V05-34-page3.txt: [('-Noblesville', 'Noblesville')] LUH19130827-V05-34-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19130827-V05-34-page5.txt: [('-', ''), ('Suther-', 'Suther'), ("-and's", "and's")] LUH19130827-V05-34-page8.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130903-V05-35-page3.txt: [('ingather-', 'ingather'), ('-', ''), ('-', '')] LUH19130903-V05-35-page6.txt: [('-', ''), ('encour-', 'encour')] LUH19130903-V05-35-page8.txt: [('-', ''), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130910-V05-36-page2.txt: [('California-', 'California')] LUH19130910-V05-36-page3.txt: [('.-', '.')] LUH19130910-V05-36-page4.txt: [('-now', 'now')] LUH19130910-V05-36-page5.txt: [('-looking', 'looking')] LUH19130910-V05-36-page7.txt: [('-', '')] LUH19130910-V05-36-page8.txt: [('-gallon', 'gallon'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130917-V05-37-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130917-V05-37-page4.txt: [('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19130924-V05-38-page3.txt: [('-', ''), ('-', '')] LUH19130924-V05-38-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130924-V05-38-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130924-V05-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130924-V05-38-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19130924-V05-38-page8.txt: [('Tri-', 'Tri'), ('-gallon', 'gallon'), ('-can', 'can'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19131001-V05-39-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131001-V05-39-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131001-V05-39-page4.txt: [('-', ''), ('-', '')] LUH19131001-V05-39-page7.txt: [('-', '')] LUH19131008-V05-40-page2.txt: [('-', ''), ('-', '')] LUH19131008-V05-40-page3.txt: [('excur-', 'excur')] LUH19131008-V05-40-page4.txt: [('Secretary-', 'Secretary')] LUH19131008-V05-40-page6.txt: [('-', '')] LUH19131008-V05-40-page7.txt: [('church-', 'church')] LUH19131015-V05-41-page1.txt: [('Sabbath-', 'Sabbath')] LUH19131015-V05-41-page10.txt: [('-', '')] LUH19131015-V05-41-page11.txt: [('con-', 'con')] LUH19131015-V05-41-page12.txt: [('-', '')] LUH19131015-V05-41-page13.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('church-', 'church'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19131015-V05-41-page14.txt: [('-', ''), ('-', '')] LUH19131015-V05-41-page16.txt: [('Review.-', 'Review.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131015-V05-41-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19131015-V05-41-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131015-V05-41-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('therefore.-', 'therefore.'), ('-', ''), ('-', '')] LUH19131015-V05-41-page6.txt: [('--.', '-.')] LUH19131015-V05-41-page8.txt: [('th-', 'th'), ('-', ''), ('-', ''), ('-', ''), ('Secretary-', 'Secretary')] LUH19131015-V05-41-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131022-V05-42-page2.txt: [("thenv'Witli-", "thenv'Witli"), ('mani-', 'mani'), ('-', '')] LUH19131022-V05-42-page3.txt: [('-on', 'on')] LUH19131022-V05-42-page4.txt: [('-', '')] LUH19131022-V05-42-page5.txt: [('-William', 'William'), ('-', ''), ('-gallon', 'gallon')] LUH19131022-V05-42-page7.txt: [('Secretary-', 'Secretary')] LUH19131022-V05-42-page8.txt: [('-roomed', 'roomed')] LUH19131029-V05-43-page2.txt: [('-', '')] LUH19131029-V05-43-page5.txt: [('Secretary-', 'Secretary')] LUH19131029-V05-43-page6.txt: [('-', '')] LUH19131029-V05-43-page7.txt: [('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', '')] LUH19131029-V05-43-page8.txt: [('-roomed', 'roomed')] LUH19131105-V05-44-page10.txt: [('Secretary-', 'Secretary'), ('Knott-', 'Knott')] LUH19131105-V05-44-page11.txt: [('peo-', 'peo')] LUH19131105-V05-44-page13.txt: [('-', '')] LUH19131105-V05-44-page16.txt: [('-', ''), ('-roomed', 'roomed'), ('-gallon', 'gallon'), ('-', '')] LUH19131105-V05-44-page2.txt: [('-', ''), ('Wanted-', 'Wanted')] LUH19131105-V05-44-page3.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc')] LUH19131105-V05-44-page4.txt: [('-', ''), ('-', ''), ('por-', 'por')] LUH19131105-V05-44-page5.txt: [('Decatur.-...--...-', 'Decatur.-...--...')] LUH19131105-V05-44-page6.txt: [('Elder-', 'Elder')] LUH19131105-V05-44-page7.txt: [('-', ''), ('-', '')] LUH19131105-V05-44-page8.txt: [('-i', 'i')] LUH19131105-V05-44-page9.txt: [('-', ''), ('-', '')] LUH19131112-V05-45-page2.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19131112-V05-45-page3.txt: [('-', '')] LUH19131112-V05-45-page4.txt: [('-', '')] LUH19131112-V05-45-page5.txt: [('-', ''), ('-', '')] LUH19131112-V05-45-page6.txt: [('Secretary-', 'Secretary')] LUH19131112-V05-45-page7.txt: [('-', ''), ('--', '-')] LUH19131112-V05-45-page8.txt: [('-', ''), ('-', ''), ('-roomed', 'roomed'), ('La-', 'La'), ('-family', 'family'), ('-', ''), ('-January', 'January'), ('-', ''), ('-', ''), ('-February', 'February'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131119-V05-46-page1.txt: [('"-', '"')] LUH19131119-V05-46-page2.txt: [('-', ''), ('-', '')] LUH19131119-V05-46-page3.txt: [('-', ''), ('them-', 'them'), ('-', ''), ('Secretary-', 'Secretary')] LUH19131119-V05-46-page5.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('CON-', 'CON'), ('cam-', 'cam')] LUH19131119-V05-46-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('cans-', 'cans'), ('-gallon', 'gallon')] LUH19131119-V05-46-page8.txt: [('-roomed', 'roomed'), ('-There', 'There'), ('La-', 'La')] LUH19131127-V05-47-page1.txt: [('-', '')] LUH19131127-V05-47-page3.txt: [('Mc-', 'Mc'), ('-', '')] LUH19131127-V05-47-page4.txt: [('"African-', '"African'), ('-', '')] LUH19131127-V05-47-page6.txt: [('broth-', 'broth'), ('-', '')] LUH19131127-V05-47-page7.txt: [('-', '')] LUH19131127-V05-47-page8.txt: [('-roomed', 'roomed'), ('-', ''), ('-', '')] LUH19131203-V05-48-page1.txt: [('-', ''), ('-', '')] LUH19131203-V05-48-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19131203-V05-48-page3.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('cans-', 'cans'), ('-gallon', 'gallon')] LUH19131203-V05-48-page4.txt: [('Brother-', 'Brother'), ('Bas-', 'Bas'), ('-', ''), ('Twen-', 'Twen')] LUH19131203-V05-48-page6.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19131203-V05-48-page7.txt: [('-the', 'the'), ('-roomed', 'roomed'), ('-', '')] LUH19131203-V05-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19131210-V05-49-page2.txt: [('-', '')] LUH19131210-V05-49-page4.txt: [('-', '')] LUH19131210-V05-49-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('--from', '-from')] LUH19131210-V05-49-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19131217-V05-50-page1.txt: [('-a', 'a'), ('-', ''), ('meet-', 'meet')] LUH19131217-V05-50-page11.txt: [('-n', 'n'), ('-February', 'February')] LUH19131217-V05-50-page12.txt: [('-', '')] LUH19131217-V05-50-page13.txt: [('CHARLES.-', 'CHARLES.'), ('-Geo.', 'Geo.'), ('-', ''), ('SAWSVILLE.-', 'SAWSVILLE.'), ('HOGAN.-', 'HOGAN.'), ('Bar-', 'Bar')] LUH19131217-V05-50-page15.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-i', 'i')] LUH19131217-V05-50-page16.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19131217-V05-50-page2.txt: [('--n', '-n'), ('-', '')] LUH19131217-V05-50-page3.txt: [('-', '')] LUH19131217-V05-50-page4.txt: [('bath-', 'bath'), ('-or', 'or'), ('-', ''), ('in-', 'in')] LUH19131217-V05-50-page6.txt: [('Mc-', 'Mc'), ('Secretary-', 'Secretary')] LUH19131224-V05-51-page1.txt: [('Secretary-', 'Secretary')] LUH19131224-V05-51-page3.txt: [('-', ''), ('-', ''), ('-the', 'the'), ('-', '')] LUH19131224-V05-51-page4.txt: [('-', '')] LUH19131224-V05-51-page5.txt: [('-', '')] LUH19131224-V05-51-page6.txt: [('Rapids..-', 'Rapids..')] LUH19131224-V05-51-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', '')] LUH19140107-V06-01-page1.txt: [('-', ''), ('-', '')] LUH19140107-V06-01-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Con-', 'Con'), ('-', ''), ('-', ''), ('-', '')] LUH19140107-V06-01-page3.txt: [('Secretary-', 'Secretary'), ('confidently-', 'confidently')] LUH19140107-V06-01-page4.txt: [('-', '')] LUH19140107-V06-01-page7.txt: [('-', ''), ('us.-', 'us.'), ('-', ''), ('-', '')] LUH19140107-V06-01-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19140114-V06-02-page4.txt: [('-', '')] LUH19140114-V06-02-page5.txt: [('-', '')] LUH19140114-V06-02-page6.txt: [('-', '')] LUH19140114-V06-02-page7.txt: [('-can', 'can'), ('-can', 'can'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19140121-V06-03-page1.txt: [('-', ''), ('--', '-')] LUH19140121-V06-03-page3.txt: [('Sabbath-', 'Sabbath')] LUH19140121-V06-03-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140121-V06-03-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140121-V06-03-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140121-V06-03-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-can', 'can'), ('F-', 'F'), ('Chi-', 'Chi'), ('J-', 'J')] LUH19140121-V06-03-page8.txt: [('-puzzling', 'puzzling'), ('froth-', 'froth')] LUH19140128-V06-04-page5.txt: [('-', '')] LUH19140128-V06-04-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('Twin-', 'Twin'), ('-', '')] LUH19140128-V06-04-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-can', 'can'), ('-can', 'can'), ('-', ''), ('-', ''), ('J-', 'J')] LUH19140204-V06-05-page2.txt: [('..--', '..-')] LUH19140204-V06-05-page3.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19140204-V06-05-page4.txt: [('-hundred', 'hundred'), ('-', ''), ('-', ''), ('-Bert', 'Bert')] LUH19140204-V06-05-page5.txt: [('-', '')] LUH19140204-V06-05-page6.txt: [('-', '')] LUH19140204-V06-05-page8.txt: [('F-', 'F'), ('-', ''), ('-can', 'can')] LUH19140211-V06-06-page1.txt: [('Address-', 'Address'), ('-', ''), ('-', ''), ('-', '')] LUH19140211-V06-06-page2.txt: [('-at', 'at'), ('influence-', 'influence'), ('Congress.-', 'Congress.'), ('-are', 'are'), ('-of', 'of'), ('-', ''), ('-for-', 'for-'), ('-Day', 'Day'), ('at-', 'at'), ('-', '')] LUH19140211-V06-06-page3.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19140211-V06-06-page4.txt: [('-', '')] LUH19140211-V06-06-page5.txt: [('-', '')] LUH19140211-V06-06-page6.txt: [('-earmersburg', 'earmersburg')] LUH19140211-V06-06-page7.txt: [('-acre', 'acre'), ('-can', 'can'), ('-can', 'can'), ('-', '')] LUH19140218-V06-07-page2.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', '')] LUH19140218-V06-07-page5.txt: [('the-', 'the')] LUH19140218-V06-07-page6.txt: [('-', ''), ('-', '')] LUH19140218-V06-07-page8.txt: [('-', ''), ('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-', ''), ('-can', 'can')] LUH19140225-V06-08-page1.txt: [('-', ''), ('-', '')] LUH19140225-V06-08-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140225-V06-08-page3.txt: [('-', ''), ('-', '')] LUH19140225-V06-08-page4.txt: [('-', '')] LUH19140225-V06-08-page5.txt: [('-The', 'The')] LUH19140225-V06-08-page7.txt: [('-', ''), ('-', '')] LUH19140225-V06-08-page8.txt: [('-gal.', 'gal.'), ('-', ''), ('M-', 'M'), ('M-', 'M')] LUH19140304-V06-09-page1.txt: [('CONFER-', 'CONFER')] LUH19140304-V06-09-page2.txt: [('-', '')] LUH19140304-V06-09-page3.txt: [('-', ''), ('-', ''), ('-trust', 'trust')] LUH19140304-V06-09-page4.txt: [('-', '')] LUH19140304-V06-09-page6.txt: [('-', ''), ('Union-', 'Union')] LUH19140304-V06-09-page7.txt: [('-', ''), ('I-', 'I')] LUH19140304-V06-09-page8.txt: [('-', ''), ('M-', 'M'), ('M-', 'M')] LUH19140311-V06-10-page2.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19140311-V06-10-page3.txt: [('-', '')] LUH19140311-V06-10-page4.txt: [('-LL.', 'LL.'), ('-', '')] LUH19140311-V06-10-page5.txt: [('-', '')] LUH19140311-V06-10-page6.txt: [('-earn', 'earn'), ('M-', 'M')] LUH19140311-V06-10-page7.txt: [('-IR.', 'IR.'), ('-gal.', 'gal.')] LUH19140311-V06-10-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140318-V06-11-page2.txt: [('-', ''), ('-', ''), ('M-', 'M')] LUH19140318-V06-11-page3.txt: [('--.-....', '-.-....'), ('-', '')] LUH19140318-V06-11-page4.txt: [('-', '')] LUH19140318-V06-11-page5.txt: [('-are', 'are')] LUH19140318-V06-11-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-emphasizing', 'emphasizing'), ('-Only', 'Only')] LUH19140318-V06-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-', '')] LUH19140325-V06-12-page2.txt: [('-', '')] LUH19140325-V06-12-page3.txt: [('-', '')] LUH19140325-V06-12-page5.txt: [('-', ''), ('..---', '..--'), ('-', ''), ('--', '-'), ('-', '')] LUH19140325-V06-12-page6.txt: [('-', ''), ('-years', 'years'), ('-union', 'union'), ('-the', 'the')] LUH19140325-V06-12-page7.txt: [('----', '---'), ('-.--w........', '.--w........'), ('GC-', 'GC')] LUH19140325-V06-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-can', 'can'), ('-', '')] LUH19140401-V06-13-page1.txt: [('-', '')] LUH19140401-V06-13-page2.txt: [('gather-', 'gather'), ('-', '')] LUH19140401-V06-13-page3.txt: [('-', ''), ('Hob-', 'Hob')] LUH19140401-V06-13-page4.txt: [('-', ''), ('-', '')] LUH19140401-V06-13-page5.txt: [('-', ''), ('Baptist-', 'Baptist')] LUH19140401-V06-13-page6.txt: [('-', ''), ('price-', 'price')] LUH19140401-V06-13-page7.txt: [('-', '')] LUH19140401-V06-13-page8.txt: [('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-can', 'can'), ('-', '')] LUH19140408-V06-14-page1.txt: [('-', '')] LUH19140408-V06-14-page4.txt: [('-', '')] LUH19140408-V06-14-page5.txt: [('king-', 'king')] LUH19140408-V06-14-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140408-V06-14-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('..-.-', '..-.')] LUH19140408-V06-14-page8.txt: [('A-', 'A'), ('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-can', 'can'), ('begin-', 'begin')] LUH19140415-V06-15-page1.txt: [('-', '')] LUH19140415-V06-15-page6.txt: [('-', '')] LUH19140415-V06-15-page7.txt: [('---', '--')] LUH19140415-V06-15-page8.txt: [('A-', 'A'), ('J-', 'J'), ('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140422-V06-16-page1.txt: [('-of', 'of'), ('-', '')] LUH19140422-V06-16-page10.txt: [('-', ''), ('-.-', '.-')] LUH19140422-V06-16-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140422-V06-16-page13.txt: [('--', '-')] LUH19140422-V06-16-page15.txt: [('-', '')] LUH19140422-V06-16-page16.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140422-V06-16-page3.txt: [('-', '')] LUH19140422-V06-16-page4.txt: [('-', ''), ('-of', 'of')] LUH19140422-V06-16-page5.txt: [('-who', 'who')] LUH19140422-V06-16-page8.txt: [('-', ''), ('-', '')] LUH19140429-V06-17-page13.txt: [('-', '')] LUH19140429-V06-17-page14.txt: [('-', ''), ('Legislat-', 'Legislat')] LUH19140429-V06-17-page15.txt: [('-', '')] LUH19140429-V06-17-page16.txt: [('-and', 'and'), ('-', ''), ('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140429-V06-17-page2.txt: [('preachers-', 'preachers')] LUH19140429-V06-17-page5.txt: [('-', ''), ('-', '')] LUH19140429-V06-17-page6.txt: [('-an', 'an')] LUH19140429-V06-17-page7.txt: [('con-', 'con')] LUH19140429-V06-17-page8.txt: [('-', '')] LUH19140506-V06-18-page1.txt: [('-', ''), ('con-', 'con'), ('-', '')] LUH19140506-V06-18-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140506-V06-18-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140506-V06-18-page4.txt: [('-', ''), ('-', '')] LUH19140506-V06-18-page5.txt: [('-', ''), ('-', '')] LUH19140506-V06-18-page6.txt: [('-', '')] LUH19140506-V06-18-page7.txt: [('-', '')] LUH19140506-V06-18-page8.txt: [('sur-', 'sur'), ('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('-', ''), ('-', '')] LUH19140513-V06-19-page1.txt: [('high-', 'high')] LUH19140513-V06-19-page11.txt: [('Danish-', 'Danish')] LUH19140513-V06-19-page13.txt: [('-', ''), ('-', ''), ('usual-', 'usual'), ('-', ''), ('-', '')] LUH19140513-V06-19-page14.txt: [('-', '')] LUH19140513-V06-19-page15.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('.-', '.')] LUH19140513-V06-19-page16.txt: [('pur-', 'pur')] LUH19140513-V06-19-page2.txt: [('-', ''), ('-', '')] LUH19140513-V06-19-page3.txt: [('humbl-', 'humbl'), ('-', ''), ('-', '')] LUH19140513-V06-19-page4.txt: [('-', '')] LUH19140513-V06-19-page5.txt: [('-', ''), ('-', '')] LUH19140513-V06-19-page6.txt: [('-', ''), ('-no', 'no')] LUH19140513-V06-19-page8.txt: [('-', '')] LUH19140526-V06-20-page2.txt: [('-', ''), ('import-', 'import')] LUH19140526-V06-20-page3.txt: [('-', ''), ('-', '')] LUH19140526-V06-20-page4.txt: [('-', '')] LUH19140526-V06-20-page5.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('Ad-', 'Ad')] LUH19140526-V06-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140527-V06-21-page1.txt: [('-', '')] LUH19140527-V06-21-page2.txt: [('sup-', 'sup'), ('Dana........---', 'Dana........--')] LUH19140527-V06-21-page3.txt: [('-', '')] LUH19140527-V06-21-page4.txt: [('-', ''), ('mission-', 'mission'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140527-V06-21-page5.txt: [('-', ''), ('-', '')] LUH19140527-V06-21-page7.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140527-V06-21-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140603-V06-22-page1.txt: [('to-', 'to')] LUH19140603-V06-22-page2.txt: [('-', ''), ('-', '')] LUH19140603-V06-22-page3.txt: [('-', '')] LUH19140603-V06-22-page4.txt: [('-', ''), ('-at', 'at')] LUH19140603-V06-22-page6.txt: [('-UNION', 'UNION'), ('Mc-', 'Mc')] LUH19140603-V06-22-page7.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140603-V06-22-page8.txt: [('Value-', 'Value'), ('Hour-', 'Hour'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140610-V06-23-page2.txt: [('-me', 'me')] LUH19140610-V06-23-page5.txt: [('time-', 'time')] LUH19140610-V06-23-page6.txt: [('t"BET-', 't"BET'), ('-', ''), ('-', '')] LUH19140610-V06-23-page7.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('White.--', 'White.-'), ('-', '')] LUH19140610-V06-23-page8.txt: [('Hour-', 'Hour'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140617-V06-24-page2.txt: [('Bloom-', 'Bloom')] LUH19140617-V06-24-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140617-V06-24-page4.txt: [('-', '')] LUH19140617-V06-24-page5.txt: [('Course-', 'Course'), ('.-', '.')] LUH19140617-V06-24-page6.txt: [('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('"BET-', '"BET'), ('-', ''), ('-', '')] LUH19140617-V06-24-page7.txt: [('-', '')] LUH19140617-V06-24-page8.txt: [('-', ''), ('-', ''), ('Hour-', 'Hour'), ('-almost', 'almost'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140624-V06-25-page1.txt: [('-', ''), ('-', '')] LUH19140624-V06-25-page2.txt: [('-', '')] LUH19140624-V06-25-page4.txt: [('-', '')] LUH19140624-V06-25-page6.txt: [('M.-', 'M.'), ('LEGG.-', 'LEGG.'), ('-Louise', 'Louise')] LUH19140624-V06-25-page7.txt: [('-', '')] LUH19140624-V06-25-page8.txt: [('-', ''), ('-', ''), ('J-', 'J'), ('-lb.', 'lb.'), ('-can', 'can'), ('Hour-', 'Hour'), ('Mc-', 'Mc'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140701-V06-26-page1.txt: [('-name', 'name')] LUH19140701-V06-26-page2.txt: [('-', ''), ('-', '')] LUH19140701-V06-26-page3.txt: [('-', '')] LUH19140701-V06-26-page4.txt: [('-', ''), ('-we', 'we'), ('-', '')] LUH19140701-V06-26-page5.txt: [('-', ''), ('-ayer', 'ayer'), ('-', ''), ('-', '')] LUH19140701-V06-26-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('Train-', 'Train')] LUH19140701-V06-26-page7.txt: [('--.BF', '-.BF'), ('set-', 'set'), ('-lb.', 'lb.'), ('-can', 'can')] LUH19140701-V06-26-page8.txt: [('Revela-', 'Revela'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140708-V06-27-page1.txt: [('-', ''), ('-', '')] LUH19140708-V06-27-page3.txt: [('South-', 'South')] LUH19140708-V06-27-page4.txt: [('therefore.-', 'therefore.'), ('-', '')] LUH19140708-V06-27-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140708-V06-27-page7.txt: [('-', '')] LUH19140708-V06-27-page8.txt: [('-', '')] LUH19140715-V06-28-page3.txt: [('-inspire', 'inspire')] LUH19140715-V06-28-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140715-V06-28-page5.txt: [('-', ''), ('-', '')] LUH19140715-V06-28-page6.txt: [('-', '')] LUH19140715-V06-28-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140715-V06-28-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal', 'gal'), ('-can', 'can'), ('me--', 'me-'), ('-', ''), ('-', ''), ('-', ''), ('prayer-', 'prayer')] LUH19140722-V06-29-page2.txt: [('-', '')] LUH19140722-V06-29-page3.txt: [('-', '')] LUH19140722-V06-29-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140722-V06-29-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('---', '--')] LUH19140722-V06-29-page7.txt: [('-can', 'can'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', '')] LUH19140729-V06-30-page1.txt: [('Conver-', 'Conver'), ('-', '')] LUH19140729-V06-30-page3.txt: [('-', ''), ('-', '')] LUH19140729-V06-30-page4.txt: [('-', '')] LUH19140729-V06-30-page5.txt: [('-', ''), ('-other', 'other')] LUH19140729-V06-30-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-can', 'can'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19140805-V06-31-page1.txt: [('-', ''), ('-', '')] LUH19140805-V06-31-page10.txt: [('-', '')] LUH19140805-V06-31-page12.txt: [('year-', 'year'), ('in-', 'in')] LUH19140805-V06-31-page13.txt: [('goals-', 'goals')] LUH19140805-V06-31-page14.txt: [('-', ''), ('-', '')] LUH19140805-V06-31-page15.txt: [('-', ''), ('-', ''), ('-', ''), ('-acre', 'acre'), ('-gallon', 'gallon'), ('-can', 'can'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19140805-V06-31-page16.txt: [('-', '')] LUH19140805-V06-31-page2.txt: [('-', '')] LUH19140805-V06-31-page4.txt: [('-', ''), ('-', '')] LUH19140805-V06-31-page5.txt: [('-', '')] LUH19140805-V06-31-page6.txt: [('Will"-', 'Will"')] LUH19140812-V06-32-page2.txt: [('-', ''), ('-', '')] LUH19140812-V06-32-page3.txt: [('-', '')] LUH19140812-V06-32-page5.txt: [('Mc-', 'Mc'), ('-', ''), ('-members', 'members')] LUH19140812-V06-32-page8.txt: [('-gallon', 'gallon'), ('-can', 'can'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-now', 'now'), ('-', '')] LUH19140819-V06-33-page11.txt: [('-', ''), ('-', '')] LUH19140819-V06-33-page13.txt: [('-', '')] LUH19140819-V06-33-page4.txt: [('-', '')] LUH19140826-V06-34-page1.txt: [('-', ''), ('-', '')] LUH19140826-V06-34-page3.txt: [('-', ''), ('---', '--')] LUH19140826-V06-34-page4.txt: [('-and', 'and'), ('-', '')] LUH19140826-V06-34-page5.txt: [('-', ''), ('-', '')] LUH19140826-V06-34-page7.txt: [('-gal.', 'gal.'), ('-can', 'can'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-Royalton', 'Royalton'), ('-', '')] LUH19140826-V06-34-page8.txt: [('-', '')] LUH19140902-V06-35-page3.txt: [('-anew', 'anew')] LUH19140902-V06-35-page5.txt: [('-surgical', 'surgical')] LUH19140902-V06-35-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140902-V06-35-page7.txt: [('-William', 'William'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('Louis-', 'Louis')] LUH19140909-V06-36-page1.txt: [('-', ''), ('-', '')] LUH19140909-V06-36-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19140909-V06-36-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-officers', 'officers'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140909-V06-36-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140909-V06-36-page7.txt: [('-', '')] LUH19140909-V06-36-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', '')] LUH19140916-V06-37-page2.txt: [('-', '')] LUH19140916-V06-37-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140916-V06-37-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140916-V06-37-page6.txt: [('-', ''), ('-', '')] LUH19140916-V06-37-page7.txt: [('-', ''), ('-', '')] LUH19140916-V06-37-page8.txt: [('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19140923-V06-38-page4.txt: [('-', '')] LUH19140923-V06-38-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140923-V06-38-page7.txt: [('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', '')] LUH19140923-V06-38-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19140930-V06-39-page4.txt: [('-', ''), ('-', '')] LUH19140930-V06-39-page5.txt: [('-', '')] LUH19140930-V06-39-page6.txt: [('-', ''), ('.........-', '.........')] LUH19140930-V06-39-page7.txt: [('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19140930-V06-39-page8.txt: [('-', '')] LUH19141007-V06-40-page3.txt: [('-the', 'the')] LUH19141007-V06-40-page4.txt: [('-', '')] LUH19141007-V06-40-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141007-V06-40-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ques-', 'ques')] LUH19141007-V06-40-page7.txt: [('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141007-V06-40-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141015-V06-41-page1.txt: [('-eighth', 'eighth'), ('pass-', 'pass'), ('-', '')] LUH19141015-V06-41-page2.txt: [('men-', 'men'), ('-', ''), ('-', '')] LUH19141015-V06-41-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19141015-V06-41-page6.txt: [('-', '')] LUH19141015-V06-41-page7.txt: [('N-', 'N'), ('D-', 'D'), ('-J.', 'J.')] LUH19141015-V06-41-page8.txt: [('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141022-V06-42-page10.txt: [('-', '')] LUH19141022-V06-42-page11.txt: [('cre-', 'cre'), ('-', ''), ('-', '')] LUH19141022-V06-42-page12.txt: [('-', ''), ('-', ''), ('keep-', 'keep')] LUH19141022-V06-42-page13.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141022-V06-42-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141022-V06-42-page15.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141022-V06-42-page2.txt: [('-', '')] LUH19141022-V06-42-page3.txt: [('-', ''), ('-', ''), ('N-', 'N'), ('D-', 'D')] LUH19141022-V06-42-page5.txt: [('visit-', 'visit')] LUH19141022-V06-42-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141022-V06-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141028-V06-43-page1.txt: [('-', ''), ('-a', 'a')] LUH19141028-V06-43-page3.txt: [('-', ''), ('-', '')] LUH19141028-V06-43-page4.txt: [('-', '')] LUH19141028-V06-43-page6.txt: [('-', '')] LUH19141028-V06-43-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('N-', 'N'), ('D-', 'D')] LUH19141028-V06-43-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141104-V06-44-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19141104-V06-44-page3.txt: [('-', '')] LUH19141104-V06-44-page4.txt: [('-', '')] LUH19141104-V06-44-page5.txt: [('-E.', 'E.'), ('-', '')] LUH19141104-V06-44-page6.txt: [('-', '')] LUH19141104-V06-44-page7.txt: [('N-', 'N'), ('D-', 'D')] LUH19141104-V06-44-page8.txt: [('-gal.', 'gal.')] LUH19141111-V06-45-page1.txt: [('-', '')] LUH19141111-V06-45-page5.txt: [('-', '')] LUH19141111-V06-45-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19141111-V06-45-page7.txt: [('D-', 'D'), ('-IC', 'IC'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141111-V06-45-page8.txt: [('year-', 'year')] LUH19141118-V06-46-page10.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141118-V06-46-page12.txt: [('Extra-', 'Extra'), ('-"Turkey', '"Turkey')] LUH19141118-V06-46-page2.txt: [('-', '')] LUH19141118-V06-46-page4.txt: [('-', ''), ('-', ''), ('-...', '...'), ('-', ''), ('-', '')] LUH19141118-V06-46-page5.txt: [('D-', 'D'), ('-', ''), ('com-', 'com')] LUH19141118-V06-46-page7.txt: [('-', '')] LUH19141118-V06-46-page8.txt: [('-', '')] LUH19141118-V06-46-page9.txt: [('-Cedar', 'Cedar'), ('-Sarah', 'Sarah'), ('-Carlisle', 'Carlisle'), ('-Grand', 'Grand'), ('-Shelby', 'Shelby'), ('-Horace', 'Horace'), ('-I-Those', 'I-Those'), ('-Doris', 'Doris'), ('-', ''), ('-Sister', 'Sister'), ('-', '')] LUH19141125-V06-47-page1.txt: [('-', ''), ('CoVtkt-', 'CoVtkt'), ('-of', 'of'), ('-', ''), ('-', ''), ('almoSt--', 'almoSt-'), ('-', ''), ("-'a", "'a"), ('-', ''), ('-', ''), ('-CHRISTIAN-', 'CHRISTIAN-'), ('-', ''), ('-', '')] LUH19141125-V06-47-page4.txt: [('On-', 'On'), ('--and', '-and'), ('-', ''), ('Hartford-', 'Hartford'), ('-', ''), ('-', ''), ('-had', 'had')] LUH19141125-V06-47-page5.txt: [('-', ''), ('-in', 'in'), ('-', ''), ('-reporting', 'reporting')] LUH19141125-V06-47-page6.txt: [('-', ''), ('-', '')] LUH19141125-V06-47-page7.txt: [('-', ''), ('Clover-', 'Clover'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19141125-V06-47-page8.txt: [('-', ''), ('-', '')] LUH19141202-V06-48-page1.txt: [('-', '')] LUH19141202-V06-48-page3.txt: [('-', ''), ('-Fisher', 'Fisher')] LUH19141202-V06-48-page4.txt: [('-', ''), ('D-', 'D'), ('-', ''), ('-', '')] LUH19141202-V06-48-page5.txt: [('convention.-', 'convention.'), ('-', ''), ('-', ''), ('-', '')] LUH19141202-V06-48-page7.txt: [('Clover-', 'Clover'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('-gal.', 'gal.')] LUH19141202-V06-48-page8.txt: [('-', ''), ('-Lake', 'Lake')] LUH19141209-V06-49-page2.txt: [('-', ''), ('-', '')] LUH19141209-V06-49-page3.txt: [('-', ''), ('-', '')] LUH19141209-V06-49-page5.txt: [('-', ''), ('-hand', 'hand'), ('-', '')] LUH19141209-V06-49-page6.txt: [('-', ''), ('D-', 'D'), ('-', '')] LUH19141209-V06-49-page8.txt: [('D-', 'D'), ('-', ''), ('-gal.', 'gal.'), ('Clover-', 'Clover'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('-', '')] LUH19141216-V06-50-page2.txt: [('-', '')] LUH19141216-V06-50-page3.txt: [('-', ''), ('-', '')] LUH19141216-V06-50-page5.txt: [('-', ''), ('Forty-', 'Forty')] LUH19141216-V06-50-page6.txt: [('-', '')] LUH19141216-V06-50-page7.txt: [('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('D-', 'D'), ('-gal.', 'gal.'), ('D-', 'D'), ('-', '')] LUH19141223-V06-51-page1.txt: [('sub-', 'sub')] LUH19141223-V06-51-page2.txt: [('-', '')] LUH19141223-V06-51-page4.txt: [('-', ''), ('-', '')] LUH19141223-V06-51-page5.txt: [('---', '--'), ('---', '--')] LUH19141223-V06-51-page6.txt: [('D-', 'D')] LUH19141223-V06-51-page7.txt: [('-man', 'man'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('Clover-', 'Clover'), ('one-gal-', 'one-gal')] LUH19141223-V06-51-page8.txt: [('-', '')] LUH19150106-V07-01-page1.txt: [('-', ''), ('-', '')] LUH19150106-V07-01-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150106-V07-01-page4.txt: [('-', '')] LUH19150106-V07-01-page5.txt: [('-', '')] LUH19150106-V07-01-page7.txt: [('-', '')] LUH19150106-V07-01-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('Clover-', 'Clover'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19150113-V07-02-page2.txt: [('-', ''), ('-', '')] LUH19150113-V07-02-page3.txt: [('-', '')] LUH19150113-V07-02-page4.txt: [('-', ''), ('-good', 'good')] LUH19150113-V07-02-page5.txt: [('-', '')] LUH19150113-V07-02-page7.txt: [('Clover-', 'Clover'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('D-', 'D'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19150120-V07-03-page2.txt: [('-', '')] LUH19150120-V07-03-page3.txt: [('-', '')] LUH19150120-V07-03-page4.txt: [('-', ''), ('--', '-')] LUH19150120-V07-03-page6.txt: [('-', '')] LUH19150120-V07-03-page7.txt: [('-the', 'the')] LUH19150120-V07-03-page8.txt: [('Clover-', 'Clover'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('Oil-', 'Oil'), ('--', '-'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F'), ('-', '')] LUH19150127-V07-04-page10.txt: [('-', '')] LUH19150127-V07-04-page11.txt: [('LAKE-', 'LAKE')] LUH19150127-V07-04-page13.txt: [('-Sarah', 'Sarah'), ('-Julius', 'Julius'), ('-Ind.', 'Ind.')] LUH19150127-V07-04-page14.txt: [('March-', 'March')] LUH19150127-V07-04-page15.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('Oil-', 'Oil'), ('-', ''), ('-', '')] LUH19150127-V07-04-page3.txt: [('establish-', 'establish')] LUH19150127-V07-04-page4.txt: [('-', '')] LUH19150127-V07-04-page5.txt: [('-', ''), ('-', '')] LUH19150127-V07-04-page7.txt: [('-', ''), ('-', '')] LUH19150127-V07-04-page8.txt: [('-Sturgis', 'Sturgis'), ('-Trufant', 'Trufant')] LUH19150203-V07-05-page1.txt: [('not"-', 'not"'), ('-five', 'five'), ('-', '')] LUH19150203-V07-05-page2.txt: [('-', ''), ('-', '')] LUH19150203-V07-05-page4.txt: [('to-', 'to')] LUH19150203-V07-05-page7.txt: [('-', ''), ('...-', '...'), ('-', ''), ('-', '')] LUH19150203-V07-05-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('Oil-', 'Oil')] LUH19150210-V07-06-page1.txt: [('-', '')] LUH19150210-V07-06-page2.txt: [('-laid', 'laid')] LUH19150210-V07-06-page3.txt: [('.--', '.-'), ('Penn-', 'Penn')] LUH19150210-V07-06-page6.txt: [('-', '')] LUH19150210-V07-06-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-cans', 'cans'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150210-V07-06-page8.txt: [('history-', 'history')] LUH19150217-V07-07-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150217-V07-07-page4.txt: [('-', '')] LUH19150217-V07-07-page5.txt: [('-', '')] LUH19150217-V07-07-page6.txt: [('-', ''), ('-', '')] LUH19150217-V07-07-page7.txt: [('New-', 'New'), ('-Died', 'Died'), ('-Charles', 'Charles')] LUH19150217-V07-07-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150224-V07-08-page1.txt: [('Anti-', 'Anti')] LUH19150224-V07-08-page2.txt: [('demonstra-', 'demonstra')] LUH19150224-V07-08-page3.txt: [('-', '')] LUH19150224-V07-08-page4.txt: [('-', '')] LUH19150224-V07-08-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150224-V07-08-page7.txt: [('-', ''), ('-', ''), ('-gal', 'gal'), ('-gal.', 'gal.'), ('-cans', 'cans'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19150303-V07-09-page1.txt: [('-', '')] LUH19150303-V07-09-page2.txt: [('-', '')] LUH19150303-V07-09-page5.txt: [('-page', 'page'), ('-', '')] LUH19150303-V07-09-page6.txt: [('-promptly', 'promptly')] LUH19150303-V07-09-page7.txt: [('-gal', 'gal'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150303-V07-09-page8.txt: [('-', '')] LUH19150310-V07-10-page3.txt: [('-', '')] LUH19150310-V07-10-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150310-V07-10-page5.txt: [('-', ''), ('-of', 'of'), ('-', ''), ('confer-', 'confer')] LUH19150310-V07-10-page6.txt: [('-', '')] LUH19150310-V07-10-page7.txt: [('------', '-----')] LUH19150310-V07-10-page8.txt: [('-cans', 'cans'), ('-gal', 'gal'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150317-V07-11-page3.txt: [('-', '')] LUH19150317-V07-11-page6.txt: [('-', '')] LUH19150317-V07-11-page8.txt: [('May-', 'May'), ('-Seventh-day', 'Seventh-day'), ('-', '')] LUH19150324-V07-12-page1.txt: [('-', '')] LUH19150324-V07-12-page10.txt: [('-', ''), ('-', '')] LUH19150324-V07-12-page11.txt: [('-', '')] LUH19150324-V07-12-page12.txt: [('-', '')] LUH19150324-V07-12-page15.txt: [('-Indiana', 'Indiana'), ('-', ''), ('-cans', 'cans'), ('-gal', 'gal'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150324-V07-12-page16.txt: [('-', '')] LUH19150324-V07-12-page2.txt: [('-', '')] LUH19150324-V07-12-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150324-V07-12-page6.txt: [('-', '')] LUH19150324-V07-12-page9.txt: [('-', '')] LUH19150331-V07-13-page3.txt: [('-', '')] LUH19150331-V07-13-page7.txt: [('-', ''), ('GC-', 'GC')] LUH19150331-V07-13-page8.txt: [('-gal', 'gal'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F')] LUH19150407-V07-14-page2.txt: [('-', ''), ('-', ''), ('pos-', 'pos')] LUH19150407-V07-14-page3.txt: [('Ed-', 'Ed')] LUH19150407-V07-14-page5.txt: [('-', ''), ('-', '')] LUH19150407-V07-14-page6.txt: [('-', '')] LUH19150407-V07-14-page8.txt: [('-cans', 'cans'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150414-V07-15-page3.txt: [('-', ''), ('----', '---')] LUH19150414-V07-15-page4.txt: [('-', '')] LUH19150414-V07-15-page7.txt: [('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F'), ('-gal', 'gal'), ('-gal.', 'gal.')] LUH19150421-V07-16-page1.txt: [('-', ''), ('plan-', 'plan')] LUH19150421-V07-16-page2.txt: [('-', '')] LUH19150421-V07-16-page3.txt: [('ex-', 'ex')] LUH19150421-V07-16-page4.txt: [('-The', 'The')] LUH19150421-V07-16-page6.txt: [('-', ''), ('-', '')] LUH19150421-V07-16-page7.txt: [('-', '')] LUH19150421-V07-16-page8.txt: [('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('F-', 'F'), ('-gal', 'gal'), ('-gal.', 'gal.')] LUH19150428-V07-17-page1.txt: [('new-', 'new'), ('-butter', 'butter'), ('-', ''), ('distrib-', 'distrib')] LUH19150428-V07-17-page2.txt: [('-', '')] LUH19150428-V07-17-page4.txt: [('-', ''), ('-', '')] LUH19150428-V07-17-page5.txt: [('-', ''), ('-', '')] LUH19150428-V07-17-page6.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-lb.', 'lb.'), ('-lb.', 'lb.')] LUH19150428-V07-17-page7.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('A-', 'A'), ('commend-', 'commend')] LUH19150505-V07-18-page4.txt: [('-', ''), ('-', '')] LUH19150505-V07-18-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150505-V07-18-page7.txt: [('-', ''), ('-', '')] LUH19150505-V07-18-page8.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-cans', 'cans'), ('-', '')] LUH19150512-V07-19-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150512-V07-19-page3.txt: [('-', '')] LUH19150512-V07-19-page5.txt: [('-', '')] LUH19150512-V07-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19150519-V07-20-page1.txt: [('distress-', 'distress')] LUH19150519-V07-20-page2.txt: [('-', '')] LUH19150519-V07-20-page3.txt: [('-', ''), ('-', '')] LUH19150519-V07-20-page4.txt: [('-', '')] LUH19150519-V07-20-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150519-V07-20-page6.txt: [('-', '')] LUH19150519-V07-20-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Nathaniel', 'Nathaniel'), ('-Mrs.', 'Mrs.'), ('-William', 'William'), ('-Susie', 'Susie')] LUH19150519-V07-20-page8.txt: [('.-', '.')] LUH19150526-V07-21-page1.txt: [('-', '')] LUH19150526-V07-21-page3.txt: [('-', ''), ('-', '')] LUH19150526-V07-21-page4.txt: [('-', '')] LUH19150526-V07-21-page5.txt: [('-', '')] LUH19150526-V07-21-page7.txt: [('-he', 'he'), ('-cans', 'cans'), ('-room', 'room'), ('-room', 'room'), ('-gal.', 'gal.'), ('-gal.', 'gal.')] LUH19150526-V07-21-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150602-V07-22-page1.txt: [('-', '')] LUH19150602-V07-22-page14.txt: [('Sait-', 'Sait')] LUH19150602-V07-22-page4.txt: [('pro-', 'pro')] LUH19150602-V07-22-page8.txt: [('effi-', 'effi')] LUH19150609-V07-23-page1.txt: [('senti-', 'senti')] LUH19150609-V07-23-page2.txt: [('-', '')] LUH19150609-V07-23-page3.txt: [('-', ''), ('-', '')] LUH19150609-V07-23-page4.txt: [('-', '')] LUH19150609-V07-23-page5.txt: [('-', '')] LUH19150609-V07-23-page8.txt: [('-room', 'room'), ('-room', 'room'), ('-gal.', 'gal.'), ('-gal.', 'gal.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Marley', 'Marley')] LUH19150616-V07-24-page1.txt: [('-', '')] LUH19150616-V07-24-page2.txt: [('-', ''), ('-others', 'others')] LUH19150616-V07-24-page3.txt: [('-', ''), ('-', ''), ('soul-', 'soul')] LUH19150616-V07-24-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150616-V07-24-page7.txt: [('-gal.', 'gal.'), ('-from', 'from'), ('-gal.', 'gal.'), ('-cans', 'cans'), ('Blos-', 'Blos'), ('-', ''), ('secretary-treas-', 'secretary-treas'), ('af-', 'af'), ('-', ''), ('--', '-')] LUH19150616-V07-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150623-V07-25-page1.txt: [('-', ''), ('Spanish-', 'Spanish'), ('ex-', 'ex')] LUH19150623-V07-25-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150623-V07-25-page3.txt: [('-', ''), ('-', '')] LUH19150623-V07-25-page6.txt: [('GRESS.-', 'GRESS.'), ('COX.-', 'COX.')] LUH19150623-V07-25-page7.txt: [('-gal.', 'gal.'), ('-gal.', 'gal.'), ('appreci-', 'appreci')] LUH19150623-V07-25-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150630-V07-26-page1.txt: [('Brit-', 'Brit')] LUH19150630-V07-26-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150630-V07-26-page5.txt: [('hers-', 'hers')] LUH19150630-V07-26-page6.txt: [('-cans', 'cans'), ('-out', 'out')] LUH19150630-V07-26-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150630-V07-26-page8.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150707-V07-27-page2.txt: [('-', ''), ('-', '')] LUH19150707-V07-27-page4.txt: [('-', '')] LUH19150707-V07-27-page5.txt: [('-', '')] LUH19150707-V07-27-page6.txt: [('-', ''), ('-', '')] LUH19150707-V07-27-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150707-V07-27-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] LUH19150714-V07-28-page1.txt: [('F.-', 'F.')] LUH19150714-V07-28-page5.txt: [('-', '')] LUH19150714-V07-28-page6.txt: [('-cans', 'cans')] LUH19150714-V07-28-page7.txt: [('-D', 'D')] LUH19150714-V07-28-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150721-V07-29-page3.txt: [('attendance-', 'attendance'), ('Dan-', 'Dan'), ('-', '')] LUH19150721-V07-29-page5.txt: [('-', ''), ('-', '')] LUH19150721-V07-29-page6.txt: [('-', ''), ('-', '')] LUH19150721-V07-29-page8.txt: [('-', ''), ('-January', 'January'), ('RENT.-', 'RENT.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150728-V07-30-page4.txt: [('-', '')] LUH19150728-V07-30-page5.txt: [('-', ''), ('-', '')] LUH19150728-V07-30-page7.txt: [('-.', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150728-V07-30-page8.txt: [('-', ''), ('-cans', 'cans'), ('SALE.-', 'SALE.'), ('-', ''), ('-', ''), ('-', '')] LUH19150804-V07-31-page1.txt: [('Mac-', 'Mac')] LUH19150804-V07-31-page4.txt: [('-', '')] LUH19150804-V07-31-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150804-V07-31-page6.txt: [('-', ''), ('-', '')] LUH19150804-V07-31-page7.txt: [('---', '--'), ('-....BF', '....BF')] LUH19150804-V07-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150811-V07-32-page1.txt: [('-', '')] LUH19150811-V07-32-page13.txt: [('Temper-', 'Temper')] LUH19150811-V07-32-page14.txt: [('estab-', 'estab')] LUH19150811-V07-32-page15.txt: [('---.', '--.'), ('-', '')] LUH19150811-V07-32-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150811-V07-32-page2.txt: [('on-', 'on'), ('-', '')] LUH19150811-V07-32-page3.txt: [('social-', 'social')] LUH19150811-V07-32-page4.txt: [('-is', 'is')] LUH19150811-V07-32-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150811-V07-32-page7.txt: [('-', ''), ('-', '')] LUH19150811-V07-32-page9.txt: [('-', '')] LUH19150818-V07-33-page1.txt: [('mana-', 'mana')] LUH19150818-V07-33-page10.txt: [('-', '')] LUH19150818-V07-33-page11.txt: [('-', ''), ('-', '')] LUH19150818-V07-33-page12.txt: [('-', '')] LUH19150818-V07-33-page13.txt: [('----', '---')] LUH19150818-V07-33-page16.txt: [('-cans', 'cans'), ('-C.', 'C.'), ('-', ''), ('-', ''), ('-', '')] LUH19150818-V07-33-page6.txt: [('-i', 'i')] LUH19150818-V07-33-page7.txt: [('-', ''), ('-our', 'our')] LUH19150818-V07-33-page8.txt: [('-with', 'with')] LUH19150825-V07-34-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('the-', 'the')] LUH19150825-V07-34-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150825-V07-34-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150825-V07-34-page8.txt: [('-', '')] LUH19150901-V07-35-page4.txt: [('-', '')] LUH19150901-V07-35-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('with-', 'with')] LUH19150901-V07-35-page7.txt: [('-Jessie', 'Jessie'), ('--', '-')] LUH19150901-V07-35-page8.txt: [('-', '')] LUH19150908-V07-36-page1.txt: [('-', '')] LUH19150908-V07-36-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19150908-V07-36-page3.txt: [('-', '')] LUH19150908-V07-36-page4.txt: [('-', '')] LUH19150908-V07-36-page5.txt: [('-', ''), ('-brought', 'brought')] LUH19150908-V07-36-page7.txt: [('-cans', 'cans')] LUH19150915-V07-37-page2.txt: [('not-', 'not'), ('-', '')] LUH19150915-V07-37-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-therefore', 'therefore'), ('--', '-'), ('-', ''), ('-', '')] LUH19150915-V07-37-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150915-V07-37-page5.txt: [('K-', 'K'), ('-Scand.', 'Scand.'), ('-', ''), ('-', '')] LUH19150915-V07-37-page6.txt: [('poiso--', 'poiso-')] LUH19150915-V07-37-page7.txt: [('-', '')] LUH19150915-V07-37-page8.txt: [('-', ''), ('Glenn-', 'Glenn'), ('-', '')] LUH19150922-V07-38-page1.txt: [('.-', '.')] LUH19150922-V07-38-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('unfavor-', 'unfavor')] LUH19150922-V07-38-page5.txt: [('-', '')] LUH19150922-V07-38-page6.txt: [('-', '')] LUH19150922-V07-38-page7.txt: [("'-", "'"), ('-cans', 'cans'), ('-', '')] LUH19150929-V07-39-page1.txt: [('connec-', 'connec')] LUH19150929-V07-39-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150929-V07-39-page3.txt: [('-', ''), ('-', ''), ('therefore.-', 'therefore.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19150929-V07-39-page4.txt: [('-', ''), ('Danish-', 'Danish'), ('Danish-', 'Danish')] LUH19150929-V07-39-page5.txt: [('Danish-', 'Danish'), ('-', '')] LUH19150929-V07-39-page6.txt: [('-', ''), ('-', '')] LUH19150929-V07-39-page7.txt: [('-cans', 'cans')] LUH19151006-V07-40-page2.txt: [('-', ''), ('-', '')] LUH19151006-V07-40-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19151006-V07-40-page4.txt: [('property.-', 'property.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19151006-V07-40-page5.txt: [('sev-', 'sev')] LUH19151006-V07-40-page6.txt: [('-', '')] LUH19151013-V07-41-page1.txt: [('re-', 're'), ('Ger-', 'Ger')] LUH19151013-V07-41-page2.txt: [('mes-', 'mes')] LUH19151013-V07-41-page3.txt: [('pros-', 'pros')] LUH19151013-V07-41-page5.txt: [('-', ''), ('Danish-', 'Danish'), ('like-', 'like')] LUH19151013-V07-41-page6.txt: [('THOMPSON.-', 'THOMPSON.'), ('-James', 'James'), ('time-', 'time')] LUH19151013-V07-41-page7.txt: [('-cans', 'cans')] LUH19151020-V07-42-page5.txt: [('-', '')] LUH19151020-V07-42-page6.txt: [('-', '')] LUH19151027-V07-43-page10.txt: [('-cans', 'cans'), ('-', '')] LUH19151027-V07-43-page11.txt: [('Scandina-', 'Scandina')] LUH19151027-V07-43-page12.txt: [('-', '')] LUH19151027-V07-43-page2.txt: [('-', '')] LUH19151027-V07-43-page7.txt: [('peo-', 'peo')] LUH19151027-V07-43-page9.txt: [('in-', 'in')] LUH19151103-V07-44-page5.txt: [('-', '')] LUH19151103-V07-44-page7.txt: [('-acre', 'acre')] LUH19151103-V07-44-page8.txt: [('-i.', 'i.')] LUH19151110-V07-45-page2.txt: [('-', '')] LUH19151110-V07-45-page3.txt: [('-', '')] LUH19151110-V07-45-page4.txt: [('-', '')] LUH19151110-V07-45-page5.txt: [('-', '')] LUH19151110-V07-45-page7.txt: [('-', ''), ('-cans', 'cans')] LUH19151110-V07-45-page8.txt: [('-narration', 'narration'), ('-', '')] LUH19151117-V07-46-page4.txt: [('-', ''), ('-cent-a-week', 'cent-a-week')] LUH19151117-V07-46-page6.txt: [('seven-', 'seven')] LUH19151124-V07-47-page2.txt: [('-Slavic', 'Slavic')] LUH19151124-V07-47-page3.txt: [('-', '')] LUH19151124-V07-47-page4.txt: [('Enter-', 'Enter')] LUH19151124-V07-47-page5.txt: [('churches.-', 'churches.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19151124-V07-47-page6.txt: [('-', '')] LUH19151201-V07-48-page3.txt: [('-', ''), ('-', '')] LUH19151201-V07-48-page5.txt: [('-', ''), ('-', '')] LUH19151201-V07-48-page7.txt: [('churches.-', 'churches.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-cans', 'cans')] LUH19151208-V07-49-page3.txt: [('-', ''), ('-', '')] LUH19151208-V07-49-page5.txt: [('-', '')] LUH19151208-V07-49-page6.txt: [('-', ''), ('-', '')] LUH19151208-V07-49-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19151208-V07-49-page8.txt: [('-', '')] LUH19151215-V07-50-page1.txt: [('-', '')] LUH19151215-V07-50-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19151215-V07-50-page4.txt: [('-', ''), ('-will', 'will'), ('-.', '.'), ('Bend-', 'Bend')] LUH19151215-V07-50-page5.txt: [('notice-', 'notice')] LUH19151215-V07-50-page6.txt: [('-', ''), ('indica-', 'indica')] LUH19151215-V07-50-page8.txt: [('Or-', 'Or')] LUH19151222-V07-51-page10.txt: [('Move-', 'Move')] LUH19151222-V07-51-page11.txt: [('-gallon', 'gallon'), ('-cans', 'cans')] LUH19151222-V07-51-page2.txt: [('at-', 'at')] LUH19151222-V07-51-page6.txt: [('-', ''), ('--', '-')] LUH19151222-V07-51-page7.txt: [('liber-', 'liber'), ('Wiscon-', 'Wiscon'), ('-', '')] LUH19151222-V07-51-page8.txt: [('-', '')] LUH19160105-V08-01-page1.txt: [('-', '')] LUH19160105-V08-01-page2.txt: [('-Let', 'Let'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160105-V08-01-page3.txt: [('-', ''), ('-make', 'make'), ('-', '')] LUH19160105-V08-01-page7.txt: [('-', ''), ('-', '')] LUH19160105-V08-01-page8.txt: [('magazines-', 'magazines'), ('-parents', 'parents'), ('-gallon', 'gallon')] LUH19160112-V08-02-page1.txt: [('-', '')] LUH19160112-V08-02-page3.txt: [('onwardprog-', 'onwardprog')] LUH19160112-V08-02-page4.txt: [('contin-', 'contin')] LUH19160112-V08-02-page6.txt: [('-', '')] LUH19160112-V08-02-page7.txt: [('-', ''), ('-Jerry', 'Jerry')] LUH19160112-V08-02-page8.txt: [('-gallon', 'gallon'), ('-cans', 'cans')] LUH19160119-V08-03-page1.txt: [('year-', 'year'), ('Illi-', 'Illi')] LUH19160119-V08-03-page2.txt: [('-', '')] LUH19160119-V08-03-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-been', 'been')] LUH19160119-V08-03-page4.txt: [('"-', '"')] LUH19160119-V08-03-page5.txt: [('-spiritfilled', 'spiritfilled'), ('-', '')] LUH19160119-V08-03-page6.txt: [('East-', 'East')] LUH19160119-V08-03-page8.txt: [('-gallon', 'gallon'), ('-cans', 'cans'), ('-', '')] LUH19160126-V08-04-page1.txt: [('-', '')] LUH19160126-V08-04-page2.txt: [('-', '')] LUH19160126-V08-04-page3.txt: [('-a', 'a'), ('-', '')] LUH19160126-V08-04-page4.txt: [('-', '')] LUH19160126-V08-04-page5.txt: [('-', ''), ('appreci-', 'appreci')] LUH19160126-V08-04-page6.txt: [('-', ''), ('-papers', 'papers')] LUH19160126-V08-04-page8.txt: [('-Cents-A-Week', 'Cents-A-Week'), ('Decem-', 'Decem'), ('-gallon', 'gallon')] LUH19160202-V08-05-page2.txt: [('-', '')] LUH19160202-V08-05-page3.txt: [('-', ''), ('-', '')] LUH19160202-V08-05-page4.txt: [('-', '')] LUH19160202-V08-05-page7.txt: [('-', '')] LUH19160202-V08-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160209-V08-06-page1.txt: [('-of', 'of'), ('-', '')] LUH19160209-V08-06-page3.txt: [('-', ''), ('espe-', 'espe'), ('-', '')] LUH19160209-V08-06-page4.txt: [('-', '')] LUH19160209-V08-06-page5.txt: [('-', '')] LUH19160209-V08-06-page6.txt: [('-inch', 'inch'), ('work.-', 'work.')] LUH19160209-V08-06-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160216-V08-07-page1.txt: [('rp-', 'rp')] LUH19160216-V08-07-page4.txt: [('-receiving', 'receiving'), ('-for', 'for')] LUH19160216-V08-07-page5.txt: [('HER-', 'HER'), ('-.-', '.-')] LUH19160216-V08-07-page8.txt: [('-', ''), ('-Hildur', 'Hildur'), ('Semi-', 'Semi'), ('-', ''), ('-', ''), ('-', '')] LUH19160223-V08-08-page1.txt: [('as-', 'as'), ('-', '')] LUH19160223-V08-08-page12.txt: [('-', ''), ('-cans', 'cans'), ('-', ''), ('-', ''), ('-of', 'of'), ('-', ''), ('-', '')] LUH19160223-V08-08-page6.txt: [('-', '')] LUH19160223-V08-08-page9.txt: [('-', '')] LUH19160301-V08-09-page3.txt: [('Ran-', 'Ran'), ('-', ''), ('-', '')] LUH19160301-V08-09-page4.txt: [('-', ''), ('Twenty-Cents-a-', 'Twenty-Cents-a'), ('-', '')] LUH19160301-V08-09-page8.txt: [('-', ''), ('-', ''), ('East-', 'East'), ('-', ''), ('-', '')] LUH19160308-V08-10-page1.txt: [('-', ''), ('-', ''), ("-r'Zvet", "r'Zvet"), ('-', ''), ('-', ''), ('-', '')] LUH19160308-V08-10-page10.txt: [('introduc-', 'introduc')] LUH19160308-V08-10-page13.txt: [("-'", "'"), ("-'", "'")] LUH19160308-V08-10-page15.txt: [('-eternity', 'eternity'), ('-the', 'the')] LUH19160308-V08-10-page16.txt: [('-', '')] LUH19160308-V08-10-page17.txt: [('Re-', 'Re')] LUH19160308-V08-10-page18.txt: [('-La', 'La')] LUH19160308-V08-10-page19.txt: [('-', '')] LUH19160308-V08-10-page20.txt: [('-', '')] LUH19160308-V08-10-page3.txt: [('plat-', 'plat'), ('un-', 'un')] LUH19160308-V08-10-page4.txt: [('-', ''), ('-', '')] LUH19160308-V08-10-page5.txt: [('-', '')] LUH19160308-V08-10-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160308-V08-10-page7.txt: [('afford.-', 'afford.')] LUH19160315-V08-11-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160315-V08-11-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160315-V08-11-page11.txt: [('-', ''), ('Mis-', 'Mis')] LUH19160315-V08-11-page14.txt: [('-', '')] LUH19160315-V08-11-page16.txt: [('-', '')] LUH19160315-V08-11-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-before', 'before')] LUH19160315-V08-11-page3.txt: [('-work', 'work')] LUH19160315-V08-11-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160315-V08-11-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160315-V08-11-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160322-V08-12-page11.txt: [('-', ''), ('at-', 'at'), ('LAKE-', 'LAKE')] LUH19160322-V08-12-page12.txt: [('dif-', 'dif')] LUH19160322-V08-12-page14.txt: [('-', ''), ('-', '')] LUH19160322-V08-12-page17.txt: [('some-', 'some')] LUH19160322-V08-12-page18.txt: [('good.-', 'good.')] LUH19160322-V08-12-page19.txt: [('Mc-', 'Mc')] LUH19160322-V08-12-page20.txt: [('-on', 'on')] LUH19160322-V08-12-page23.txt: [('Morning-', 'Morning')] LUH19160322-V08-12-page26.txt: [('people"-', 'people"'), ('-', '')] LUH19160322-V08-12-page29.txt: [('-', '')] LUH19160322-V08-12-page30.txt: [('-', ''), ('-', '')] LUH19160322-V08-12-page31.txt: [('-CALL', 'CALL')] LUH19160322-V08-12-page32.txt: [('-', '')] LUH19160322-V08-12-page33.txt: [('-may', 'may')] LUH19160322-V08-12-page35.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160322-V08-12-page36.txt: [('-', '')] LUH19160322-V08-12-page37.txt: [('-', ''), ('-', ''), ('therefore.-', 'therefore.')] LUH19160322-V08-12-page38.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160322-V08-12-page39.txt: [('-', ''), ('.-', '.'), ('-', '')] LUH19160322-V08-12-page43.txt: [('-', '')] LUH19160322-V08-12-page45.txt: [('-he', 'he')] LUH19160322-V08-12-page5.txt: [('-', ''), ('war-', 'war')] LUH19160322-V08-12-page7.txt: [('-utterance."', 'utterance."'), ('-', ''), ('-', '')] LUH19160322-V08-12-page9.txt: [('-', ''), ('crea-', 'crea')] LUH19160329-V08-13-page1.txt: [('-', ''), ('per-', 'per'), ('-', ''), ('de-', 'de')] LUH19160329-V08-13-page3.txt: [('West-', 'West')] LUH19160329-V08-13-page4.txt: [('-', '')] LUH19160329-V08-13-page6.txt: [('mes-', 'mes')] LUH19160329-V08-13-page7.txt: [('cherries-', 'cherries'), ('-iight', 'iight')] LUH19160405-V08-14-page1.txt: [('-faint', 'faint')] LUH19160405-V08-14-page3.txt: [('-or', 'or')] LUH19160405-V08-14-page5.txt: [('W.-', 'W.')] LUH19160405-V08-14-page7.txt: [('-........GC', '........GC')] LUH19160405-V08-14-page8.txt: [('SoW-', 'SoW')] LUH19160412-V08-15-page3.txt: [('what-', 'what')] LUH19160412-V08-15-page4.txt: [('-', '')] LUH19160412-V08-15-page5.txt: [('-', ''), ('-', '')] LUH19160412-V08-15-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160412-V08-15-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160419-V08-16-page2.txt: [('-them', 'them'), ('-', '')] LUH19160419-V08-16-page5.txt: [('-', ''), ('......----', '......---'), ('---', '--')] LUH19160419-V08-16-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160419-V08-16-page8.txt: [('teach-', 'teach')] LUH19160426-V08-17-page2.txt: [('-to', 'to'), ('--EV-tl-y', '-EV-tl-y')] LUH19160426-V08-17-page3.txt: [('-B.', 'B.'), ('-', ''), ('hos-', 'hos'), ('-', ''), ('-', ''), ('-', '')] LUH19160503-V08-18-page2.txt: [('-', '')] LUH19160503-V08-18-page3.txt: [('-', ''), ('-', '')] LUH19160503-V08-18-page4.txt: [('-', ''), ('-', ''), ('trans-', 'trans')] LUH19160503-V08-18-page5.txt: [('-and', 'and')] LUH19160503-V08-18-page6.txt: [('-', ''), ('.--', '.-'), ('-for', 'for'), ('-', '')] LUH19160503-V08-18-page7.txt: [('Sanitarium-', 'Sanitarium')] LUH19160503-V08-18-page8.txt: [('-work', 'work')] LUH19160510-V08-19-page3.txt: [('-is', 'is'), ('-', '')] LUH19160510-V08-19-page4.txt: [('-', '')] LUH19160510-V08-19-page5.txt: [('-', '')] LUH19160510-V08-19-page6.txt: [('-Brother', 'Brother'), ('-', ''), ('-', ''), ('Secretary-', 'Secretary'), ('-', ''), ('mourn.-', 'mourn.'), ('-', ''), ('RiVet-', 'RiVet'), ('-compelled', 'compelled'), ('-', ''), ('-years', 'years')] LUH19160510-V08-19-page7.txt: [('--', '-'), ('-Kent', 'Kent'), ('-', ''), ('--people', '-people'), ('-father', 'father'), ('NorthMichiganConferencehassomevil--', 'NorthMichiganConferencehassomevil-'), ('-If', 'If'), ('-of', 'of'), ('Sabbath.-', 'Sabbath.'), ('farin.-', 'farin.'), ('-', ''), ('-r', 'r'), ('Sanitarium-', 'Sanitarium'), ('-.', '.'), ('MiChikan-', 'MiChikan'), ('-', '')] LUH19160510-V08-19-page8.txt: [('-Michigan.', 'Michigan.')] LUH19160517-V08-20-page1.txt: [('-', ''), ('-', ''), ('Thea-', 'Thea')] LUH19160517-V08-20-page2.txt: [('-literature.', 'literature.'), ('weath-', 'weath')] LUH19160517-V08-20-page3.txt: [('-end', 'end'), ('in-', 'in'), ('-', ''), ('-', ''), ('-', '')] LUH19160517-V08-20-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160517-V08-20-page5.txt: [('-', ''), ('to-', 'to'), ('....--', '....-')] LUH19160517-V08-20-page6.txt: [('-', '')] LUH19160517-V08-20-page7.txt: [('Sanitarium-', 'Sanitarium')] LUH19160524-V08-21-page2.txt: [('-educational', 'educational'), ('-', ''), ('-Christ', 'Christ'), ('-', ''), ('Titicaca-', 'Titicaca')] LUH19160524-V08-21-page3.txt: [('-Society', 'Society'), ('-', '')] LUH19160524-V08-21-page4.txt: [('-tra', 'tra'), ('Lib-', 'Lib')] LUH19160524-V08-21-page5.txt: [('-', ''), ('-', '')] LUH19160524-V08-21-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('weekH-', 'weekH'), ('-older', 'older')] LUH19160524-V08-21-page7.txt: [('Mission--', 'Mission-'), ('-Society', 'Society'), ('-goal', 'goal'), ('LAKE-', 'LAKE'), ('-', '')] LUH19160531-V08-22-page1.txt: [('child-', 'child')] LUH19160531-V08-22-page10.txt: [('-Orpha', 'Orpha'), ('-Ora', 'Ora'), ('-Iver', 'Iver')] LUH19160531-V08-22-page11.txt: [('-John', 'John'), ('-', ''), ('-', ''), ('re-', 're'), ('Mich-.-', 'Mich-.'), ('-as', 'as'), ('-', ''), ('-Secretary', 'Secretary'), ('-freedom', 'freedom'), ('-many', 'many'), ('hear--', 'hear-'), ('-need.', 'need.'), ('-', ''), ('vi-', 'vi'), ('ap-', 'ap'), ('per-', 'per'), ('-stood', 'stood')] LUH19160531-V08-22-page12.txt: [('-', ''), ('-', ''), ('-room', 'room'), ('-A', 'A'), ('-La', 'La')] LUH19160531-V08-22-page2.txt: [('-started', 'started'), ('-denomination.', 'denomination.'), ('I-', 'I'), ('-gifts', 'gifts'), ('-unity.', 'unity.')] LUH19160531-V08-22-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160531-V08-22-page4.txt: [('corn-', 'corn'), ('-', '')] LUH19160531-V08-22-page5.txt: [('-', ''), ('-', '')] LUH19160531-V08-22-page6.txt: [('-this', 'this'), ('keepingpeo-', 'keepingpeo'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160531-V08-22-page7.txt: [('-', ''), ('Chris-', 'Chris'), ('-', '')] LUH19160531-V08-22-page8.txt: [('-', '')] LUH19160531-V08-22-page9.txt: [('con-', 'con')] LUH19160607-V08-23-page1.txt: [('-lust', 'lust')] LUH19160607-V08-23-page3.txt: [('knowl-', 'knowl')] LUH19160607-V08-23-page4.txt: [('spent-', 'spent'), ('Vol-', 'Vol'), ('-', '')] LUH19160607-V08-23-page6.txt: [('-', ''), ('-', ''), ('-the', 'the')] LUH19160614-V08-24-page1.txt: [('re-', 're')] LUH19160614-V08-24-page3.txt: [('con-', 'con')] LUH19160614-V08-24-page4.txt: [('-', ''), ('-', '')] LUH19160614-V08-24-page6.txt: [('sud-', 'sud')] LUH19160614-V08-24-page7.txt: [('un-', 'un')] LUH19160614-V08-24-page8.txt: [('Stapp--------------', 'Stapp-------------'), ('-', ''), ('-', ''), ('SALE.-', 'SALE.'), ('-', ''), ('-', '')] LUH19160621-V08-25-page5.txt: [('-', ''), ('-', '')] LUH19160621-V08-25-page6.txt: [('-', ''), ('-', '')] LUH19160621-V08-25-page7.txt: [('Plak-', 'Plak'), ('G.-', 'G.'), ('-', '')] LUH19160621-V08-25-page8.txt: [('-.', '.'), ('-', ''), ('SALE.-', 'SALE.'), ('-', ''), ('Wiscon-', 'Wiscon')] LUH19160628-V08-26-page1.txt: [('-', '')] LUH19160628-V08-26-page4.txt: [('-We', 'We')] LUH19160628-V08-26-page7.txt: [('-', '')] LUH19160628-V08-26-page8.txt: [('Anti-', 'Anti'), ('-"The', '"The')] LUH19160705-V08-27-page2.txt: [('secre-', 'secre')] LUH19160705-V08-27-page3.txt: [('-', ''), ('-', '')] LUH19160705-V08-27-page4.txt: [('-his', 'his'), ('-the', 'the')] LUH19160705-V08-27-page5.txt: [('Brother-', 'Brother'), ('-', '')] LUH19160705-V08-27-page7.txt: [('-', ''), ('--.', '-.')] LUH19160712-V08-28-page3.txt: [('-', ''), ('-', '')] LUH19160712-V08-28-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page1.txt: [('-.', '.'), ('en-', 'en'), ('for-', 'for')] LUH19160719-V08-29-page12.txt: [('-', ''), ('-cans', 'cans'), ('SALE.-', 'SALE.'), ('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page6.txt: [('-', '')] LUH19160719-V08-29-page7.txt: [('-', ''), ('-', '')] LUH19160719-V08-29-page8.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160719-V08-29-page9.txt: [('-', '')] LUH19160726-V08-30-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160726-V08-30-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160726-V08-30-page6.txt: [('-', '')] LUH19160726-V08-30-page7.txt: [('-', '')] LUH19160726-V08-30-page8.txt: [('-', ''), ('-cans', 'cans'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160802-V08-31-page10.txt: [('-', ''), ('-', '')] LUH19160802-V08-31-page11.txt: [('-', '')] LUH19160802-V08-31-page12.txt: [('-', '')] LUH19160802-V08-31-page13.txt: [('-John', 'John'), ('Herald-', 'Herald')] LUH19160802-V08-31-page14.txt: [('-paper', 'paper'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160802-V08-31-page15.txt: [('-Vuilleumier', 'Vuilleumier'), ('Con-', 'Con'), ('-', '')] LUH19160802-V08-31-page16.txt: [('-', ''), ('-', ''), ('Dunlap......-', 'Dunlap......')] LUH19160802-V08-31-page2.txt: [('HER-', 'HER'), ('begin-', 'begin')] LUH19160802-V08-31-page3.txt: [('Mc-', 'Mc')] LUH19160802-V08-31-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160802-V08-31-page6.txt: [('-a', 'a'), ('-', '')] LUH19160802-V08-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Reso-', 'Reso')] LUH19160802-V08-31-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-we', 'we'), ('-', ''), ('-', ''), ('-', '')] LUH19160809-V08-32-page1.txt: [('-', '')] LUH19160809-V08-32-page3.txt: [('-', '')] LUH19160809-V08-32-page4.txt: [('-', '')] LUH19160809-V08-32-page7.txt: [('aim-', 'aim'), ('-', ''), ('-', ''), ('-', ''), ('-cans', 'cans'), ('-', '')] LUH19160809-V08-32-page8.txt: [('-', '')] LUH19160816-V08-33-page1.txt: [('-', ''), ('-', '')] LUH19160816-V08-33-page6.txt: [('-', '')] LUH19160816-V08-33-page7.txt: [('-', ''), ('-Nashville', 'Nashville'), ('-', ''), ('-cans', 'cans'), ('-', '')] LUH19160816-V08-33-page8.txt: [('-', ''), ('-Grant', 'Grant'), ('--', '-')] LUH19160823-V08-34-page10.txt: [('-', ''), ('-', ''), ('-All', 'All'), ('-of', 'of')] LUH19160823-V08-34-page15.txt: [('-', ''), ('-cans', 'cans')] LUH19160823-V08-34-page2.txt: [('edu-', 'edu')] LUH19160823-V08-34-page3.txt: [('-march', 'march'), ('Uni-', 'Uni')] LUH19160823-V08-34-page6.txt: [('dis-', 'dis'), ('con-', 'con'), ('"honor-', '"honor')] LUH19160823-V08-34-page7.txt: [('-', '')] LUH19160830-V08-35-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('HER-', 'HER')] LUH19160830-V08-35-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-P.', 'P.')] LUH19160830-V08-35-page4.txt: [('re-', 're'), ('-', '')] LUH19160830-V08-35-page6.txt: [('fol-', 'fol'), ('-', '')] LUH19160830-V08-35-page7.txt: [('-', '')] LUH19160830-V08-35-page8.txt: [('..-', '..'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160906-V08-36-page2.txt: [('-', ''), ('-', '')] LUH19160906-V08-36-page4.txt: [('-pound', 'pound'), ('-', ''), ('-cans', 'cans')] LUH19160913-V08-37-page1.txt: [('concern-', 'concern')] LUH19160913-V08-37-page2.txt: [('-', '')] LUH19160913-V08-37-page3.txt: [('-', ''), ('-', ''), ('Wilson-', 'Wilson'), ('-', ''), ('-', '')] LUH19160913-V08-37-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160913-V08-37-page5.txt: [('-', ''), ('--', '-'), ('ma-', 'ma')] LUH19160913-V08-37-page7.txt: [('-Mrs.', 'Mrs.'), ('-', '')] LUH19160913-V08-37-page8.txt: [('-', ''), ('-pound', 'pound'), ('-', '')] LUH19160920-V08-38-page3.txt: [('Menomi-', 'Menomi'), ('responsi-', 'responsi'), ('-', ''), ('indebted-', 'indebted'), ('here-', 'here'), ('-', ''), ('realiz-', 'realiz'), ('-', ''), ('there-', 'there'), ('-', '')] LUH19160920-V08-38-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19160920-V08-38-page7.txt: [('individuals-', 'individuals')] LUH19160920-V08-38-page8.txt: [('-pound', 'pound'), ('-cans', 'cans'), ('-to', 'to')] LUH19160927-V08-39-page1.txt: [('long-', 'long'), ('pur-', 'pur')] LUH19160927-V08-39-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19160927-V08-39-page3.txt: [('-', ''), ('-board', 'board'), ('-large', 'large'), ('-proved', 'proved'), ('-churches', 'churches'), ('-movement', 'movement'), ('-to', 'to'), ('-the', 'the'), ('-', ''), ('-our', 'our'), ('-in', 'in'), ('-', ''), ('-are', 'are'), ('-', ''), ('or-', 'or'), ('-', ''), ('-Educational', 'Educational'), ('-Edith', 'Edith'), ('-R.', 'R.'), ('-', ''), ('-L.', 'L.'), ('-W.', 'W.'), ('-Lamson', 'Lamson'), ('-Copeland.', 'Copeland.'), ('-R.', 'R.'), ('-our', 'our')] LUH19160927-V08-39-page6.txt: [('-hundred', 'hundred')] LUH19160927-V08-39-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('East-', 'East'), ('-Five', 'Five'), ('-pound', 'pound')] LUH19161004-V08-40-page2.txt: [('-', '')] LUH19161004-V08-40-page3.txt: [('in-', 'in')] LUH19161004-V08-40-page4.txt: [('-', '')] LUH19161004-V08-40-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19161004-V08-40-page6.txt: [('-', '')] LUH19161004-V08-40-page7.txt: [('-he', 'he'), ('-pound', 'pound'), ('-catis', 'catis')] LUH19161004-V08-40-page8.txt: [('-', '')] LUH19161011-V08-41-page1.txt: [('-', '')] LUH19161011-V08-41-page3.txt: [('-may', 'may')] LUH19161011-V08-41-page4.txt: [('-', ''), ('ad-', 'ad'), ('-', ''), ('-', ''), ('-letter', 'letter'), ('-', ''), ('-', ''), ('-us', 'us')] LUH19161011-V08-41-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19161011-V08-41-page7.txt: [('-Clarence', 'Clarence'), ('-Andrew', 'Andrew')] LUH19161011-V08-41-page8.txt: [("'-", "'"), ('-', ''), ('-pound', 'pound')] LUH19161018-V08-42-page4.txt: [('-', '')] LUH19161018-V08-42-page5.txt: [('-', '')] LUH19161018-V08-42-page6.txt: [('Bro-', 'Bro')] LUH19161018-V08-42-page8.txt: [('-pound', 'pound'), ('-cans', 'cans')] LUH19161025-V08-43-page1.txt: [('-of', 'of'), ('-', '')] LUH19161025-V08-43-page2.txt: [('-', '')] LUH19161025-V08-43-page4.txt: [('-', '')] LUH19161025-V08-43-page7.txt: [('-pound', 'pound'), ('-', '')] LUH19161025-V08-43-page8.txt: [('-of', 'of')] LUH19161101-V08-44-page2.txt: [('-', '')] LUH19161101-V08-44-page5.txt: [('treat-', 'treat')] LUH19161101-V08-44-page7.txt: [('.-', '.'), ('reg-', 'reg')] LUH19161101-V08-44-page8.txt: [('girls-', 'girls'), ('-pound', 'pound'), ('-', '')] LUH19161108-V08-45-page3.txt: [('re-', 're'), ('hay-', 'hay')] LUH19161108-V08-45-page5.txt: [('ad-', 'ad')] LUH19161108-V08-45-page7.txt: [('-pound', 'pound')] LUH19161115-V08-46-page1.txt: [('m-', 'm')] LUH19161115-V08-46-page3.txt: [('-', ''), ('.-', '.')] LUH19161115-V08-46-page4.txt: [('-', '')] LUH19161115-V08-46-page5.txt: [('Ingather-', 'Ingather')] LUH19161115-V08-46-page7.txt: [('-', ''), ('-Edward', 'Edward'), ('-', '')] LUH19161115-V08-46-page8.txt: [('WANTED.-', 'WANTED.'), ('-cans', 'cans')] LUH19161122-V08-47-page2.txt: [('-and', 'and'), ('-', ''), ('-', '')] LUH19161122-V08-47-page3.txt: [('moun-', 'moun'), ('Freeport-', 'Freeport')] LUH19161122-V08-47-page4.txt: [('-', '')] LUH19161122-V08-47-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19161122-V08-47-page6.txt: [('-', ''), ('-', '')] LUH19161122-V08-47-page7.txt: [('L.-', 'L.'), ('-Ella', 'Ella'), ('-', ''), ('-Takoma', 'Takoma'), ('-le', 'le'), ('-', ''), ('-', ''), ('-', '')] LUH19161122-V08-47-page8.txt: [('-pound', 'pound')] LUH19161129-V08-48-page1.txt: [('Mich.-', 'Mich.'), ('Russ-', 'Russ'), ('-', '')] LUH19161129-V08-48-page3.txt: [('Chicago-', 'Chicago')] LUH19161129-V08-48-page4.txt: [('-', '')] LUH19161129-V08-48-page6.txt: [('-treatments', 'treatments'), ('-', '')] LUH19161129-V08-48-page7.txt: [('-', '')] LUH19161129-V08-48-page8.txt: [('-BR', 'BR')] LUH19161206-V08-49-page1.txt: [('-was', 'was'), ('Russ-', 'Russ')] LUH19161206-V08-49-page2.txt: [('-', ''), ('Kala-', 'Kala')] LUH19161206-V08-49-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19161206-V08-49-page4.txt: [('last-', 'last')] LUH19161206-V08-49-page8.txt: [('Chr---', 'Chr--'), ('-Five', 'Five'), ('-pound', 'pound'), ('-', ''), ('-cans', 'cans')] LUH19161213-V08-50-page1.txt: [('-Lucy', 'Lucy')] LUH19161213-V08-50-page10.txt: [('-', ''), ('-Lyman', 'Lyman'), ('-Mrs.', 'Mrs.'), ('-', ''), ('-', ''), ('-To', 'To'), ('-pound', 'pound')] LUH19161213-V08-50-page11.txt: [('out-', 'out'), ('-', ''), ('-', ''), ('-', '')] LUH19161213-V08-50-page12.txt: [('Father-', 'Father'), ('any-', 'any')] LUH19161213-V08-50-page4.txt: [('-', ''), ('pur-', 'pur')] LUH19161213-V08-50-page5.txt: [('-', ''), ('-', '')] LUH19161213-V08-50-page7.txt: [('-these', 'these')] LUH19161213-V08-50-page9.txt: [('-', ''), ('-', '')] LUH19161220-V08-51-page1.txt: [('deter-', 'deter')] LUH19161220-V08-51-page10.txt: [('-', '')] LUH19161220-V08-51-page11.txt: [('-', ''), ('-pound', 'pound'), ('-', ''), ('-', '')] LUH19161220-V08-51-page2.txt: [('-', '')] LUH19161220-V08-51-page4.txt: [('-', '')] LUH19161220-V08-51-page6.txt: [('-', ''), ('-', '')] LUH19161220-V08-51-page7.txt: [('-', ''), ('Di-', 'Di')] LUH19161220-V08-51-page8.txt: [('-', '')] LUH19170103-V09-01-page1.txt: [('-prejudice.', 'prejudice.')] LUH19170103-V09-01-page4.txt: [('-', ''), ('-', ''), ('per-', 'per')] LUH19170103-V09-01-page5.txt: [('per-', 'per'), ('-', ''), ('-', ''), ('-', ''), ('and-', 'and'), ('-', '')] LUH19170103-V09-01-page6.txt: [('-so', 'so'), ('-', '')] LUH19170103-V09-01-page7.txt: [('-', ''), ('-I', 'I')] LUH19170103-V09-01e-page13.txt: [('"flow-', '"flow'), ('-eth', 'eth')] LUH19170103-V09-01e-page14.txt: [('-', '')] LUH19170103-V09-01e-page16.txt: [('-the', 'the')] LUH19170103-V09-01e-page5.txt: [('-', '')] LUH19170110-V09-02-page3.txt: [('-', ''), ('-', '')] LUH19170110-V09-02-page4.txt: [('-', '')] LUH19170110-V09-02-page5.txt: [('-cans', 'cans')] LUH19170110-V09-02-page6.txt: [('-', '')] LUH19170117-V09-03-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('faith-', 'faith')] LUH19170117-V09-03-page4.txt: [('-', ''), ('-will', 'will')] LUH19170117-V09-03-page5.txt: [('Jaques-', 'Jaques')] LUH19170117-V09-03-page6.txt: [('Franks-', 'Franks')] LUH19170117-V09-03-page7.txt: [('-', ''), ('-pound', 'pound'), ('-cans', 'cans')] LUH19170117-V09-03-page8.txt: [('-', '')] LUH19170124-V09-04-page3.txt: [('meet-', 'meet'), ('-', ''), ('-', '')] LUH19170124-V09-04-page4.txt: [('-', '')] LUH19170124-V09-04-page5.txt: [('-', '')] LUH19170124-V09-04-page6.txt: [('-', ''), ('Decatur..-', 'Decatur..'), ('-.', '.')] LUH19170124-V09-04-page7.txt: [('-pound', 'pound')] LUH19170124-V09-04-page8.txt: [('-', ''), ('HER-', 'HER')] LUH19170131-V09-05-page4.txt: [('-', '')] LUH19170131-V09-05-page5.txt: [('-as', 'as'), ('-e', 'e')] LUH19170131-V09-05-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170131-V09-05-page7.txt: [('-', ''), ('de-', 'de'), ('-', ''), ('-pound', 'pound')] LUH19170131-V09-05-page8.txt: [('-out', 'out'), ('con-', 'con')] LUH19170207-V09-06-page2.txt: [('-', ''), ('-publishing', 'publishing'), ('-', '')] LUH19170207-V09-06-page3.txt: [('-', '')] LUH19170207-V09-06-page5.txt: [('-', ''), ('-', '')] LUH19170207-V09-06-page6.txt: [('-', ''), ('-', '')] LUH19170207-V09-06-page7.txt: [('-cans', 'cans'), ('-', '')] LUH19170214-V09-07-page3.txt: [('-', '')] LUH19170214-V09-07-page4.txt: [('-', '')] LUH19170214-V09-07-page5.txt: [('-', '')] LUH19170214-V09-07-page6.txt: [('-', ''), ('-to', 'to'), ('-Conrad', 'Conrad')] LUH19170214-V09-07-page7.txt: [('-Paul', 'Paul')] LUH19170221-V09-08-page1.txt: [('-', ''), ('-', '')] LUH19170221-V09-08-page3.txt: [('-', '')] LUH19170221-V09-08-page4.txt: [('-', ''), ('.-', '.'), ('-', '')] LUH19170221-V09-08-page5.txt: [('twenty-', 'twenty'), ('Grove.-', 'Grove.')] LUH19170221-V09-08-page8.txt: [('-cans', 'cans')] LUH19170228-V09-09-page3.txt: [('Lake.......-', 'Lake.......'), ('corn-', 'corn')] LUH19170228-V09-09-page4.txt: [('-', '')] LUH19170228-V09-09-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170228-V09-09-page6.txt: [('-join', 'join'), ('-', '')] LUH19170228-V09-09-page7.txt: [('--', '-')] LUH19170228-V09-09-page8.txt: [('--A', '-A'), ('Goal-', 'Goal'), ('year.-', 'year.')] LUH19170307-V09-10-page1.txt: [('be-', 'be')] LUH19170307-V09-10-page2.txt: [('-', ''), ('-', '')] LUH19170307-V09-10-page4.txt: [('things-', 'things'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170307-V09-10-page5.txt: [('ex-', 'ex')] LUH19170307-V09-10-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170307-V09-10-page8.txt: [('-', '')] LUH19170314-V09-11-page3.txt: [('-', ''), ('-', '')] LUH19170314-V09-11-page4.txt: [('condi-', 'condi')] LUH19170314-V09-11-page5.txt: [('-abounded', 'abounded'), ('-', ''), ('-', ''), ('con-', 'con')] LUH19170314-V09-11-page6.txt: [('watch-', 'watch')] LUH19170314-V09-11-page7.txt: [('-', '')] LUH19170314-V09-11-page8.txt: [('-', '')] LUH19170321-V09-12-page10.txt: [('-', ''), ('-', '')] LUH19170321-V09-12-page11.txt: [('-History', 'History'), ('-', '')] LUH19170321-V09-12-page2.txt: [('-', '')] LUH19170321-V09-12-page3.txt: [('-', '')] LUH19170321-V09-12-page5.txt: [('-', ''), ('-would', 'would'), ('.-', '.')] LUH19170321-V09-12-page6.txt: [('-', '')] LUH19170321-V09-12-page7.txt: [('-', '')] LUH19170321-V09-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-Starr', 'Starr')] LUH19170321-V09-12-page9.txt: [('-their', 'their'), ('meet-', 'meet'), ('-', '')] LUH19170328-V09-13-page1.txt: [('-', ''), ('-', '')] LUH19170328-V09-13-page2.txt: [('-', ''), ('insti-', 'insti')] LUH19170328-V09-13-page3.txt: [('-', ''), ('-', '')] LUH19170328-V09-13-page5.txt: [('-is', 'is')] LUH19170328-V09-13-page6.txt: [('-', '')] LUH19170328-V09-13-page7.txt: [('-pound', 'pound'), ('-', '')] LUH19170404-V09-14-page10.txt: [('-', ''), ('Bro-', 'Bro')] LUH19170404-V09-14-page11.txt: [('-pound', 'pound')] LUH19170404-V09-14-page12.txt: [('Advent-', 'Advent'), ('be-', 'be')] LUH19170404-V09-14-page3.txt: [('-', ''), ('friend-', 'friend'), ('-', ''), ('-a', 'a')] LUH19170404-V09-14-page5.txt: [('-LYLE', 'LYLE'), ('Michigan-', 'Michigan')] LUH19170404-V09-14-page6.txt: [('-', '')] LUH19170404-V09-14-page7.txt: [('-', ''), ('-Dores', 'Dores'), ('Worthing-', 'Worthing')] LUH19170404-V09-14-page8.txt: [('-', '')] LUH19170404-V09-14-page9.txt: [('Adven-', 'Adven'), ('a-', 'a')] LUH19170411-V09-15-page1.txt: [('-fight', 'fight')] LUH19170411-V09-15-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170411-V09-15-page4.txt: [('condi-', 'condi'), ('-', '')] LUH19170411-V09-15-page6.txt: [('-', ''), ('-the', 'the'), ('postpaid.-', 'postpaid.')] LUH19170411-V09-15-page7.txt: [('-', ''), ('-pound', 'pound'), ('-', ''), ('-', '')] LUH19170418-V09-16-page3.txt: [('-', ''), ('inter-', 'inter')] LUH19170418-V09-16-page5.txt: [('-people', 'people'), ('-', '')] LUH19170418-V09-16-page6.txt: [('num-', 'num')] LUH19170418-V09-16-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170418-V09-16-page8.txt: [('-pound', 'pound'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170425-V09-17-page11.txt: [('-their', 'their')] LUH19170425-V09-17-page13.txt: [('RORK.-', 'RORK.'), ('-Bernice', 'Bernice'), ('-', ''), ('-', ''), ('trust-', 'trust')] LUH19170425-V09-17-page15.txt: [('-pound', 'pound')] LUH19170425-V09-17-page16.txt: [('-', ''), ('-', '')] LUH19170425-V09-17-page3.txt: [('-', ''), ('-', '')] LUH19170425-V09-17-page6.txt: [('-', ''), ('be-', 'be')] LUH19170425-V09-17-page7.txt: [('chairs-', 'chairs')] LUH19170425-V09-17-page9.txt: [('-', '')] LUH19170502-V09-18-page7.txt: [('-pound', 'pound')] LUH19170502-V09-18-page8.txt: [('-', ''), ('-', '')] LUH19170509-V09-19-page1.txt: [('-duty', 'duty'), ('stom-', 'stom'), ('pub-', 'pub')] LUH19170509-V09-19-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170509-V09-19-page12.txt: [('mes-', 'mes'), ('-pound', 'pound'), ('-', ''), ('-', ''), ('-', '')] LUH19170509-V09-19-page5.txt: [('Be-', 'Be')] LUH19170516-V09-20-page2.txt: [('-', '')] LUH19170516-V09-20-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170523-V09-21-page3.txt: [('-', ''), ('-', '')] LUH19170523-V09-21-page6.txt: [('-', '')] LUH19170523-V09-21-page7.txt: [('meeting-', 'meeting'), ('God"-', 'God"'), ('-pound', 'pound'), ('-', ''), ('-', ''), ('-', '')] LUH19170523-V09-21-page8.txt: [('non-', 'non'), ('-', ''), ('-', ''), ('-', '')] LUH19170530-V09-22-page1.txt: [('cir-', 'cir')] LUH19170530-V09-22-page3.txt: [('-', ''), ('-', '')] LUH19170530-V09-22-page5.txt: [('-and', 'and'), ('stu-', 'stu')] LUH19170530-V09-22-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170530-V09-22-page7.txt: [('-', ''), ('-pound', 'pound'), ('-', ''), ('-', '')] LUH19170530-V09-22-page8.txt: [('Reed-', 'Reed'), ('Mac-', 'Mac'), ('-', ''), ('-', ''), ('-', '')] LUH19170606-V09-23-page5.txt: [('neighbor-', 'neighbor')] LUH19170606-V09-23-page6.txt: [('-', ''), ('-', '')] LUH19170606-V09-23-page7.txt: [('-', ''), ('-pound', 'pound')] LUH19170606-V09-23-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170613-V09-24-page3.txt: [('-', '')] LUH19170613-V09-24-page4.txt: [('-', ''), ('con-', 'con')] LUH19170613-V09-24-page6.txt: [('-G', 'G')] LUH19170613-V09-24-page7.txt: [('-pound', 'pound')] LUH19170613-V09-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170620-V09-25-page3.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc'), ('-Lutheran', 'Lutheran')] LUH19170620-V09-25-page4.txt: [('-', '')] LUH19170620-V09-25-page5.txt: [('time-', 'time'), ('-much', 'much'), ('-', ''), ('Sun-', 'Sun')] LUH19170620-V09-25-page6.txt: [('-best', 'best'), ('-our', 'our')] LUH19170620-V09-25-page7.txt: [('-pound', 'pound'), ('-', ''), ('-', '')] LUH19170620-V09-25-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170627-V09-26-page1.txt: [('neigh-', 'neigh')] LUH19170627-V09-26-page2.txt: [('-', '')] LUH19170627-V09-26-page6.txt: [('-He', 'He'), ('-', '')] LUH19170627-V09-26-page7.txt: [('-pound', 'pound'), ('-', ''), ('-', ''), ('-', '')] LUH19170627-V09-26-page8.txt: [('-see', 'see')] LUH19170704-V09-27-page2.txt: [('-', '')] LUH19170704-V09-27-page3.txt: [('-', ''), ('offer-', 'offer'), ('----', '---')] LUH19170704-V09-27-page6.txt: [('-pound', 'pound')] LUH19170704-V09-27-page7.txt: [('-Aaron', 'Aaron'), ('-', ''), ('-', ''), ('--', '-')] LUH19170711-V09-28-page1.txt: [('de-', 'de'), ('-Not', 'Not'), ('for-', 'for')] LUH19170711-V09-28-page3.txt: [('part.-', 'part.')] LUH19170711-V09-28-page4.txt: [('-the', 'the')] LUH19170711-V09-28-page6.txt: [('-pound', 'pound')] LUH19170711-V09-28-page8.txt: [('Hanson-', 'Hanson'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170718-V09-29-page1.txt: [('money-', 'money')] LUH19170718-V09-29-page10.txt: [('-', ''), ('.-', '.'), ('-', '')] LUH19170718-V09-29-page11.txt: [('-James', 'James'), ('-', '')] LUH19170718-V09-29-page12.txt: [('-pound', 'pound'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170718-V09-29-page5.txt: [('Broadview......-', 'Broadview......'), ('cor-', 'cor')] LUH19170718-V09-29-page7.txt: [('-The', 'The'), ('particu-', 'particu')] LUH19170718-V09-29-page9.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170725-V09-30-page2.txt: [('-James.', 'James.'), ('hand-', 'hand')] LUH19170725-V09-30-page5.txt: [('hence-', 'hence'), ('week-', 'week'), ('before-', 'before')] LUH19170725-V09-30-page6.txt: [('all.-', 'all.')] LUH19170725-V09-30-page8.txt: [('-', ''), ('-', ''), ('-pound', 'pound')] LUH19170801-V09-31-page5.txt: [('secretary-', 'secretary'), ('-', ''), ('-', ''), ('-', '')] LUH19170801-V09-31-page7.txt: [('-', '')] LUH19170801-V09-31-page8.txt: [('-gallon', 'gallon'), ('-', '')] LUH19170808-V09-32-page1.txt: [('-', '')] LUH19170808-V09-32-page4.txt: [('-', '')] LUH19170808-V09-32-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170808-V09-32-page7.txt: [('Vol-', 'Vol')] LUH19170808-V09-32-page8.txt: [('-gallon', 'gallon'), ('-', ''), ('-', '')] LUH19170815-V09-33-page1.txt: [('La-', 'La')] LUH19170815-V09-33-page3.txt: [('-', ''), ('-', '')] LUH19170815-V09-33-page8.txt: [('-', ''), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', '')] LUH19170822-V09-34-page16.txt: [('-', '')] LUH19170822-V09-34-page2.txt: [('-', ''), ('-', '')] LUH19170822-V09-34-page3.txt: [('determi-', 'determi')] LUH19170822-V09-34-page4.txt: [('Hospital-', 'Hospital'), ('School-', 'School')] LUH19170822-V09-34-page5.txt: [('-tint', 'tint'), ('vari-', 'vari')] LUH19170822-V09-34-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170829-V09-35-page1.txt: [('-begin', 'begin'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170829-V09-35-page10.txt: [('-Died', 'Died'), ('-Hattie', 'Hattie'), ('-', ''), ('-', ''), ('con-', 'con')] LUH19170829-V09-35-page12.txt: [('-', ''), ('pres-', 'pres'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170829-V09-35-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('---.', '--.')] LUH19170829-V09-35-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19170905-V09-36-page8.txt: [('-gallon', 'gallon')] LUH19170912-V09-37-page2.txt: [('-', '')] LUH19170912-V09-37-page3.txt: [('objec-', 'objec'), ('effort-', 'effort')] LUH19170912-V09-37-page5.txt: [('-', ''), ('deep-', 'deep')] LUH19170912-V09-37-page7.txt: [('educa-', 'educa')] LUH19170919-V09-38-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19170919-V09-38-page8.txt: [('--men', '-men')] LUH19170926-V09-39-page2.txt: [('-..', '..'), ('diff-', 'diff')] LUH19170926-V09-39-page3.txt: [('atten-', 'atten')] LUH19170926-V09-39-page4.txt: [('Fair-', 'Fair')] LUH19170926-V09-39-page5.txt: [('-', ''), ('appro-', 'appro'), ('-priate', 'priate')] LUH19170926-V09-39-page8.txt: [('mis-', 'mis')] LUH19171003-V09-40-page1.txt: [('Sani-', 'Sani')] LUH19171003-V09-40-page11.txt: [('mourn-', 'mourn')] LUH19171003-V09-40-page12.txt: [('-', '')] LUH19171003-V09-40-page2.txt: [('cam-', 'cam')] LUH19171003-V09-40-page4.txt: [('-', '')] LUH19171003-V09-40-page5.txt: [('-E.', 'E.')] LUH19171003-V09-40-page6.txt: [('-', '')] LUH19171003-V09-40-page7.txt: [('-', '')] LUH19171010-V09-41-page3.txt: [('-fear', 'fear')] LUH19171010-V09-41-page4.txt: [('-', '')] LUH19171010-V09-41-page6.txt: [('-had', 'had'), ('-', '')] LUH19171010-V09-41-page7.txt: [('Dub-', 'Dub'), ('-Vermont', 'Vermont')] LUH19171010-V09-41-page8.txt: [('-Non', 'Non'), ('B.-', 'B.'), ('-', ''), ('Mich..-', 'Mich..'), ('-', ''), ('-', '')] LUH19171017-V09-42-page1.txt: [('-', '')] LUH19171017-V09-42-page3.txt: [('pro-', 'pro')] LUH19171017-V09-42-page7.txt: [('-', ''), ('-', '')] LUH19171017-V09-42-page8.txt: [('af-', 'af')] LUH19171024-V09-43-page1.txt: [('Sani-', 'Sani')] LUH19171024-V09-43-page11.txt: [('Church.-', 'Church.')] LUH19171024-V09-43-page2.txt: [('-is', 'is'), ('car-', 'car'), ('neces-', 'neces')] LUH19171024-V09-43-page3.txt: [('-', '')] LUH19171024-V09-43-page4.txt: [('-', ''), ('splen-', 'splen')] LUH19171024-V09-43-page5.txt: [('Sab-', 'Sab')] LUH19171024-V09-43-page7.txt: [('-', ''), ('-', '')] LUH19171024-V09-43-page8.txt: [('-', '')] LUH19171024-V09-43-page9.txt: [('soli-', 'soli')] LUH19171031-V09-44-page1.txt: [('Seventh-', 'Seventh'), ('non-', 'non')] LUH19171031-V09-44-page2.txt: [('-', ''), ('.-', '.'), ('-g', 'g'), ('-', ''), ('ZmE-', 'ZmE'), ('-', ''), ('-', '')] LUH19171031-V09-44-page3.txt: [('-too', 'too'), ('-', '')] LUH19171031-V09-44-page4.txt: [('the-', 'the'), ('-have', 'have'), ('-I', 'I'), ('LI-', 'LI'), ('-reached.', 'reached.')] LUH19171031-V09-44-page5.txt: [('-', '')] LUH19171031-V09-44-page6.txt: [('-', '')] LUH19171031-V09-44-page7.txt: [('-week.', 'week.'), ('-', '')] LUH19171031-V09-44-page8.txt: [('-', ''), ('-BF', 'BF')] LUH19171107-V09-45-page2.txt: [('-', ''), ('-', '')] LUH19171107-V09-45-page6.txt: [('pro-', 'pro')] LUH19171107-V09-45-page8.txt: [('SALE.-', 'SALE.'), ('-', '')] LUH19171114-V09-46-page1.txt: [('Tri-', 'Tri'), ('miss-', 'miss')] LUH19171114-V09-46-page10.txt: [('-in', 'in')] LUH19171114-V09-46-page11.txt: [('-to', 'to')] LUH19171114-V09-46-page12.txt: [('SALE.-', 'SALE.'), ('-', '')] LUH19171114-V09-46-page2.txt: [('-', ''), ('-', ''), ('an-', 'an')] LUH19171114-V09-46-page4.txt: [('HER-', 'HER'), ('do-', 'do')] LUH19171114-V09-46-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19171114-V09-46-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19171121-V09-47-page1.txt: [('know-', 'know')] LUH19171121-V09-47-page13.txt: [('cam-', 'cam'), ('-', ''), ('-of', 'of')] LUH19171121-V09-47-page15.txt: [('-', '')] LUH19171121-V09-47-page16.txt: [('-', '')] LUH19171121-V09-47-page3.txt: [('anx-', 'anx')] LUH19171121-V09-47-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19171121-V09-47-page5.txt: [('remem-', 'remem')] LUH19171121-V09-47-page8.txt: [('-.', '.')] LUH19171128-V09-48-page2.txt: [('-', ''), ('-', '')] LUH19171128-V09-48-page4.txt: [('litera-', 'litera')] LUH19171128-V09-48-page6.txt: [('-', '')] LUH19171128-V09-48-page7.txt: [('-It', 'It')] LUH19171128-V09-48-page8.txt: [('-', '')] LUH19171205-V09-49-page1.txt: [('-', '')] LUH19171205-V09-49-page3.txt: [('Cole-', 'Cole'), ('-cents-aweek', 'cents-aweek')] LUH19171205-V09-49-page5.txt: [('-', ''), ('a-', 'a')] LUH19171205-V09-49-page6.txt: [('-', '')] LUH19171205-V09-49-page7.txt: [('-', ''), ('-', '')] LUH19171205-V09-49-page8.txt: [('-', '')] LUH19171212-V09-50-page1.txt: [('"INSTRUCTIONs.-', '"INSTRUCTIONs.'), ('-Every', 'Every')] LUH19171212-V09-50-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19171212-V09-50-page4.txt: [('-', '')] LUH19171212-V09-50-page5.txt: [('-', '')] LUH19171212-V09-50-page6.txt: [('need-', 'need'), ('Confel--', 'Confel-')] LUH19171219-V09-51-page1.txt: [('-', '')] LUH19171219-V09-51-page10.txt: [('H.-', 'H.')] LUH19171219-V09-51-page11.txt: [('-', ''), ('-L.', 'L.'), ('-', ''), ('-', ''), ('-', '')] LUH19171219-V09-51-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19171219-V09-51-page4.txt: [('-service.', 'service.'), ('La-', 'La')] LUH19171219-V09-51-page5.txt: [('peo-', 'peo')] LUH19171219-V09-51-page6.txt: [('meet-', 'meet'), ('-', '')] LUH19171219-V09-51-page7.txt: [('-', ''), ('-', '')] LUH19180102-V10-01-page2.txt: [('-', '')] LUH19180102-V10-01-page3.txt: [('-life', 'life'), ('to-', 'to'), ('re-', 're')] LUH19180102-V10-01-page5.txt: [('.-', '.')] LUH19180102-V10-01-page6.txt: [('colpor-', 'colpor'), ('-', '')] LUH19180109-V10-02-page2.txt: [('-', '')] LUH19180109-V10-02-page4.txt: [('-and', 'and')] LUH19180109-V10-02-page5.txt: [('-', ''), ('-', ''), ('....-', '....')] LUH19180109-V10-02-page7.txt: [('in-', 'in'), ('-', '')] LUH19180116-V10-03-page1.txt: [('tri-', 'tri')] LUH19180116-V10-03-page2.txt: [('-', '')] LUH19180116-V10-03-page5.txt: [('-', '')] LUH19180116-V10-03-page6.txt: [('HER-', 'HER'), ('-', ''), ('-', ''), ('-', '')] LUH19180116-V10-03-page7.txt: [('Parent-', 'Parent')] LUH19180123-V10-04-page3.txt: [('valua-', 'valua'), ('-', ''), ('Anti-', 'Anti'), ('-', '')] LUH19180123-V10-04-page4.txt: [('-', ''), ('-', '')] LUH19180123-V10-04-page5.txt: [('-', ''), ('-', ''), ('-records', 'records'), ('oppor-', 'oppor')] LUH19180123-V10-04-page6.txt: [('-', ''), ('-', ''), ('La-', 'La')] LUH19180130-V10-05-page3.txt: [('-', '')] LUH19180130-V10-05-page4.txt: [('Micb-', 'Micb'), ('-', '')] LUH19180130-V10-05-page5.txt: [('Du-', 'Du')] LUH19180130-V10-05-page6.txt: [('Van-', 'Van'), ('.-', '.'), ('La-', 'La'), ('Wam-', 'Wam')] LUH19180130-V10-05-page7.txt: [('La-', 'La'), ('-', '')] LUH19180130-V10-05-page8.txt: [('Clark.....-', 'Clark.....')] LUH19180206-V10-06-page1.txt: [('-The', 'The'), ('-the', 'the')] LUH19180206-V10-06-page2.txt: [('-', ''), ('re-', 're'), ('-B', 'B')] LUH19180206-V10-06-page4.txt: [('Micb-', 'Micb'), ('-', ''), ('-', '')] LUH19180206-V10-06-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('Lit-', 'Lit')] LUH19180206-V10-06-page6.txt: [('-', ''), ('-', '')] LUH19180206-V10-06-page7.txt: [('Mc-', 'Mc')] LUH19180206-V10-06-page8.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180213-V10-07-page1.txt: [('-', ''), ('-', '')] LUH19180213-V10-07-page2.txt: [('-', '')] LUH19180213-V10-07-page3.txt: [('Calde-', 'Calde'), ('includ-', 'includ'), ('to-', 'to'), ('pe-', 'pe')] LUH19180213-V10-07-page4.txt: [('-', '')] LUH19180213-V10-07-page5.txt: [('Mu-', 'Mu')] LUH19180213-V10-07-page6.txt: [('-', ''), ('-', '')] LUH19180213-V10-07-page8.txt: [('-', ''), ('Mill-', 'Mill')] LUH19180220-V10-08-page1.txt: [('-', '')] LUH19180220-V10-08-page12.txt: [('-', '')] LUH19180220-V10-08-page3.txt: [('-', ''), ('Du-', 'Du')] LUH19180220-V10-08-page6.txt: [('inter-', 'inter')] LUH19180220-V10-08-page7.txt: [('.-', '.'), ('-', '')] LUH19180220-V10-08-page9.txt: [('-', '')] LUH19180227-V10-09-page1.txt: [('Mc-', 'Mc'), ('-', '')] LUH19180227-V10-09-page5.txt: [('-of', 'of')] LUH19180227-V10-09-page6.txt: [('Eliza-', 'Eliza')] LUH19180227-V10-09-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180227-V10-09-page8.txt: [('SALE.-', 'SALE.'), ('from-', 'from')] LUH19180306-V10-10-page4.txt: [('-', '')] LUH19180306-V10-10-page5.txt: [('-', ''), ('-', ''), ('possi-', 'possi')] LUH19180306-V10-10-page7.txt: [('-', '')] LUH19180306-V10-10-page8.txt: [('-....OD', '....OD')] LUH19180313-V10-11-page1.txt: [('con-', 'con'), ('-', ''), ('Ben-', 'Ben')] LUH19180313-V10-11-page5.txt: [('aban-', 'aban')] LUH19180313-V10-11-page8.txt: [('-', ''), ('-and', 'and')] LUH19180320-V10-12-page1.txt: [('-', '')] LUH19180320-V10-12-page2.txt: [('RocK-', 'RocK'), ('HUM-', 'HUM')] LUH19180320-V10-12-page3.txt: [('mes-', 'mes')] LUH19180320-V10-12-page4.txt: [('-', '')] LUH19180320-V10-12-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180320-V10-12-page8.txt: [('------', '-----')] LUH19180327-V10-13-page2.txt: [('HER-', 'HER'), ('-', ''), ('-', ''), ('-Eng.', 'Eng.')] LUH19180327-V10-13-page3.txt: [('meet-', 'meet')] LUH19180327-V10-13-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180327-V10-13-page7.txt: [('-', '')] LUH19180327-V10-13-page8.txt: [('.fol--', '.fol-'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180403-V10-14-page3.txt: [('-Schank', 'Schank'), ('-', ''), ('-', ''), ('Goals-', 'Goals')] LUH19180403-V10-14-page4.txt: [('-', '')] LUH19180403-V10-14-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('SALE.-', 'SALE.')] LUH19180403-V10-14-page8.txt: [('Foriegn-', 'Foriegn')] LUH19180410-V10-15-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180410-V10-15-page3.txt: [('-', '')] LUH19180410-V10-15-page6.txt: [('-Otis', 'Otis'), ('-William', 'William'), ('-Philippine', 'Philippine'), ('-', ''), ('-May', 'May'), ('-', ''), ('-one', 'one')] LUH19180410-V10-15-page7.txt: [('Cotton.-', 'Cotton.'), ('G.-', 'G.'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180410-V10-15-page8.txt: [('boy-', 'boy'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180417-V10-16-page1.txt: [('-', '')] LUH19180417-V10-16-page2.txt: [('Divi-', 'Divi')] LUH19180417-V10-16-page3.txt: [('-rates', 'rates'), ('-of', 'of')] LUH19180417-V10-16-page4.txt: [('ex-', 'ex'), ('"Go-to-', '"Go-to')] LUH19180417-V10-16-page5.txt: [('-', '')] LUH19180417-V10-16-page6.txt: [('-', '')] LUH19180417-V10-16-page8.txt: [('Cotton.-', 'Cotton.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180424-V10-17-page2.txt: [('tobac-', 'tobac')] LUH19180424-V10-17-page3.txt: [('-', '')] LUH19180424-V10-17-page5.txt: [('-', ''), ('-', '')] LUH19180424-V10-17-page6.txt: [('-', ''), ('Cam-', 'Cam'), ('-"Eng.', '"Eng.'), ('-..', '..'), ('-', ''), ('-', '')] LUH19180424-V10-17-page7.txt: [('Cotton.-', 'Cotton.'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180424-V10-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180501-V10-18-page2.txt: [('-', '')] LUH19180501-V10-18-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180508-V10-19-page3.txt: [('-series', 'series')] LUH19180508-V10-19-page4.txt: [('-', '')] LUH19180508-V10-19-page5.txt: [('-', ''), ('-Assist', 'Assist'), ('Jorgen-', 'Jorgen')] LUH19180508-V10-19-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180508-V10-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-l', 'l')] LUH19180515-V10-20-page1.txt: [('-', ''), ('examina-', 'examina')] LUH19180515-V10-20-page3.txt: [('-"It', '"It')] LUH19180515-V10-20-page4.txt: [('Danish-', 'Danish'), ('-', ''), ('-', '')] LUH19180515-V10-20-page5.txt: [('respon-', 'respon'), ('-', ''), ('-', ''), ('-', '')] LUH19180515-V10-20-page6.txt: [('-', ''), ('-', '')] LUH19180515-V10-20-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180515-V10-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180522-V10-21-page1.txt: [('-', '')] LUH19180522-V10-21-page3.txt: [('-', ''), ('-', '')] LUH19180522-V10-21-page4.txt: [('-', ''), ('-', '')] LUH19180522-V10-21-page5.txt: [('Mil-', 'Mil')] LUH19180522-V10-21-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180522-V10-21-page7.txt: [('-church', 'church'), ('-', ''), ('SALE.-', 'SALE.'), ('I-', 'I'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180522-V10-21-page8.txt: [('America.-', 'America.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180529-V10-22-page1.txt: [('-', ''), ('-', ''), ('-their', 'their')] LUH19180529-V10-22-page2.txt: [('-', ''), ('-', '')] LUH19180529-V10-22-page3.txt: [('-', ''), ('City......--', 'City......-')] LUH19180529-V10-22-page5.txt: [('-', '')] LUH19180529-V10-22-page6.txt: [('-', '')] LUH19180529-V10-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon')] LUH19180605-V10-23-page2.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180605-V10-23-page3.txt: [('-', ''), ('-', '')] LUH19180605-V10-23-page6.txt: [('-', ''), ('-', '')] LUH19180605-V10-23-page8.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('.----', '.---'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180612-V10-24-page2.txt: [('Mac-', 'Mac')] LUH19180612-V10-24-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180612-V10-24-page4.txt: [('-', '')] LUH19180612-V10-24-page6.txt: [('-campmeeting.', 'campmeeting.')] LUH19180612-V10-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180619-V10-25-page3.txt: [('-', '')] LUH19180619-V10-25-page4.txt: [('-', ''), ('dis-', 'dis')] LUH19180619-V10-25-page6.txt: [('-Milton', 'Milton')] LUH19180619-V10-25-page7.txt: [('-', ''), ('--', '-')] LUH19180619-V10-25-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180626-V10-26-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-good', 'good')] LUH19180626-V10-26-page2.txt: [('Total-', 'Total')] LUH19180626-V10-26-page3.txt: [('North-', 'North')] LUH19180626-V10-26-page4.txt: [('perfect-', 'perfect'), ('an-', 'an')] LUH19180626-V10-26-page7.txt: [('-', '')] LUH19180626-V10-26-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-', ''), ('-', '')] LUH19180703-V10-27-page2.txt: [('-', ''), ('-', '')] LUH19180703-V10-27-page3.txt: [('-', ''), ('-', '')] LUH19180703-V10-27-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180703-V10-27-page6.txt: [('-', ''), ('Sher-', 'Sher')] LUH19180703-V10-27-page7.txt: [('-', ''), ('-...............OD', '...............OD'), ('-Three', 'Three')] LUH19180703-V10-27-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.')] LUH19180710-V10-28-page11.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-BR', 'BR'), ('-', ''), ('-', '')] LUH19180710-V10-28-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180710-V10-28-page2.txt: [("-doesn't", "doesn't"), ('-triumph', 'triumph')] LUH19180710-V10-28-page3.txt: [('-Fenner', 'Fenner')] LUH19180710-V10-28-page4.txt: [('-', '')] LUH19180710-V10-28-page5.txt: [('-', ''), ('-mother', 'mother')] LUH19180710-V10-28-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('educa-', 'educa')] LUH19180717-V10-29-page1.txt: [('be-', 'be'), ('after-', 'after')] LUH19180717-V10-29-page4.txt: [('-', ''), ('meetings.-', 'meetings.'), ('-', ''), ('-', ''), ('pro-', 'pro')] LUH19180717-V10-29-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180717-V10-29-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-acre', 'acre')] LUH19180717-V10-29-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', '')] LUH19180717-V10-29-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180724-V10-30-page1.txt: [('use-', 'use'), ('-', '')] LUH19180724-V10-30-page10.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180724-V10-30-page11.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19180724-V10-30-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180724-V10-30-page4.txt: [('-', '')] LUH19180724-V10-30-page6.txt: [('the-', 'the')] LUH19180724-V10-30-page7.txt: [('-', ''), ('-', '')] LUH19180724-V10-30-page8.txt: [('-', '')] LUH19180724-V10-30-page9.txt: [('-', ''), ('-', ''), ('impor-', 'impor')] LUH19180731-V10-31-page1.txt: [('-', '')] LUH19180731-V10-31-page4.txt: [('-', ''), ('-M.', 'M.')] LUH19180731-V10-31-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-arrangement.', 'arrangement.')] LUH19180731-V10-31-page6.txt: [('inter.-', 'inter.')] LUH19180731-V10-31-page7.txt: [('-DR', 'DR'), ('-', ''), ('-', '')] LUH19180731-V10-31-page8.txt: [('-', ''), ('Vivi-', 'Vivi'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept', 'Sept')] LUH19180807-V10-32-page2.txt: [('purpose--', 'purpose-'), ('-', '')] LUH19180807-V10-32-page3.txt: [('-', ''), ('-a', 'a')] LUH19180807-V10-32-page4.txt: [('-', '')] LUH19180807-V10-32-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180807-V10-32-page6.txt: [('-', '')] LUH19180807-V10-32-page7.txt: [('-room', 'room'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('Mich-', 'Mich'), ('Ber-', 'Ber'), ('-', '')] LUH19180807-V10-32-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180814-V10-33-page10.txt: [('-Indiana', 'Indiana'), ('-', '')] LUH19180814-V10-33-page11.txt: [('-us', 'us'), ('-', '')] LUH19180814-V10-33-page12.txt: [('members.-', 'members.')] LUH19180814-V10-33-page15.txt: [('-room', 'room'), ('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-room', 'room'), ('-room', 'room'), ('-', ''), ('---', '--'), ('-', '')] LUH19180814-V10-33-page16.txt: [('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-Sept.', 'Sept.'), ('-', ''), ('-', ''), ('-', '')] LUH19180814-V10-33-page2.txt: [('-the', 'the')] LUH19180814-V10-33-page3.txt: [('-', ''), ('-upon', 'upon')] LUH19180814-V10-33-page4.txt: [('Chris-', 'Chris')] LUH19180814-V10-33-page6.txt: [('-', ''), ('them-', 'them'), ('-for', 'for'), ('-the', 'the'), ('and-', 'and')] LUH19180814-V10-33-page7.txt: [('-', '')] LUH19180814-V10-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19180814-V10-33-page9.txt: [('class--', 'class-'), ('educa-', 'educa')] LUH19180821-V10-34-page1.txt: [('-such', 'such'), ('-', ''), ('-', ''), ('-wide', 'wide')] LUH19180821-V10-34-page5.txt: [('-', '')] LUH19180821-V10-34-page6.txt: [('-On', 'On'), ('-', ''), ('-', '')] LUH19180821-V10-34-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180821-V10-34-page8.txt: [('-', ''), ('-', ''), ('-room', 'room'), ('-room', 'room'), ('-room', 'room'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-have', 'have'), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180828-V10-35-page2.txt: [('Confer-', 'Confer')] LUH19180828-V10-35-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19180828-V10-35-page4.txt: [('educa-', 'educa')] LUH19180828-V10-35-page7.txt: [('-room', 'room'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-', ''), ('-', '')] LUH19180828-V10-35-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.'), ('-Sept.', 'Sept.')] LUH19180904-V10-36-page1.txt: [('-', '')] LUH19180904-V10-36-page2.txt: [('-', '')] LUH19180904-V10-36-page4.txt: [('-', ''), ('gov-', 'gov'), ('-', ''), ('-', ''), ('Granton....-', 'Granton....')] LUH19180904-V10-36-page6.txt: [('-', '')] LUH19180904-V10-36-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-.-', '.-')] LUH19180904-V10-36-page8.txt: [('US-', 'US'), ('-', ''), ('-', ''), ('-', ''), ('-Sept.', 'Sept.')] LUH19180911-V10-37-page1.txt: [('-', '')] LUH19180911-V10-37-page11.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', '')] LUH19180911-V10-37-page12.txt: [('-', '')] LUH19180911-V10-37-page3.txt: [('-Sabbath', 'Sabbath')] LUH19180911-V10-37-page5.txt: [('-', '')] LUH19180911-V10-37-page8.txt: [('-', ''), ('at-', 'at')] LUH19180918-V10-38-page1.txt: [('Sani-', 'Sani')] LUH19180918-V10-38-page3.txt: [('-', '')] LUH19180918-V10-38-page4.txt: [('dis-', 'dis'), ('-', '')] LUH19180918-V10-38-page5.txt: [('-Henry', 'Henry'), ('in-', 'in'), ('Mr.-', 'Mr.'), ('Mel-', 'Mel'), ('...-', '...')] LUH19180918-V10-38-page6.txt: [('-', '')] LUH19180918-V10-38-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-', ''), ('-', '')] LUH19180925-V10-39-page2.txt: [('-', ''), ('-', '')] LUH19180925-V10-39-page3.txt: [('-', ''), ('sig-', 'sig')] LUH19180925-V10-39-page4.txt: [('Coun-', 'Coun')] LUH19180925-V10-39-page5.txt: [('-', ''), ('-', '')] LUH19180925-V10-39-page6.txt: [('-this', 'this')] LUH19180925-V10-39-page7.txt: [('"-', '"')] LUH19180925-V10-39-page8.txt: [('-From', 'From'), ('upon--', 'upon-'), ('ques-', 'ques')] LUH19181002-V10-40-page10.txt: [('-', '')] LUH19181002-V10-40-page11.txt: [('-', '')] LUH19181002-V10-40-page13.txt: [('-', ''), ('pres-', 'pres')] LUH19181002-V10-40-page14.txt: [('-ninth', 'ninth')] LUH19181002-V10-40-page15.txt: [('ain-', 'ain'), ('de-', 'de')] LUH19181002-V10-40-page4.txt: [('Ninety-', 'Ninety')] LUH19181002-V10-40-page7.txt: [('-', '')] LUH19181002-V10-40-page9.txt: [('respect-', 'respect')] LUH19181009-V10-41-page1.txt: [('-', ''), ('-', '')] LUH19181009-V10-41-page2.txt: [('-', '')] LUH19181009-V10-41-page3.txt: [('per-', 'per'), ('-and', 'and'), ('Mc-', 'Mc'), ('remarka-', 'remarka')] LUH19181009-V10-41-page4.txt: [('Mich-', 'Mich'), ('-igan', 'igan')] LUH19181009-V10-41-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', '')] LUH19181009-V10-41-page8.txt: [('-', '')] LUH19181016-V10-42-page10.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19181016-V10-42-page11.txt: [('-', ''), ('-A', 'A')] LUH19181016-V10-42-page12.txt: [('-of', 'of')] LUH19181016-V10-42-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19181016-V10-42-page5.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc')] LUH19181016-V10-42-page7.txt: [('-', '')] LUH19181016-V10-42-page8.txt: [('-', '')] LUH19181016-V10-42-page9.txt: [('-', ''), ('Parent-', 'Parent'), ('-lreenville', 'lreenville')] LUH19181023-V10-43-page1.txt: [('HER-', 'HER')] LUH19181023-V10-43-page2.txt: [('accom-', 'accom'), ('-of', 'of')] LUH19181023-V10-43-page3.txt: [('-a', 'a'), ('expect-', 'expect')] LUH19181023-V10-43-page4.txt: [('scat-', 'scat'), ('-', ''), ('Sep-', 'Sep')] LUH19181023-V10-43-page5.txt: [('-', '')] LUH19181023-V10-43-page6.txt: [('-', '')] LUH19181023-V10-43-page7.txt: [('-gallon', 'gallon'), ('cans-', 'cans'), ('made-', 'made')] LUH19181023-V10-43-page8.txt: [('-will', 'will'), ('here-', 'here'), ('-', '')] LUH19181030-V10-44-page1.txt: [('-Worthy', 'Worthy')] LUH19181030-V10-44-page2.txt: [('-G.', 'G.')] LUH19181030-V10-44-page3.txt: [('-', '')] LUH19181030-V10-44-page5.txt: [('-', '')] LUH19181030-V10-44-page7.txt: [('Lavender.-.----', 'Lavender.-.---')] LUH19181030-V10-44-page8.txt: [('-gallon', 'gallon')] LUH19181106-V10-45-page1.txt: [('-', ''), ('-', '')] LUH19181106-V10-45-page3.txt: [('fire."-', 'fire."')] LUH19181106-V10-45-page4.txt: [('-and', 'and')] LUH19181106-V10-45-page5.txt: [('epidemic-', 'epidemic'), ('-', ''), ('-to', 'to')] LUH19181106-V10-45-page6.txt: [('-', '')] LUH19181106-V10-45-page7.txt: [('-', ''), ('-Box', 'Box')] LUH19181106-V10-45-page8.txt: [('-gallon', 'gallon'), ('print-', 'print')] LUH19181113-V10-46-page2.txt: [('-', '')] LUH19181113-V10-46-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('to-', 'to'), ('San-', 'San')] LUH19181113-V10-46-page5.txt: [('-', '')] LUH19181113-V10-46-page6.txt: [('in-', 'in')] LUH19181113-V10-46-page7.txt: [('-making', 'making'), ('-Three', 'Three'), ('-', '')] LUH19181113-V10-46-page8.txt: [('-Our', 'Our'), ('"Inas-', '"Inas')] LUH19181120-V10-47-page1.txt: [('-', ''), ('fin-', 'fin')] LUH19181120-V10-47-page10.txt: [('Mor-', 'Mor')] LUH19181120-V10-47-page11.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon')] LUH19181120-V10-47-page12.txt: [('-', '')] LUH19181120-V10-47-page2.txt: [('re-', 're')] LUH19181120-V10-47-page3.txt: [('-', ''), ('environ-', 'environ')] LUH19181120-V10-47-page4.txt: [('-', '')] LUH19181120-V10-47-page5.txt: [('-Rebecca', 'Rebecca')] LUH19181120-V10-47-page6.txt: [('-John', 'John'), ('KINsEv.-', 'KINsEv.'), ('BUCK.-', 'BUCK.'), ('BEAURAIN.-', 'BEAURAIN.'), ('child-', 'child')] LUH19181120-V10-47-page7.txt: [('STONE.-', 'STONE.'), ('VINCENT.-', 'VINCENT.'), ('-Byrdie', 'Byrdie'), ('-Adel', 'Adel'), ('STRICKLAND.-', 'STRICKLAND.'), ('-Hannah', 'Hannah'), ('CoHooN.-', 'CoHooN.'), ('-Helen', 'Helen')] LUH19181120-V10-47-page9.txt: [('-', '')] LUH19181127-V10-48-page1.txt: [('-', '')] LUH19181127-V10-48-page2.txt: [('-', ''), ('-Some', 'Some')] LUH19181127-V10-48-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19181127-V10-48-page4.txt: [('-', ''), ('-have', 'have'), ('-', '')] LUH19181127-V10-48-page5.txt: [('Rap-', 'Rap'), ('-superintendent', 'superintendent')] LUH19181127-V10-48-page6.txt: [('faith-', 'faith'), ('-', '')] LUH19181127-V10-48-page7.txt: [('Morn-', 'Morn'), ('-', ''), ('-', ''), ('cut-', 'cut'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', '')] LUH19181127-V10-48-page8.txt: [('-', '')] LUH19181204-V10-49-page1.txt: [('-', ''), ('-Nixoit-Waterman', 'Nixoit-Waterman'), ('-fele', 'fele')] LUH19181204-V10-49-page10.txt: [('-', ''), ('-find', 'find'), ('-gallon', 'gallon'), ('-', '')] LUH19181204-V10-49-page11.txt: [('-', ''), ('-', ''), ('-be', 'be'), ('-', ''), ('-', ''), ('-', '')] LUH19181204-V10-49-page12.txt: [('A-', 'A'), ('-', ''), ('-', '')] LUH19181204-V10-49-page2.txt: [('-', '')] LUH19181204-V10-49-page3.txt: [('-', '')] LUH19181204-V10-49-page4.txt: [('assign-', 'assign'), ('con-', 'con')] LUH19181204-V10-49-page6.txt: [('-what', 'what'), ('-', '')] LUH19181211-V10-50-page1.txt: [('-', ''), ('-', ''), ('-are', 'are'), ('-', ''), ('con-', 'con')] LUH19181211-V10-50-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-the', 'the'), ('be-', 'be'), ('bet--', 'bet-')] LUH19181211-V10-50-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-just', 'just'), ('week-', 'week')] LUH19181211-V10-50-page4.txt: [('-', ''), ('-', ''), ('-', '')] LUH19181211-V10-50-page5.txt: [('-', ''), ('-', ''), ('at-', 'at')] LUH19181211-V10-50-page7.txt: [('-gallon', 'gallon'), ('-', '')] LUH19181211-V10-50-page8.txt: [('-', ''), ('-supply', 'supply')] LUH19181218-V10-51-page1.txt: [('-am', 'am'), ('-', '')] LUH19181218-V10-51-page2.txt: [('-', ''), ('-', '')] LUH19181218-V10-51-page3.txt: [('beauty-', 'beauty'), ('De-', 'De')] LUH19181218-V10-51-page4.txt: [('-', ''), ('-', '')] LUH19181218-V10-51-page5.txt: [('-', '')] LUH19181218-V10-51-page6.txt: [('-', ''), ('-year', 'year')] LUH19181218-V10-51-page7.txt: [('-', ''), ('-', ''), ('-to', 'to')] LUH19181218-V10-51-page8.txt: [('at-', 'at')] LUH19190101-V11-01-page2.txt: [('Sanitarium-', 'Sanitarium'), ('re-', 're')] LUH19190101-V11-01-page3.txt: [('-on', 'on'), ('-', '')] LUH19190101-V11-01-page4.txt: [('-', '')] LUH19190101-V11-01-page5.txt: [('-', ''), ('peo-', 'peo')] LUH19190101-V11-01-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190101-V11-01-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190108-V11-02-page1.txt: [('-', '')] LUH19190108-V11-02-page2.txt: [('-', '')] LUH19190108-V11-02-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190108-V11-02-page4.txt: [('possible---', 'possible--')] LUH19190108-V11-02-page5.txt: [('Young-', 'Young'), ('the-', 'the'), ('--J.', '-J.')] LUH19190108-V11-02-page7.txt: [('-', ''), ('-', ''), ('--.', '-.'), ('DeCamp-', 'DeCamp'), ('-', '')] LUH19190108-V11-02-page8.txt: [('-the', 'the'), ('-', '')] LUH19190115-V11-03-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190115-V11-03-page3.txt: [('sup-', 'sup'), ('suc-', 'suc')] LUH19190115-V11-03-page4.txt: [('-', '')] LUH19190115-V11-03-page6.txt: [('in-', 'in')] LUH19190115-V11-03-page8.txt: [('wit--', 'wit-'), ('op-', 'op'), ('-', '')] LUH19190122-V11-04-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19190122-V11-04-page11.txt: [('-', ''), ('COLTON-', 'COLTON'), ('-', '')] LUH19190122-V11-04-page12.txt: [('-songs', 'songs')] LUH19190122-V11-04-page14.txt: [('to.-', 'to.'), ('-', ''), ('-', ''), ('-', '')] LUH19190122-V11-04-page15.txt: [('.....-', '.....'), ('-', ''), ('-St.', 'St.'), ('-', '')] LUH19190122-V11-04-page2.txt: [('ev-', 'ev')] LUH19190122-V11-04-page3.txt: [('strength.-', 'strength.')] LUH19190122-V11-04-page4.txt: [('-', '')] LUH19190122-V11-04-page5.txt: [('-Maud', 'Maud'), ('-Ferdinand', 'Ferdinand'), ('-Y.', 'Y.'), ('-a', 'a'), ('-William', 'William')] LUH19190122-V11-04-page6.txt: [('-Henry', 'Henry'), ('-John', 'John'), ('-Rebecca', 'Rebecca'), ('-Martin', 'Martin'), ('-Mrs.', 'Mrs.'), ('-Mrs.', 'Mrs.'), ('-Mrs.', 'Mrs.'), ('-Dorris', 'Dorris'), ('-Ruth', 'Ruth')] LUH19190122-V11-04-page7.txt: [('an-', 'an'), ('-', ''), ('in-', 'in')] LUH19190122-V11-04-page8.txt: [('-', '')] LUH19190122-V11-04-page9.txt: [('-', '')] LUH19190129-V11-05-page1.txt: [('Anti-', 'Anti')] LUH19190129-V11-05-page2.txt: [('-That', 'That'), ('-', '')] LUH19190129-V11-05-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190129-V11-05-page4.txt: [('to-', 'to'), ('-', '')] LUH19190129-V11-05-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190129-V11-05-page6.txt: [('salva-', 'salva')] LUH19190129-V11-05-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-heart', 'heart'), ('-', '')] LUH19190129-V11-05-page8.txt: [('-', ''), ('-', ''), ('College-', 'College'), ('Col-', 'Col')] LUH19190205-V11-06-page2.txt: [('pro-', 'pro')] LUH19190205-V11-06-page4.txt: [('-he', 'he')] LUH19190205-V11-06-page5.txt: [('-', ''), ('-a', 'a'), ('-', ''), ('-', '')] LUH19190205-V11-06-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('en-', 'en')] LUH19190205-V11-06-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190205-V11-06-page8.txt: [('-', ''), ('-', ''), ('Mid-', 'Mid')] LUH19190212-V11-07-page1.txt: [('-were', 'were'), ('-', '')] LUH19190212-V11-07-page10.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190212-V11-07-page11.txt: [('-', '')] LUH19190212-V11-07-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190212-V11-07-page3.txt: [('PERU-', 'PERU'), ('States-', 'States')] LUH19190212-V11-07-page4.txt: [('reach-', 'reach'), ('-', '')] LUH19190212-V11-07-page5.txt: [('-', '')] LUH19190212-V11-07-page6.txt: [('-', ''), ('-White', 'White')] LUH19190212-V11-07-page7.txt: [('Anti--', 'Anti-')] LUH19190212-V11-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-the', 'the')] LUH19190212-V11-07-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190219-V11-08-page1.txt: [('Mission-', 'Mission')] LUH19190219-V11-08-page11.txt: [('-We', 'We'), ('some-', 'some'), ('-', '')] LUH19190219-V11-08-page13.txt: [('-', '')] LUH19190219-V11-08-page14.txt: [('-I', 'I'), ('se-', 'se')] LUH19190219-V11-08-page15.txt: [('-', ''), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190219-V11-08-page16.txt: [('-', '')] LUH19190219-V11-08-page2.txt: [('-fewin', 'fewin')] LUH19190219-V11-08-page3.txt: [('rea-', 'rea')] LUH19190219-V11-08-page4.txt: [('lib-', 'lib'), ("-MisgiOn'ary", "MisgiOn'ary"), ('-', '')] LUH19190219-V11-08-page6.txt: [('amendment.-', 'amendment.')] LUH19190219-V11-08-page7.txt: [('-to', 'to')] LUH19190219-V11-08-page9.txt: [('-Life-giver.', 'Life-giver.'), ('Mich-', 'Mich'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190226-V11-09-page1.txt: [('-', '')] LUH19190226-V11-09-page11.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', '')] LUH19190226-V11-09-page3.txt: [('-', '')] LUH19190226-V11-09-page4.txt: [('Wa-', 'Wa'), ('-', '')] LUH19190226-V11-09-page5.txt: [('-', '')] LUH19190226-V11-09-page6.txt: [('-', '')] LUH19190226-V11-09-page7.txt: [('-', '')] LUH19190226-V11-09-page8.txt: [('Tri-', 'Tri')] LUH19190305-V11-10-page1.txt: [('Vol-', 'Vol')] LUH19190305-V11-10-page2.txt: [('-should', 'should'), ('edu-', 'edu')] LUH19190305-V11-10-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190305-V11-10-page4.txt: [('No.-', 'No.'), ('-', '')] LUH19190305-V11-10-page5.txt: [('-', '')] LUH19190305-V11-10-page6.txt: [('-', ''), ('-', ''), ('re-', 're')] LUH19190305-V11-10-page7.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-', ''), ('---', '--'), ('------', '-----')] LUH19190305-V11-10-page8.txt: [('-', ''), ('encour-', 'encour')] LUH19190312-V11-11-page10.txt: [('-', '')] LUH19190312-V11-11-page11.txt: [('-', '')] LUH19190312-V11-11-page12.txt: [('-', ''), ('-', '')] LUH19190312-V11-11-page15.txt: [('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190312-V11-11-page16.txt: [('con-', 'con')] LUH19190312-V11-11-page2.txt: [('Washing-', 'Washing')] LUH19190312-V11-11-page3.txt: [('-', ''), ('TM-', 'TM'), ('fiber-', 'fiber'), ('-', '')] LUH19190312-V11-11-page5.txt: [('-', ''), ('-', ''), ('re-', 're'), ('Seventh-', 'Seventh')] LUH19190312-V11-11-page7.txt: [('-', ''), ('-souls', 'souls')] LUH19190312-V11-11-page9.txt: [('-', ''), ('presi-', 'presi')] LUH19190319-V11-12-page1.txt: [('-', ''), ('-', ''), ('--In', '-In')] LUH19190319-V11-12-page10.txt: [('-carefully', 'carefully'), ('-for', 'for')] LUH19190319-V11-12-page11.txt: [('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190319-V11-12-page12.txt: [('-', ''), ('Dan-', 'Dan')] LUH19190319-V11-12-page3.txt: [('-', ''), ('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in')] LUH19190319-V11-12-page4.txt: [('-', '')] LUH19190319-V11-12-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-are', 'are'), ('-together', 'together'), ('-God.\'-"', 'God.\'-"'), ('-', ''), ('-of', 'of'), ('-', ''), ('-not', 'not'), ('repre-', 'repre'), ('-obser', 'obser'), ('-.', '.'), ('-\'ConStitutiori."', '\'ConStitutiori."'), ('-in', 'in')] LUH19190319-V11-12-page7.txt: [('-address', 'address'), ('-', ''), ("Mission-ary-Convention'DAtes--", "Mission-ary-Convention'DAtes-"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('insti-', 'insti'), ('Eng...-', 'Eng...')] LUH19190319-V11-12-page8.txt: [('-', ''), ('-', ''), ("-'", "'")] LUH19190319-V11-12-page9.txt: [('-schools', 'schools'), ('-', ''), ('-', ''), ('-----', '----')] LUH19190326-V11-13-page1.txt: [('--Aril', '-Aril'), ('-May', 'May')] LUH19190326-V11-13-page10.txt: [('-Wabash', 'Wabash')] LUH19190326-V11-13-page11.txt: [('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-', '')] LUH19190326-V11-13-page2.txt: [('starv-', 'starv')] LUH19190326-V11-13-page3.txt: [('-the', 'the')] LUH19190326-V11-13-page4.txt: [('-', ''), ('-printing', 'printing'), ('-', ''), ('-month.', 'month.'), ("-'the", "'the"), ('work.-', 'work.'), ('-', ''), ('-', ''), ('-', ''), ('----It', '---It'), ("'the--", "'the-"), ('-', ''), ('satiSfac-', 'satiSfac'), ('-', '')] LUH19190326-V11-13-page5.txt: [('-all', 'all'), ('-sYstematize', 'sYstematize'), ('-is', 'is'), ('base-', 'base'), ("-the''training", "the''training"), ('-building', 'building'), ('-Dining', 'Dining'), ('"eonifielled-tOroom.-', '"eonifielled-tOroom.'), ('-Where', 'Where'), ('-', ''), ('-onfile', 'onfile'), ('--thirtyapplications', '-thirtyapplications'), ('-for', 'for'), ('-', ''), ('-large', 'large'), ('.-', '.'), ('-', ''), ('enroll-', 'enroll'), ('-', ''), ("'before-May-", "'before-May"), ("-Class'wOrk", "Class'wOrk"), ('-riot', 'riot'), ('-', ''), ('it--', 'it-'), ('-a-', 'a-'), ('-music-.departments', 'music-.departments'), ('-', ''), ('-', ''), ('and-', 'and'), ('-Make', 'Make'), ('-', '')] LUH19190326-V11-13-page6.txt: [('-of', 'of')] LUH19190326-V11-13-page7.txt: [('-', ''), ('-', '')] LUH19190326-V11-13-page8.txt: [('-wonderfully', 'wonderfully'), ('-', ''), ('corres-', 'corres'), ('-pondence', 'pondence'), ('Sister-', 'Sister'), ('con-', 'con'), ('-injured', 'injured'), ('-', ''), ('operation-', 'operation'), ('-', ''), ('-', ''), ("-'", "'"), ('inter-', 'inter'), ('Sun-', 'Sun')] LUH19190326-V11-13-page9.txt: [('-nrientioned', 'nrientioned'), ('Moline.-', 'Moline.'), ('-', ''), ('-', ''), ('the-', 'the'), ('-', ''), ('-', ''), ('dor-', 'dor'), ('-', ''), ('-mitory', 'mitory'), ('-', ''), ('-', ''), ('-also', 'also'), ('-who', 'who'), ('-between', 'between'), ('-', ''), ('W..H-', 'W..H'), ('--', '-'), ('-', ''), ('-', '')] LUH19190402-V11-14-page10.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190402-V11-14-page11.txt: [('-cent', 'cent'), ('..-', '..')] LUH19190402-V11-14-page12.txt: [('-', '')] LUH19190402-V11-14-page13.txt: [('-', '')] LUH19190402-V11-14-page15.txt: [('-gallon', 'gallon'), ('-pound', 'pound'), ('-acre', 'acre'), ('-Chas.', 'Chas.')] LUH19190402-V11-14-page16.txt: [('-', '')] LUH19190402-V11-14-page4.txt: [('build-', 'build')] LUH19190402-V11-14-page5.txt: [('Seventh-day-', 'Seventh-day')] LUH19190402-V11-14-page6.txt: [('subscrip-', 'subscrip')] LUH19190402-V11-14-page7.txt: [('-', '')] LUH19190402-V11-14-page8.txt: [('invita-', 'invita')] LUH19190409-V11-15-page11.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-room', 'room')] LUH19190409-V11-15-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('r-', 'r')] LUH19190409-V11-15-page4.txt: [('Battle-', 'Battle')] LUH19190409-V11-15-page5.txt: [('-out', 'out'), ('-', ''), ('-', ''), ('con-', 'con'), ('-', '')] LUH19190409-V11-15-page6.txt: [('-', '')] LUH19190409-V11-15-page8.txt: [('-', ''), ('Read-', 'Read')] LUH19190409-V11-15-page9.txt: [('-will', 'will'), ('-', '')] LUH19190416-V11-16-page1.txt: [('-to', 'to')] LUH19190416-V11-16-page10.txt: [('-', '')] LUH19190416-V11-16-page11.txt: [('-Elmer', 'Elmer'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-room', 'room'), ('-room', 'room')] LUH19190416-V11-16-page2.txt: [('-united', 'united')] LUH19190416-V11-16-page4.txt: [('-', '')] LUH19190416-V11-16-page5.txt: [('over-', 'over'), ('stu-', 'stu'), ('cam-', 'cam'), ('denomina-', 'denomina')] LUH19190416-V11-16-page6.txt: [('-nursed', 'nursed'), ('-', ''), ('-', '')] LUH19190416-V11-16-page7.txt: [('-', '')] LUH19190416-V11-16-page8.txt: [('-seemed', 'seemed'), ('-', '')] LUH19190416-V11-16-page9.txt: [('-', '')] LUH19190423-V11-17-page10.txt: [('encour-', 'encour')] LUH19190423-V11-17-page11.txt: [('-', ''), ('-', ''), ('-a', 'a'), ('-', '')] LUH19190423-V11-17-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190423-V11-17-page13.txt: [('-', '')] LUH19190423-V11-17-page14.txt: [('-consecrated', 'consecrated'), ('-', '')] LUH19190423-V11-17-page15.txt: [('.-', '.')] LUH19190423-V11-17-page2.txt: [('pres-', 'pres')] LUH19190423-V11-17-page6.txt: [('-for', 'for'), ('peo-', 'peo')] LUH19190423-V11-17-page7.txt: [('homes.-', 'homes.')] LUH19190423-V11-17-page8.txt: [('treat-', 'treat'), ('can-', 'can')] LUH19190423-V11-17-page9.txt: [('-', ''), ('-', '')] LUH19190430-V11-18-page10.txt: [('-', ''), ('-', '')] LUH19190430-V11-18-page11.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', '')] LUH19190430-V11-18-page3.txt: [('Frank-', 'Frank')] LUH19190430-V11-18-page4.txt: [('-tried', 'tried')] LUH19190430-V11-18-page5.txt: [('-day', 'day')] LUH19190430-V11-18-page6.txt: [('edu-', 'edu')] LUH19190430-V11-18-page7.txt: [('-Mc-', 'Mc-'), ('-', ''), ('-', '')] LUH19190430-V11-18-page8.txt: [('-', ''), ('-connection', 'connection')] LUH19190430-V11-18-page9.txt: [('-', ''), ('-', '')] LUH19190507-V11-19-page1.txt: [('-', ''), ('-', '')] LUH19190507-V11-19-page11.txt: [('corn-', 'corn'), ('-fort', 'fort'), ('-', ''), ('-weeks', 'weeks'), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('--', '-'), ('-D', 'D')] LUH19190507-V11-19-page12.txt: [('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound')] LUH19190507-V11-19-page2.txt: [('-', ''), ('-angels', 'angels'), ('-at', 'at')] LUH19190507-V11-19-page4.txt: [('-', '')] LUH19190507-V11-19-page5.txt: [('-', ''), ('-', ''), ('-The', 'The'), ('-', '')] LUH19190507-V11-19-page6.txt: [('-', '')] LUH19190507-V11-19-page7.txt: [('-', '')] LUH19190507-V11-19-page8.txt: [('News-', 'News'), ('-home', 'home')] LUH19190514-V11-20-page5.txt: [('-', ''), ('-', '')] LUH19190514-V11-20-page6.txt: [('-', '')] LUH19190514-V11-20-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190514-V11-20-page8.txt: [('-', ''), ('-', '')] LUH19190521-V11-21-page1.txt: [('-', '')] LUH19190521-V11-21-page2.txt: [('-for', 'for')] LUH19190521-V11-21-page3.txt: [('-', ''), ('-', ''), ('-help', 'help')] LUH19190521-V11-21-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190521-V11-21-page5.txt: [('-', '')] LUH19190521-V11-21-page6.txt: [('-Twelve', 'Twelve'), ('-', ''), ('-', '')] LUH19190521-V11-21-page7.txt: [('-', ''), ('CK-', 'CK')] LUH19190521-V11-21-page8.txt: [('Wetk-', 'Wetk'), ('-', '')] LUH19190528-V11-22-page1.txt: [('-we', 'we'), ('-', ''), ('-', ''), ('-God', 'God'), ('-', ''), ('-', '')] LUH19190528-V11-22-page10.txt: [('-', ''), ('-FERRIS', 'FERRIS'), ('Pot-', 'Pot'), ('-', ''), ('-room', 'room')] LUH19190528-V11-22-page11.txt: [('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19190528-V11-22-page12.txt: [('-', '')] LUH19190528-V11-22-page2.txt: [('-', ''), ('authoi-', 'authoi'), ('-has', 'has')] LUH19190528-V11-22-page3.txt: [('-', '')] LUH19190528-V11-22-page5.txt: [('-', ''), ('-', '')] LUH19190528-V11-22-page6.txt: [('-', ''), ('-', '')] LUH19190528-V11-22-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190528-V11-22-page8.txt: [('-', ''), ('Company.-', 'Company.'), ('Herrin-', 'Herrin'), ('Califor-', 'Califor')] LUH19190528-V11-22-page9.txt: [('-weekly', 'weekly')] LUH19190604-V11-23-page10.txt: [('orders-', 'orders'), ('-', '')] LUH19190604-V11-23-page11.txt: [('-', ''), ('-', ''), ('-room', 'room')] LUH19190604-V11-23-page12.txt: [('de-', 'de'), ('--', '-')] LUH19190604-V11-23-page3.txt: [('-', ''), ('--r-are', '-r-are')] LUH19190604-V11-23-page4.txt: [('-', '')] LUH19190604-V11-23-page5.txt: [('truth.-', 'truth.'), ('-', ''), ('-It', 'It')] LUH19190604-V11-23-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190604-V11-23-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190604-V11-23-page8.txt: [('hun--', 'hun-'), ('-', ''), ('-at', 'at')] LUH19190604-V11-23-page9.txt: [('-bless', 'bless'), ('Sabi-', 'Sabi'), ('-', ''), ('observ-', 'observ')] LUH19190611-V11-24-page1.txt: [('-', '')] LUH19190611-V11-24-page10.txt: [('-', ''), ('-Hazel', 'Hazel')] LUH19190611-V11-24-page11.txt: [('-', ''), ('-', '')] LUH19190611-V11-24-page12.txt: [('-', '')] LUH19190611-V11-24-page3.txt: [('safe-', 'safe'), ('-', '')] LUH19190611-V11-24-page5.txt: [('-of', 'of'), ('-', ''), ('-generally', 'generally')] LUH19190611-V11-24-page6.txt: [('-', '')] LUH19190611-V11-24-page7.txt: [('-room', 'room'), ('meet-', 'meet'), ('-', ''), ('-', ''), ('-', '')] LUH19190611-V11-24-page9.txt: [('-', '')] LUH19190618-V11-25-page10.txt: [('-', ''), ('con-', 'con'), ('-', ''), ('.-', '.')] LUH19190618-V11-25-page11.txt: [('-Selected.', 'Selected.'), ('-', ''), ('School-', 'School'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-OD', 'OD'), ('-HERALD', 'HERALD'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('.-', '.'), ('--', '-'), ('--', '-'), ('-', ''), ('-', '')] LUH19190618-V11-25-page12.txt: [('-', ''), ('-the', 'the'), ('-', ''), ('-', '')] LUH19190618-V11-25-page2.txt: [('-own', 'own')] LUH19190618-V11-25-page3.txt: [('-and', 'and'), ('-the', 'the'), ('-the', 'the'), ('-seem', 'seem'), ('-', '')] LUH19190618-V11-25-page4.txt: [('-', ''), ('-been', 'been'), ('-', ''), ('con-', 'con')] LUH19190618-V11-25-page5.txt: [('-Harris', 'Harris'), ('Con-', 'Con'), ('-', ''), ('-', '')] LUH19190618-V11-25-page6.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', '')] LUH19190618-V11-25-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Brother.', 'Brother.')] LUH19190618-V11-25-page8.txt: [('-one.', 'one.')] LUH19190618-V11-25-page9.txt: [('-addresses', 'addresses'), ('-', ''), ('..-.-', '..-.'), ('-""\'', '""\''), ('-Clintonville', 'Clintonville'), ('-', '')] LUH19190625-V11-26-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-walls', 'walls')] LUH19190625-V11-26-page3.txt: [('-', '')] LUH19190625-V11-26-page4.txt: [('-call.', 'call.')] LUH19190625-V11-26-page5.txt: [('-the', 'the'), ('Day.-', 'Day.'), ('-', ''), ('-of', 'of'), ('-work', 'work'), ('School-', 'School')] LUH19190625-V11-26-page6.txt: [('work.-', 'work.'), ('-', '')] LUH19190625-V11-26-page7.txt: [('accom-', 'accom'), ('suffer-', 'suffer'), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] LUH19190625-V11-26-page8.txt: [('-', '')] LUH19190702-V11-27-page1.txt: [('-', ''), ('-school.', 'school.'), ('-for', 'for'), ('-give', 'give'), ('-a', 'a'), ('-we', 'we')] LUH19190702-V11-27-page2.txt: [('-', ''), ('receive-', 'receive'), ('propor-', 'propor'), ('-students', 'students')] LUH19190702-V11-27-page4.txt: [('-', ''), ('-', '')] LUH19190702-V11-27-page5.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190702-V11-27-page6.txt: [('-', ''), ('-', '')] LUH19190702-V11-27-page7.txt: [('-', ''), ('-', '')] LUH19190702-V11-27-page8.txt: [('-', ''), ('-', '')] LUH19190709-V11-28-page2.txt: [('-remember', 'remember'), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in')] LUH19190709-V11-28-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('Advent-', 'Advent'), ('-', '')] LUH19190709-V11-28-page4.txt: [('-', ''), ('-to', 'to'), ('-', '')] LUH19190709-V11-28-page5.txt: [('-making', 'making')] LUH19190709-V11-28-page6.txt: [('-', '')] LUH19190709-V11-28-page7.txt: [('-', ''), ("'-", "'"), ('-', ''), ('.-', '.'), ('-.', '.'), ('-', '')] LUH19190716-V11-29-page2.txt: [('South-', 'South'), ('-', ''), ('Blosser-', 'Blosser')] LUH19190716-V11-29-page3.txt: [('-', '')] LUH19190716-V11-29-page4.txt: [('-', ''), ('-', '')] LUH19190716-V11-29-page5.txt: [('-', '')] LUH19190716-V11-29-page6.txt: [('-', ''), ('-', '')] LUH19190716-V11-29-page7.txt: [('-', ''), ('Colo-', 'Colo'), ('-gallon', 'gallon'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190716-V11-29-page8.txt: [('-Juanita"', 'Juanita"')] LUH19190723-V11-30-page11.txt: [('-', '')] LUH19190723-V11-30-page12.txt: [('-sermons', 'sermons')] LUH19190723-V11-30-page13.txt: [('-', '')] LUH19190723-V11-30-page14.txt: [('with-', 'with')] LUH19190723-V11-30-page15.txt: [('Amanwhoisacquaintedwithfiringalow-', 'Amanwhoisacquaintedwithfiringalow'), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] LUH19190723-V11-30-page3.txt: [('-F.', 'F.'), ('-', '')] LUH19190723-V11-30-page5.txt: [('-', ''), ('-are', 'are')] LUH19190723-V11-30-page6.txt: [('-', ''), ('-this', 'this'), ('-', ''), ('-', '')] LUH19190723-V11-30-page7.txt: [('inter-', 'inter'), ('-', ''), ('A.-', 'A.')] LUH19190723-V11-30-page8.txt: [('-visited', 'visited'), ('-of', 'of'), ('-', ''), ('some-', 'some'), ('-.', '.'), ('-', ''), ('-', '')] LUH19190723-V11-30-page9.txt: [('work-', 'work')] LUH19190730-V11-31-page11.txt: [('-gallon', 'gallon'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', '')] LUH19190730-V11-31-page3.txt: [('hair-trig-', 'hair-trig'), ('-', '')] LUH19190730-V11-31-page4.txt: [('-', '')] LUH19190730-V11-31-page6.txt: [('-of', 'of')] LUH19190730-V11-31-page7.txt: [('-', ''), ('Confer-', 'Confer'), ('-we', 'we'), ('-', '')] LUH19190730-V11-31-page8.txt: [('-women', 'women'), ('-their', 'their')] LUH19190730-V11-31-page9.txt: [('year-', 'year')] LUH19190806-V11-32-page1.txt: [('conduct-', 'conduct')] LUH19190806-V11-32-page10.txt: [('-Ruth', 'Ruth')] LUH19190806-V11-32-page11.txt: [('-the', 'the'), ('-Would', 'Would'), ('-', ''), ('-', '')] LUH19190806-V11-32-page2.txt: [('-Indiana', 'Indiana'), ('popu-', 'popu')] LUH19190806-V11-32-page3.txt: [('-because', 'because')] LUH19190806-V11-32-page4.txt: [('-', '')] LUH19190806-V11-32-page5.txt: [('Parent-', 'Parent'), ('-', '')] LUH19190806-V11-32-page6.txt: [('-by', 'by')] LUH19190806-V11-32-page7.txt: [('-', '')] LUH19190806-V11-32-page8.txt: [('-camp', 'camp')] LUH19190806-V11-32-page9.txt: [('-', ''), ('-', ''), ('-acre', 'acre'), ('-room-cottage', 'room-cottage')] LUH19190813-V11-33-page10.txt: [('-', '')] LUH19190813-V11-33-page11.txt: [('-to', 'to'), ('-----', '----'), ('-', ''), ('-', ''), ('-BR', 'BR')] LUH19190813-V11-33-page12.txt: [("--'-Abraham", "-'-Abraham")] LUH19190813-V11-33-page2.txt: [('-', ''), ('-schools', 'schools'), ('-generally', 'generally'), ('compe-', 'compe'), ('-what', 'what'), ('-', ''), ('these-at-', 'these-at'), ('-in', 'in'), ('-', ''), ('-this', 'this'), ('-training', 'training'), ('-far', 'far')] LUH19190813-V11-33-page3.txt: [('-', ''), ('an-', 'an')] LUH19190813-V11-33-page5.txt: [('-', ''), ('-you', 'you'), ('-', ''), ('-', ''), ('-', '')] LUH19190813-V11-33-page6.txt: [('-', ''), ('-splendid', 'splendid')] LUH19190813-V11-33-page7.txt: [('Educational-', 'Educational'), ('-of', 'of'), ('-truth.', 'truth.'), ('week-', 'week')] LUH19190813-V11-33-page8.txt: [('consti-', 'consti')] LUH19190813-V11-33-page9.txt: [('-that', 'that')] LUH19190820-V11-34-page1.txt: [('Wis.-', 'Wis.'), ('pos-', 'pos')] LUH19190820-V11-34-page10.txt: [('-', ''), ('-', ''), ('-', '')] LUH19190820-V11-34-page11.txt: [('-', '')] LUH19190820-V11-34-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190820-V11-34-page13.txt: [('-the', 'the'), ('-', ''), ('-', ''), ('-', '')] LUH19190820-V11-34-page14.txt: [('tent.-', 'tent.'), ('Sev-', 'Sev'), ('mo-', 'mo')] LUH19190820-V11-34-page15.txt: [('-C.', 'C.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19190820-V11-34-page16.txt: [('-closing', 'closing')] LUH19190820-V11-34-page2.txt: [('-the', 'the')] LUH19190820-V11-34-page3.txt: [('So-', 'So'), ('-work', 'work'), ('-', '')] LUH19190820-V11-34-page4.txt: [('litera-', 'litera'), ('-ture', 'ture'), ('-', '')] LUH19190820-V11-34-page5.txt: [('-', ''), ('accom-', 'accom')] LUH19190820-V11-34-page7.txt: [('ex-', 'ex'), ('-are', 'are')] LUH19190820-V11-34-page9.txt: [('Watch-', 'Watch')] LUH19190827-V11-35-page1.txt: [('-we', 'we'), ('con-', 'con')] LUH19190827-V11-35-page10.txt: [('-brought', 'brought'), ('nearly-', 'nearly')] LUH19190827-V11-35-page12.txt: [('-', ''), ('-', ''), ('offered-', 'offered')] LUH19190827-V11-35-page13.txt: [('en-', 'en'), ('-', ''), ('......-', '......')] LUH19190827-V11-35-page14.txt: [('seri-', 'seri')] LUH19190827-V11-35-page15.txt: [('--', '-'), ('-', ''), ('-OD', 'OD'), ('-PG', 'PG'), ('--', '-')] LUH19190827-V11-35-page16.txt: [('HER-', 'HER'), ('-', ''), ('-', '')] LUH19190827-V11-35-page2.txt: [('Decem-', 'Decem')] LUH19190827-V11-35-page4.txt: [('de-', 'de')] LUH19190827-V11-35-page5.txt: [('-praise', 'praise'), ('-', ''), ('-on', 'on')] LUH19190827-V11-35-page7.txt: [('distrib-', 'distrib')] LUH19190827-V11-35-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190903-V11-36-page10.txt: [('-go', 'go')] LUH19190903-V11-36-page12.txt: [('-', '')] LUH19190903-V11-36-page13.txt: [('-', '')] LUH19190903-V11-36-page14.txt: [('-', ''), ('MI-', 'MI')] LUH19190903-V11-36-page15.txt: [('Sterner.--', 'Sterner.-'), ('-no', 'no'), ('-', ''), ('-', ''), ('-', '')] LUH19190903-V11-36-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190903-V11-36-page2.txt: [('confer-', 'confer')] LUH19190903-V11-36-page3.txt: [('UNION-', 'UNION')] LUH19190903-V11-36-page5.txt: [('-danger', 'danger')] LUH19190903-V11-36-page6.txt: [('-published', 'published'), ('-', ''), ('goals."--', 'goals."-'), ('-in', 'in')] LUH19190903-V11-36-page7.txt: [('In.-', 'In.')] LUH19190903-V11-36-page9.txt: [('-', '')] LUH19190910-V11-37-page1.txt: [('them-', 'them')] LUH19190910-V11-37-page10.txt: [('-', ''), ('-', '')] LUH19190910-V11-37-page11.txt: [('-Peak', 'Peak'), ('--', '-')] LUH19190910-V11-37-page12.txt: [('-', ''), ('--Senior', '-Senior')] LUH19190910-V11-37-page2.txt: [('Mis-', 'Mis')] LUH19190910-V11-37-page3.txt: [('-', ''), ('-and', 'and'), ('Ameri-', 'Ameri')] LUH19190910-V11-37-page5.txt: [('-', ''), ('corn-', 'corn')] LUH19190910-V11-37-page6.txt: [('-than', 'than'), ('-add', 'add')] LUH19190910-V11-37-page7.txt: [('-Brodt', 'Brodt')] LUH19190910-V11-37-page9.txt: [('-', '')] LUH19190917-V11-38-page10.txt: [('re-', 're'), ('-', '')] LUH19190917-V11-38-page11.txt: [('resur-', 'resur'), ('-----....', '----....')] LUH19190917-V11-38-page2.txt: [('-', ''), ('mission-', 'mission')] LUH19190917-V11-38-page3.txt: [('-that', 'that')] LUH19190917-V11-38-page4.txt: [('re-', 're'), ('Thomas-', 'Thomas')] LUH19190917-V11-38-page5.txt: [('-', '')] LUH19190917-V11-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190917-V11-38-page8.txt: [('-', ''), ('inter-', 'inter')] LUH19190924-V11-39-page1.txt: [('asso-', 'asso')] LUH19190924-V11-39-page10.txt: [('thefor-', 'thefor')] LUH19190924-V11-39-page11.txt: [('work.-', 'work.'), ('-', ''), ('-', '')] LUH19190924-V11-39-page2.txt: [('-and', 'and')] LUH19190924-V11-39-page3.txt: [('-', ''), ('-printed', 'printed'), ('China-', 'China')] LUH19190924-V11-39-page4.txt: [('-', '')] LUH19190924-V11-39-page5.txt: [('im-', 'im')] LUH19190924-V11-39-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190924-V11-39-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19190924-V11-39-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Kenosha.......-', 'Kenosha.......'), ('-will', 'will')] LUH19190924-V11-39-page9.txt: [('-that', 'that')] LUH19191001-V11-40-page1.txt: [('-having', 'having'), ('-', ''), ('-', ''), ('-', '')] LUH19191001-V11-40-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19191001-V11-40-page5.txt: [('-', ''), ('per-', 'per'), ('-', '')] LUH19191001-V11-40-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19191001-V11-40-page8.txt: [('--Selected', '-Selected'), ('-deaf', 'deaf')] LUH19191008-V11-41-page1.txt: [('-have', 'have'), ('-', '')] LUH19191008-V11-41-page3.txt: [('-Rapids', 'Rapids'), ('-', ''), ('to-', 'to'), ('-matoes."', 'matoes."'), ('-for', 'for'), ('-resulting', 'resulting'), ('-the', 'the'), ('-a', 'a'), ('-churches', 'churches'), ('-', '')] LUH19191008-V11-41-page4.txt: [('-Sister', 'Sister'), ('-attending', 'attending'), ('-', ''), ('Last-', 'Last'), ('-fecipient', 'fecipient'), ('enter-', 'enter'), ('bringino-', 'bringino'), ('-', ''), ('interested.-', 'interested.'), ('--schoolroom', '-schoolroom')] LUH19191008-V11-41-page5.txt: [('South-', 'South'), ('people.-', 'people.'), ('Anti-', 'Anti'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('studies-', 'studies'), ('-', '')] LUH19191008-V11-41-page6.txt: [('-the', 'the')] LUH19191008-V11-41-page7.txt: [('-For', 'For'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19191008-V11-41-page8.txt: [('-', '')] LUH19191015-V11-42-page11.txt: [("cef'-", "cef'"), ('-', '')] LUH19191015-V11-42-page12.txt: [('sestamps-', 'sestamps'), ('cam-', 'cam'), ('-and', 'and'), ('-', ''), ('HER-', 'HER'), ('one-third--', 'one-third-')] LUH19191015-V11-42-page13.txt: [('Indiana-', 'Indiana'), ('-', ''), ('-has', 'has'), ("radia'-", "radia'"), ('-', ''), ('-so', 'so'), ('-.', '.'), ('be-', 'be'), ('-', ''), ('-', '')] LUH19191015-V11-42-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('Sab-', 'Sab')] LUH19191015-V11-42-page15.txt: [('-', ''), ('of-', 'of'), ('--', '-'), ('-', '')] LUH19191015-V11-42-page16.txt: [('some-', 'some')] LUH19191015-V11-42-page2.txt: [('-', ''), ('prop-', 'prop')] LUH19191015-V11-42-page3.txt: [('-in', 'in')] LUH19191015-V11-42-page4.txt: [('-life', 'life')] LUH19191015-V11-42-page8.txt: [('it-', 'it')] LUH19191015-V11-42-page9.txt: [('-to', 'to')] LUH19191022-V11-43-page10.txt: [('-', '')] LUH19191022-V11-43-page11.txt: [('-', ''), ('-', '')] LUH19191022-V11-43-page12.txt: [('-gbitY', 'gbitY')] LUH19191022-V11-43-page13.txt: [('expen-', 'expen')] LUH19191022-V11-43-page14.txt: [('-', ''), ('-Many', 'Many'), ('-', ''), ('-Mrs.', 'Mrs.')] LUH19191022-V11-43-page16.txt: [('-', ''), ('peo-', 'peo'), ('get-', 'get'), ('-', ''), ("-dollars'", "dollars'"), ('-', '')] LUH19191022-V11-43-page17.txt: [('-', ''), ('-of', 'of'), ('-', '')] LUH19191022-V11-43-page2.txt: [('-', '')] LUH19191022-V11-43-page21.txt: [('-', ''), ('F.-', 'F.'), ('-', '')] LUH19191022-V11-43-page22.txt: [('-relation', 'relation')] LUH19191022-V11-43-page3.txt: [('-', ''), ('San-', 'San')] LUH19191022-V11-43-page4.txt: [('-', ''), ('-to', 'to'), ('Mace-', 'Mace'), ('-donian', 'donian'), ('-organization', 'organization')] LUH19191022-V11-43-page6.txt: [("Ind'p'ls-", "Ind'p'ls"), ('-Union', 'Union'), ('-Which', 'Which')] LUH19191022-V11-43-page7.txt: [('pass-', 'pass'), ('-', '')] LUH19191022-V11-43-page8.txt: [('-', '')] LUH19191022-V11-43-page9.txt: [('"-', '"'), ('-', ''), ('-Also', 'Also')] LUH19191029-V11-44-page1.txt: [('-', ''), ('Wis.-', 'Wis.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19191029-V11-44-page10.txt: [('-', ''), ('-room', 'room')] LUH19191029-V11-44-page11.txt: [('-', ''), ('-.', '.')] LUH19191029-V11-44-page3.txt: [('-', ''), ('-', '')] LUH19191029-V11-44-page6.txt: [('-', ''), ('-', ''), ('whichde-', 'whichde'), ('-', '')] LUH19191029-V11-44-page7.txt: [('"-', '"')] LUH19191029-V11-44-page8.txt: [('-', '')] LUH19191105-V11-45-page11.txt: [('-the', 'the'), ('-fOr', 'fOr'), ('-dmust', 'dmust'), ('-their', 'their')] LUH19191105-V11-45-page12.txt: [('-the', 'the'), ('-and', 'and')] LUH19191105-V11-45-page13.txt: [('Maga--', 'Maga-'), ('-', ''), ('-persons.', 'persons.'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-pound', 'pound'), ('-', ''), ('-room', 'room'), ('-rodsfrom', 'rodsfrom'), ('-carpenters', 'carpenters'), ('-room', 'room'), ('Hines-', 'Hines')] LUH19191105-V11-45-page14.txt: [('-', ''), ('organization-', 'organization'), ('-', '')] LUH19191105-V11-45-page15.txt: [('-received', 'received')] LUH19191105-V11-45-page16.txt: [('-in', 'in'), ('dol-', 'dol')] LUH19191105-V11-45-page2.txt: [('-of', 'of')] LUH19191105-V11-45-page3.txt: [('-for', 'for'), ('requires-', 'requires'), ('-frame', 'frame'), ('-the', 'the'), ('-very', 'very'), ('-of', 'of'), ('-in', 'in'), ('-p', 'p'), ('-', ''), ('-reader', 'reader'), ('-', ''), ('Matter-', 'Matter'), ('-', '')] LUH19191105-V11-45-page4.txt: [('-binding.', 'binding.'), ('-in', 'in'), ('mag-', 'mag')] LUH19191105-V11-45-page5.txt: [('-they', 'they'), ('-be', 'be'), ('-', ''), ('-as', 'as'), ('-as', 'as'), ('-may', 'may'), ('-to', 'to'), ('-', ''), ('-do', 'do'), ('-day', 'day'), ('of-', 'of'), ('-must', 'must'), ('-', ''), ('Of-', 'Of')] LUH19191105-V11-45-page6.txt: [('subscription.-', 'subscription.')] LUH19191105-V11-45-page7.txt: [('Chicago"Confer-', 'Chicago"Confer')] LUH19191105-V11-45-page8.txt: [('.-', '.'), ('-', ''), ('-', ''), ('eve-', 'eve')] LUH19191105-V11-45-page9.txt: [('Mc-', 'Mc'), ('Parent-', 'Parent'), ('-', ''), ('sis-', 'sis')] LUH19191112-V11-46-page10.txt: [('HER-', 'HER'), ('---Testimonies', '--Testimonies'), ('-room', 'room')] LUH19191112-V11-46-page11.txt: [('inns-', 'inns'), ('-----', '----')] LUH19191112-V11-46-page3.txt: [('-', ''), ('-', ''), ('-', '')] LUH19191112-V11-46-page5.txt: [('-', '')] LUH19191112-V11-46-page6.txt: [('-', ''), ('-', ''), ('for-', 'for')] LUH19191112-V11-46-page7.txt: [('-', ''), ('so-', 'so'), ('-', '')] LUH19191112-V11-46-page8.txt: [('-school', 'school'), ('-with', 'with')] LUH19191119-V11-47-page1.txt: [('op-', 'op')] LUH19191119-V11-47-page10.txt: [('-', ''), ('thi-', 'thi'), ('-le', 'le')] LUH19191119-V11-47-page11.txt: [('.-', '.'), ('--..', '-..'), ('-room', 'room'), ('HELP-', 'HELP'), ('pros-', 'pros'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19191119-V11-47-page12.txt: [('-by', 'by')] LUH19191119-V11-47-page3.txt: [('Sabbath-', 'Sabbath'), ('-active', 'active')] LUH19191119-V11-47-page4.txt: [('Af-', 'Af')] LUH19191119-V11-47-page8.txt: [('-', '')] LUH19191126-V11-48-page10.txt: [('-not', 'not'), ('-', '')] LUH19191126-V11-48-page12.txt: [('Ge-', 'Ge')] LUH19191126-V11-48-page2.txt: [('-', '')] LUH19191126-V11-48-page3.txt: [('-', ''), ('-', '')] LUH19191126-V11-48-page4.txt: [('-', ''), ('-not', 'not')] LUH19191126-V11-48-page5.txt: [('mes-', 'mes'), ('-', '')] LUH19191126-V11-48-page8.txt: [('-', ''), ('UN-', 'UN'), ('-', '')] LUH19191126-V11-48-page9.txt: [('-', '')] LUH19191203-V11-49-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19191203-V11-49-page10.txt: [('-prices', 'prices')] LUH19191203-V11-49-page12.txt: [('-', '')] LUH19191203-V11-49-page2.txt: [('-', ''), ('two-', 'two'), ('-us', 'us')] LUH19191203-V11-49-page5.txt: [('-in', 'in'), ('-', '')] LUH19191203-V11-49-page6.txt: [('-', '')] LUH19191203-V11-49-page7.txt: [('-', ''), ('-', '')] LUH19191203-V11-49-page8.txt: [('-', ''), ('-', '')] LUH19191203-V11-49-page9.txt: [('-', '')] LUH19191210-V11-50-page1.txt: [('-', '')] LUH19191210-V11-50-page10.txt: [('-quarter', 'quarter')] LUH19191210-V11-50-page11.txt: [('-The', 'The'), ('-', '')] LUH19191210-V11-50-page12.txt: [('-connected', 'connected'), ('-', ''), ('--', '-')] LUH19191210-V11-50-page13.txt: [('relieving-', 'relieving'), ('YOUNG-', 'YOUNG')] LUH19191210-V11-50-page14.txt: [('PROPHECY."-', 'PROPHECY."'), ('-room', 'room'), ('WANTED.-', 'WANTED.'), ('-acre', 'acre'), ('-acre', 'acre'), ('-', ''), ('-', ''), ('-', ''), ('Freeman...-', 'Freeman...'), ('Hr-', 'Hr'), ('-', ''), ('-', '')] LUH19191210-V11-50-page15.txt: [('satisfying-', 'satisfying')] LUH19191210-V11-50-page16.txt: [('-', ''), ('-GUTHRIE', 'GUTHRIE'), ('-inch', 'inch')] LUH19191210-V11-50-page2.txt: [('-', ''), ('--len', '-len'), ('dis-', 'dis')] LUH19191210-V11-50-page3.txt: [('statiss.c-', 'statiss.c'), ('institu-', 'institu')] LUH19191210-V11-50-page4.txt: [('-wasted', 'wasted'), ('-', ''), ('-or', 'or')] LUH19191210-V11-50-page7.txt: [('-chapel.', 'chapel.'), ('-', ''), ('with--', 'with-'), ('-you', 'you')] LUH19191210-V11-50-page8.txt: [('continue.-', 'continue.'), ('-', ''), ('-', '')] LUH19191210-V11-50-page9.txt: [('-', ''), ('truth-la-', 'truth-la')] LUH19191217-V11-51-page1.txt: [('-', '')] LUH19191217-V11-51-page2.txt: [('-', '')] LUH19191217-V11-51-page3.txt: [('-are', 'are'), ('-Haute', 'Haute'), ('-Ingathering', 'Ingathering'), ('-and', 'and'), ('-raw', 'raw'), ('-by', 'by'), ('-that', 'that'), ('-to', 'to'), ('-those', 'those'), ('-you', 'you')] LUH19191217-V11-51-page4.txt: [('-', ''), ('-', '')] LUH19191217-V11-51-page5.txt: [('pro-', 'pro')] LUH19191217-V11-51-page6.txt: [('-', ''), ('-is', 'is'), ('-to', 'to'), ('-of', 'of'), ('-to', 'to')] LUH19191217-V11-51-page7.txt: [('-He', 'He'), ('any-', 'any')] LUH19191217-V11-51-page8.txt: [('-', ''), ('-', '')] LUH19191224-V11-52-page1.txt: [('Vol-', 'Vol'), ('nrArdkedkr--', 'nrArdkedkr-'), ('-', ''), ('-', '')] LUH19191224-V11-52-page10.txt: [('-', ''), ('-', ''), ('secre-', 'secre')] LUH19191224-V11-52-page11.txt: [('-', ''), ('OD-', 'OD')] LUH19191224-V11-52-page12.txt: [('-', '')] LUH19191224-V11-52-page2.txt: [('-', ''), ('-for', 'for')] LUH19191224-V11-52-page3.txt: [('enthus-', 'enthus')] LUH19191224-V11-52-page7.txt: [('-', ''), ('-', '')] LUH19191224-V11-52-page8.txt: [('systematic-', 'systematic')] LUH19191224-V11-52-page9.txt: [('-', ''), ('-', '')] LUH19200107-V12-01-page10.txt: [('-', ''), ('-', '')] LUH19200107-V12-01-page11.txt: [('boy---', 'boy--')] LUH19200107-V12-01-page12.txt: [('-', ''), ('corn-', 'corn')] LUH19200107-V12-01-page13.txt: [('-', ''), ('--awaken', '-awaken'), ('num-', 'num')] LUH19200107-V12-01-page14.txt: [('-', ''), ('Danish-', 'Danish')] LUH19200107-V12-01-page15.txt: [('-acre', 'acre')] LUH19200107-V12-01-page16.txt: [('-', '')] LUH19200107-V12-01-page4.txt: [('Cop-', 'Cop'), ('Christ-', 'Christ')] LUH19200107-V12-01-page6.txt: [('-', ''), ('stu-', 'stu')] LUH19200107-V12-01-page7.txt: [('girls--', 'girls-')] LUH19200107-V12-01-page8.txt: [('-', ''), ('morn-', 'morn')] LUH19200107-V12-01s1-page10.txt: [('-cents-per-week-per-member', 'cents-per-week-per-member'), ('-cents-per-week.', 'cents-per-week.'), ('pro-', 'pro')] LUH19200107-V12-01s1-page11.txt: [('.-', '.'), ('-', ''), ('-', ''), ('-', '')] LUH19200107-V12-01s1-page12.txt: [('-', '')] LUH19200107-V12-01s1-page13.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200107-V12-01s1-page15.txt: [('-', '')] LUH19200107-V12-01s1-page16.txt: [('-', '')] LUH19200107-V12-01s1-page2.txt: [('-of', 'of'), ('fin-', 'fin')] LUH19200107-V12-01s1-page3.txt: [('Tri-', 'Tri'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('sev-', 'sev')] LUH19200107-V12-01s1-page6.txt: [('-', '')] LUH19200107-V12-01s1-page7.txt: [('-', ''), ('-', '')] LUH19200107-V12-01s1-page8.txt: [('-', ''), ('-or', 'or'), ('-to', 'to'), ('im-', 'im')] LUH19200114-V12-02-page11.txt: [('ending-', 'ending')] LUH19200114-V12-02-page2.txt: [('-', '')] LUH19200114-V12-02-page3.txt: [('mes-', 'mes')] LUH19200114-V12-02-page4.txt: [('-', '')] LUH19200114-V12-02-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('Indi-', 'Indi')] LUH19200114-V12-02-page8.txt: [('-', '')] LUH19200114-V12-02s2-page1.txt: [('Anti-', 'Anti')] LUH19200114-V12-02s2-page10.txt: [('lab-', 'lab')] LUH19200114-V12-02s2-page11.txt: [('Massa-', 'Massa'), ('-', '')] LUH19200114-V12-02s2-page14.txt: [('-', ''), ('con-', 'con')] LUH19200114-V12-02s2-page15.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', '')] LUH19200114-V12-02s2-page16.txt: [('-', ''), ('-', '')] LUH19200114-V12-02s2-page4.txt: [('-Scharffenberg', 'Scharffenberg')] LUH19200114-V12-02s2-page7.txt: [('-', ''), ('under-', 'under'), ('multi-', 'multi')] LUH19200114-V12-02s2-page9.txt: [('Con-', 'Con'), ('-', ''), ('-', ''), ('-', '')] LUH19200121-V12-03-page1.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200121-V12-03-page10.txt: [('-', '')] LUH19200121-V12-03-page11.txt: [('-', '')] LUH19200121-V12-03-page12.txt: [('----.', '---.'), ('-', '')] LUH19200121-V12-03-page13.txt: [('-feet', 'feet')] LUH19200121-V12-03-page2.txt: [('-', '')] LUH19200121-V12-03-page3.txt: [('Norwe-', 'Norwe'), ('-', '')] LUH19200121-V12-03-page4.txt: [('-', ''), ('mak-', 'mak')] LUH19200121-V12-03-page5.txt: [('-', ''), ('-', '')] LUH19200121-V12-03-page8.txt: [('Cumberland...-', 'Cumberland...')] LUH19200121-V12-03-page9.txt: [('-and', 'and'), ('deliv-', 'deliv'), ('tes-', 'tes')] LUH19200128-V12-04-page1.txt: [('terri-', 'terri')] LUH19200128-V12-04-page10.txt: [('Economics.-', 'Economics.'), ('cook-', 'cook')] LUH19200128-V12-04-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('-', '')] LUH19200128-V12-04-page3.txt: [('-', ''), ('-', ''), ('re-', 're')] LUH19200128-V12-04-page5.txt: [('some-', 'some')] LUH19200128-V12-04-page6.txt: [('-', '')] LUH19200128-V12-04-page7.txt: [('-in', 'in')] LUH19200128-V12-04-page9.txt: [('-', ''), ('-', ''), ('Publish-', 'Publish'), ('move-', 'move')] LUH19200204-V12-05-page1.txt: [('Advent-', 'Advent')] LUH19200204-V12-05-page11.txt: [('-', ''), ('-', '')] LUH19200204-V12-05-page12.txt: [('-', '')] LUH19200204-V12-05-page6.txt: [('bet-', 'bet')] LUH19200204-V12-05-page7.txt: [('-to', 'to'), ('man-', 'man')] LUH19200204-V12-05-page9.txt: [('-', ''), ('car-', 'car')] LUH19200211-V12-06-page10.txt: [('State-', 'State'), ('acad-', 'acad')] LUH19200211-V12-06-page11.txt: [('-room', 'room'), ('G-', 'G')] LUH19200211-V12-06-page2.txt: [('experi-', 'experi')] LUH19200211-V12-06-page3.txt: [('interest-', 'interest'), ('as-', 'as')] LUH19200211-V12-06-page5.txt: [('-', ''), ('-', '')] LUH19200211-V12-06-page7.txt: [('-', '')] LUH19200211-V12-06-page9.txt: [('-', '')] LUH19200218-V12-07-page10.txt: [('-branch', 'branch')] LUH19200218-V12-07-page12.txt: [('-', ''), ('in-', 'in')] LUH19200218-V12-07-page14.txt: [('-room', 'room')] LUH19200218-V12-07-page15.txt: [('-On', 'On'), ('-in', 'in')] LUH19200218-V12-07-page3.txt: [('-', ''), ('-', '')] LUH19200218-V12-07-page4.txt: [('de-', 'de')] LUH19200218-V12-07-page5.txt: [('-', '')] LUH19200218-V12-07-page6.txt: [('-', '')] LUH19200218-V12-07-page7.txt: [('-', '')] LUH19200218-V12-07-page8.txt: [('-', ''), ('Volun-', 'Volun')] LUH19200218-V12-07-page9.txt: [('-', ''), ('Day-', 'Day'), ('ap-', 'ap'), ('-of', 'of')] LUH19200225-V12-08-page1.txt: [('excel-', 'excel'), ('-', '')] LUH19200225-V12-08-page11.txt: [('-must', 'must'), ('---', '--'), ('----', '---'), ('-', ''), ('-', ''), ('-', '')] LUH19200225-V12-08-page12.txt: [('prose-', 'prose')] LUH19200225-V12-08-page2.txt: [('-', ''), ('indi-', 'indi')] LUH19200225-V12-08-page3.txt: [('flour-', 'flour')] LUH19200225-V12-08-page5.txt: [('-', '')] LUH19200225-V12-08-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200225-V12-08-page8.txt: [('af-', 'af')] LUH19200225-V12-08-page9.txt: [('-', '')] LUH19200303-V12-09-page1.txt: [('out-', 'out')] LUH19200303-V12-09-page10.txt: [('-', ''), ('-', ''), ('-June', 'June'), ('camp-meet-', 'camp-meet')] LUH19200303-V12-09-page12.txt: [('-', '')] LUH19200303-V12-09-page14.txt: [('-and', 'and'), ('Sept-', 'Sept')] LUH19200303-V12-09-page15.txt: [('-', ''), ('-acre', 'acre'), ('-room', 'room'), ('Wolpert-', 'Wolpert')] LUH19200303-V12-09-page16.txt: [('-', '')] LUH19200303-V12-09-page2.txt: [('-for', 'for')] LUH19200303-V12-09-page4.txt: [('moving-', 'moving')] LUH19200303-V12-09-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-May', 'May'), ('-page', 'page'), ('-', '')] LUH19200303-V12-09-page6.txt: [('magazine-', 'magazine')] LUH19200303-V12-09-page7.txt: [('appre-', 'appre'), ('-Box', 'Box')] LUH19200310-V12-10-page10.txt: [('-cent-per-week', 'cent-per-week'), ('-cent-per-week', 'cent-per-week')] LUH19200310-V12-10-page11.txt: [('-', ''), ('meet-', 'meet'), ('-', '')] LUH19200310-V12-10-page12.txt: [('-the', 'the')] LUH19200310-V12-10-page14.txt: [('-', ''), ('-Mrs.', 'Mrs.'), ('-Emma', 'Emma')] LUH19200310-V12-10-page15.txt: [('-room', 'room'), ('-', ''), ('-', '')] LUH19200310-V12-10-page16.txt: [('-', '')] LUH19200310-V12-10-page2.txt: [('-', '')] LUH19200310-V12-10-page3.txt: [('pres-', 'pres')] LUH19200310-V12-10-page5.txt: [('-', '')] LUH19200310-V12-10-page7.txt: [('-can', 'can'), ('ac-', 'ac')] LUH19200310-V12-10-page8.txt: [('-cent-a-week', 'cent-a-week'), ('-', ''), ('apyrox-', 'apyrox')] LUH19200310-V12-10-page9.txt: [('Ps-', 'Ps'), ('-', '')] LUH19200317-V12-11-page1.txt: [('-', '')] LUH19200317-V12-11-page10.txt: [('fine--', 'fine-'), ('-Watch', 'Watch')] LUH19200317-V12-11-page11.txt: [('-', ''), ('-', '')] LUH19200317-V12-11-page2.txt: [('-', '')] LUH19200317-V12-11-page5.txt: [('-of', 'of')] LUH19200317-V12-11-page7.txt: [('away-', 'away')] LUH19200317-V12-11-page8.txt: [('-', '')] LUH19200317-V12-11-page9.txt: [('defi-', 'defi'), ('HER-', 'HER'), ('-', '')] LUH19200324-V12-12-page1.txt: [('-', ''), ("-'", "'"), ('-ayers', 'ayers'), ('-We', 'We')] LUH19200324-V12-12-page10.txt: [('-room', 'room')] LUH19200324-V12-12-page11.txt: [('-', ''), ('-acre', 'acre'), ('-acre', 'acre'), ('-room', 'room'), ('--Geo.', '-Geo.')] LUH19200324-V12-12-page12.txt: [('-', '')] LUH19200324-V12-12-page3.txt: [('-', ''), ('two-', 'two')] LUH19200324-V12-12-page4.txt: [('mem-', 'mem'), ('conse-', 'conse')] LUH19200324-V12-12-page5.txt: [('sis-', 'sis'), ('subscription-', 'subscription'), ('-', ''), ('mem-', 'mem')] LUH19200324-V12-12-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200324-V12-12-page7.txt: [('-', ''), ('-', ''), ('-Which', 'Which'), ('-', ''), ('con-', 'con'), ('"-', '"')] LUH19200331-V12-13-page10.txt: [('-them', 'them'), ('Spir-', 'Spir')] LUH19200331-V12-13-page12.txt: [('SALE.-', 'SALE.'), ('-room', 'room'), ('NOTICE.-', 'NOTICE.'), ('-', '')] LUH19200331-V12-13-page3.txt: [('-', '')] LUH19200331-V12-13-page5.txt: [('-own.', 'own.')] LUH19200331-V12-13-page6.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200331-V12-13-page7.txt: [('-the', 'the')] LUH19200331-V12-13-page8.txt: [('-', '')] LUH19200331-V12-13-page9.txt: [('-as', 'as'), ('-', ''), ('dining-', 'dining'), ('com-', 'com')] LUH19200407-V12-14-page10.txt: [('HER-', 'HER'), ('-', ''), ('fin-', 'fin'), ('-', ''), ('Tri-', 'Tri')] LUH19200407-V12-14-page11.txt: [('-', '')] LUH19200407-V12-14-page14.txt: [('-with', 'with'), ('-room', 'room'), ('-', ''), ('-', '')] LUH19200407-V12-14-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200407-V12-14-page2.txt: [('-the', 'the'), ('ask-', 'ask')] LUH19200407-V12-14-page3.txt: [('-the', 'the')] LUH19200407-V12-14-page5.txt: [('-cents-aweek', 'cents-aweek')] LUH19200407-V12-14-page6.txt: [('Brookfield-', 'Brookfield'), ('Lake.--', 'Lake.-'), ('--', '-'), ('owen.--', 'owen.-')] LUH19200407-V12-14-page7.txt: [('-', ''), ('-', '')] LUH19200407-V12-14-page9.txt: [('-Wednesday', 'Wednesday')] LUH19200414-V12-15-page10.txt: [('-', ''), ('-room', 'room'), ('-', '')] LUH19200414-V12-15-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200414-V12-15-page12.txt: [('-', ''), ('Mem-', 'Mem'), ('ber-', 'ber'), ('-', '')] LUH19200414-V12-15-page4.txt: [('-', ''), ('-', '')] LUH19200414-V12-15-page6.txt: [('mis-', 'mis')] LUH19200414-V12-15-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Be-', 'Be')] LUH19200414-V12-15-page8.txt: [('-', ''), ('-', '')] LUH19200421-V12-16-page10.txt: [('-the', 'the'), ('Mis-', 'Mis')] LUH19200421-V12-16-page12.txt: [('-', '')] LUH19200421-V12-16-page14.txt: [('-', ''), ('-', '')] LUH19200421-V12-16-page15.txt: [('-Olive', 'Olive'), ("trusted.'-", "trusted.'"), ('-', ''), ('-', '')] LUH19200421-V12-16-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200421-V12-16-page2.txt: [('-', '')] LUH19200421-V12-16-page7.txt: [('-', '')] LUH19200421-V12-16-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200421-V12-16-page9.txt: [('-', ''), ('under-', 'under')] LUH19200428-V12-17-page10.txt: [('one.-', 'one.')] LUH19200428-V12-17-page11.txt: [('-', '')] LUH19200428-V12-17-page13.txt: [('-', ''), ('-', '')] LUH19200428-V12-17-page15.txt: [('-', ''), ('Clough--', 'Clough-'), ('-', ''), ('-', ''), ('DR-', 'DR'), ('--', '-'), ('-', ''), ('-', ''), ('--', '-')] LUH19200428-V12-17-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', ''), ('-', '')] LUH19200428-V12-17-page4.txt: [('-March', 'March')] LUH19200428-V12-17-page6.txt: [('Ave.--', 'Ave.-')] LUH19200428-V12-17-page7.txt: [('-', ''), ('-', ''), ('teach-', 'teach'), ('-', '')] LUH19200428-V12-17-page8.txt: [('-', '')] LUH19200428-V12-17-page9.txt: [('intro-', 'intro'), ('-ducing', 'ducing')] LUH19200505-V12-18-page1.txt: [('-ste', 'ste')] LUH19200505-V12-18-page10.txt: [("--Christ's", "-Christ's"), ('ef-', 'ef'), ('peo-', 'peo')] LUH19200505-V12-18-page13.txt: [('-', '')] LUH19200505-V12-18-page14.txt: [('-room', 'room'), ('WANTED.-', 'WANTED.'), ('-', ''), ('South-', 'South'), ('-', '')] LUH19200505-V12-18-page16.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200505-V12-18-page5.txt: [('-clearing', 'clearing')] LUH19200505-V12-18-page6.txt: [('-', '')] LUH19200505-V12-18-page7.txt: [('-', ''), ('-', '')] LUH19200505-V12-18-page8.txt: [('-', ''), ('-per-member', 'per-member')] LUH19200512-V12-19-page15.txt: [('-', '')] LUH19200512-V12-19-page17.txt: [('territory-', 'territory')] LUH19200512-V12-19-page18.txt: [('-', '')] LUH19200512-V12-19-page19.txt: [('-', '')] LUH19200512-V12-19-page2.txt: [('corn-', 'corn')] LUH19200512-V12-19-page20.txt: [('-', ''), ('-', ''), ('-', ''), ('-July', 'July')] LUH19200512-V12-19-page5.txt: [('-', ''), ('publish-', 'publish')] LUH19200512-V12-19-page7.txt: [('-', ''), ('one-', 'one'), ('Ad-', 'Ad')] LUH19200512-V12-19-page8.txt: [('be-', 'be')] LUH19200519-V12-20-page10.txt: [('al-', 'al')] LUH19200519-V12-20-page12.txt: [('at-', 'at')] LUH19200519-V12-20-page13.txt: [('-', ''), ('-', ''), ('-Ncents', 'Ncents')] LUH19200519-V12-20-page14.txt: [('message--', 'message-'), ('possi-', 'possi')] LUH19200519-V12-20-page15.txt: [('-room', 'room'), ('-', ''), ('...-', '...')] LUH19200519-V12-20-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200519-V12-20-page2.txt: [('Indianapolis-', 'Indianapolis'), ('-are', 'are'), ('Indianapolis-', 'Indianapolis'), ('-leads', 'leads'), ('fund-', 'fund'), ('work-', 'work')] LUH19200519-V12-20-page3.txt: [('-', ''), ('-', ''), ('consti-', 'consti')] LUH19200519-V12-20-page5.txt: [('con-', 'con')] LUH19200519-V12-20-page6.txt: [('-', '')] LUH19200519-V12-20-page7.txt: [('-', ''), ('-', ''), ('....-', '....'), ('Denver-', 'Denver'), ('Gladstone.--', 'Gladstone.-')] LUH19200519-V12-20-page8.txt: [('-', ''), ('-', '')] LUH19200519-V12-20-page9.txt: [('-', ''), ('-', '')] LUH19200526-V12-21-page10.txt: [('-cent', 'cent')] LUH19200526-V12-21-page11.txt: [('-room', 'room'), ('--', '-')] LUH19200526-V12-21-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200526-V12-21-page3.txt: [('-', '')] LUH19200526-V12-21-page4.txt: [('City-', 'City'), ('-', ''), ('dormitory-', 'dormitory')] LUH19200526-V12-21-page5.txt: [('-', ''), ('-', '')] LUH19200526-V12-21-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200602-V12-22-page2.txt: [('Confer-', 'Confer'), ('-', '')] LUH19200602-V12-22-page4.txt: [('-', '')] LUH19200602-V12-22-page5.txt: [('-', '')] LUH19200602-V12-22-page6.txt: [('-', ''), ('-.', '.')] LUH19200602-V12-22-page7.txt: [('-', ''), ('-', '')] LUH19200602-V12-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200609-V12-23-page2.txt: [('Danish-', 'Danish')] LUH19200609-V12-23-page3.txt: [('-', '')] LUH19200609-V12-23-page4.txt: [('-', '')] LUH19200609-V12-23-page5.txt: [('-', '')] LUH19200609-V12-23-page6.txt: [('-', ''), ('La-', 'La')] LUH19200609-V12-23-page8.txt: [("-'", "'"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200616-V12-24-page1.txt: [('--Selected', '-Selected')] LUH19200616-V12-24-page10.txt: [('James-', 'James'), ('--', '-'), ('SALE.--', 'SALE.-'), ('commission---', 'commission--'), ('----', '---')] LUH19200616-V12-24-page12.txt: [('-present', 'present'), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200616-V12-24-page2.txt: [('Terms--', 'Terms-'), ('-', ''), ('-', '')] LUH19200616-V12-24-page4.txt: [('work.-', 'work.')] LUH19200616-V12-24-page5.txt: [('-', ''), ('con-', 'con')] LUH19200616-V12-24-page6.txt: [('-', ''), ('-', ''), ('cus-', 'cus')] LUH19200616-V12-24-page7.txt: [('La-', 'La'), ('attend-', 'attend')] LUH19200616-V12-24-page9.txt: [('-Loui', 'Loui'), ('-a', 'a'), ('-brother', 'brother'), ('-keep', 'keep')] LUH19200623-V12-25-page1.txt: [('-the', 'the'), ('-', '')] LUH19200623-V12-25-page2.txt: [('Terms-', 'Terms'), ('-iad', 'iad'), ('-', ''), ('-', ''), ('At-', 'At')] LUH19200623-V12-25-page3.txt: [('-', ''), ('-July', 'July')] LUH19200623-V12-25-page4.txt: [('-', ''), ('-', '')] LUH19200623-V12-25-page5.txt: [('-', ''), ('-Brother', 'Brother')] LUH19200623-V12-25-page7.txt: [('SALE.-', 'SALE.'), ('-', ''), ('wait-', 'wait'), ('--', '-')] LUH19200623-V12-25-page8.txt: [('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200630-V12-26-page1.txt: [('-to', 'to')] LUH19200630-V12-26-page10.txt: [('-permember', 'permember')] LUH19200630-V12-26-page11.txt: [('-', ''), ('-Claire', 'Claire'), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] LUH19200630-V12-26-page12.txt: [('-', ''), ('-', ''), ('-July', 'July'), ('-', ''), ('-', ''), ('-Septembes', 'Septembes'), ('-', '')] LUH19200630-V12-26-page3.txt: [('-', ''), ('given-', 'given'), ('Penn-', 'Penn')] LUH19200630-V12-26-page4.txt: [('-weeks', 'weeks'), ('-weeks', 'weeks'), ('-', ''), ('-', '')] LUH19200630-V12-26-page5.txt: [('-in', 'in'), ('-', ''), ('-', '')] LUH19200630-V12-26-page6.txt: [('-Mr.', 'Mr.'), ('-Fund.', 'Fund.'), ('Contro-', 'Contro'), ('-', '')] LUH19200630-V12-26-page7.txt: [('-', ''), ('-school', 'school'), ('In--', 'In-'), ('-the', 'the'), ('-the', 'the')] LUH19200630-V12-26-page8.txt: [('-', ''), ('-I', 'I'), ('Doctoi-', 'Doctoi'), ('Ingather-', 'Ingather')] LUH19200630-V12-26-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200707-V12-27-page1.txt: [('Zdhe-', 'Zdhe'), ('-able', 'able')] LUH19200707-V12-27-page2.txt: [('Confer-', 'Confer'), ('Terms-', 'Terms')] LUH19200707-V12-27-page3.txt: [('-', ''), ('con-', 'con')] LUH19200707-V12-27-page4.txt: [('-', ''), ('-', ''), ('-Miss', 'Miss')] LUH19200707-V12-27-page5.txt: [('-', ''), ('-fair', 'fair')] LUH19200707-V12-27-page6.txt: [('-a', 'a'), ('weary--', 'weary-'), ('--', '-')] LUH19200707-V12-27-page7.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-.', '.'), ('-', ''), ('-', ''), ('i-', 'i'), ('-', ''), ('ta-', 'ta'), ('--', '-')] LUH19200707-V12-27-page8.txt: [('-to', 'to'), ('-of', 'of'), ('-', ''), ('-September', 'September'), ('-', '')] LUH19200714-V12-28-page1.txt: [('in-', 'in')] LUH19200714-V12-28-page2.txt: [('Terms--', 'Terms-'), ('-', '')] LUH19200714-V12-28-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('dor-', 'dor')] LUH19200714-V12-28-page4.txt: [('growth-', 'growth'), ('en-', 'en')] LUH19200714-V12-28-page7.txt: [('-', '')] LUH19200714-V12-28-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200721-V12-29-page1.txt: [('-', ''), ('-S.', 'S.'), ('-', '')] LUH19200721-V12-29-page2.txt: [('op.-', 'op.'), ('ad-', 'ad'), ('-with', 'with'), ('-have', 'have'), ('-course', 'course')] LUH19200721-V12-29-page3.txt: [('-pleasant', 'pleasant'), ('profit-', 'profit'), ('-in', 'in'), ('-Volunteer', 'Volunteer'), ('-', ''), ('-cents-aweek', 'cents-aweek'), ('-cents-a-week', 'cents-a-week')] LUH19200721-V12-29-page4.txt: [('-', '')] LUH19200721-V12-29-page5.txt: [('-calls', 'calls'), ('-', ''), ('appreci-', 'appreci')] LUH19200721-V12-29-page6.txt: [('corn-', 'corn'), ('-bath.', 'bath.')] LUH19200721-V12-29-page7.txt: [('-rune', 'rune'), ('-', ''), ('-being', 'being')] LUH19200721-V12-29-page8.txt: [('-wrote', 'wrote'), ('hun-', 'hun'), ('--', '-'), ('-', '')] LUH19200728-V12-30-page1.txt: [('-', ''), ('-Iny', 'Iny'), ('-', '')] LUH19200728-V12-30-page10.txt: [('-', '')] LUH19200728-V12-30-page11.txt: [('Mc-', 'Mc'), ('Beldenville-', 'Beldenville'), ('Wash"-', 'Wash"')] LUH19200728-V12-30-page14.txt: [('-', '')] LUH19200728-V12-30-page15.txt: [('-', '')] LUH19200728-V12-30-page16.txt: [('-', ''), ('-', '')] LUH19200728-V12-30-page2.txt: [('Sab-', 'Sab')] LUH19200728-V12-30-page3.txt: [('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week')] LUH19200728-V12-30-page4.txt: [('-', '')] LUH19200728-V12-30-page5.txt: [('-', '')] LUH19200804-V12-31-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('Bldg-', 'Bldg')] LUH19200804-V12-31-page11.txt: [('cere-', 'cere'), ("-'", "'"), ('-at', 'at'), ('-OD', 'OD'), ('-', ''), ('----', '---'), ("-.'", ".'"), ('--', '-'), ('-', ''), ('-A', 'A'), ('Bensis-', 'Bensis'), ('---', '--'), ('lfaiker...-', 'lfaiker...'), ('.......-', '.......'), ('.-', '.'), ('-', ''), ('.--', '.-'), ('-', ''), ('---', '--'), ('Deosen-', 'Deosen'), ('-', ''), ('West..-', 'West..'), ('--.-', '-.-'), ('---OD', '--OD'), ('BR-', 'BR'), ('-', ''), ('---', '--'), ('----', '---'), ('-', ''), ('-', ''), ('...-', '...'), ('-----', '----'), ('-', ''), ('-', ''), ('-', ''), ('-Li', 'Li'), ('-', ''), ('-', ''), ('--', '-'), ('.-', '.'), ('-', ''), ('--', '-'), ('--', '-')] LUH19200804-V12-31-page12.txt: [('"-', '"'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200804-V12-31-page2.txt: [('-one', 'one'), ('--That', '-That'), ('-', ''), ('-in', 'in'), ('-lines-of', 'lines-of'), ('-.', '.'), ('-', ''), ('-', '')] LUH19200804-V12-31-page3.txt: [('chil-', 'chil'), ('-', ''), ('-', '')] LUH19200804-V12-31-page4.txt: [('-delegate', 'delegate')] LUH19200804-V12-31-page7.txt: [('-worship', 'worship')] LUH19200804-V12-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200804-V12-31-page9.txt: [('-', '')] LUH19200811-V12-32-page1.txt: [('-w', 'w'), ('--', '-')] LUH19200811-V12-32-page11.txt: [('-HAMP.', 'HAMP.'), ('-', ''), ('-', ''), ('---', '--')] LUH19200811-V12-32-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200811-V12-32-page2.txt: [('Ber-', 'Ber')] LUH19200811-V12-32-page3.txt: [('prov-', 'prov')] LUH19200811-V12-32-page4.txt: [('par-', 'par')] LUH19200811-V12-32-page5.txt: [('-', '')] LUH19200811-V12-32-page6.txt: [('-', '')] LUH19200811-V12-32-page7.txt: [('-', ''), ('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week')] LUH19200811-V12-32-page8.txt: [('-it', 'it')] LUH19200811-V12-32-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-went', 'went'), ('ourcamp-', 'ourcamp')] LUH19200818-V12-33-page10.txt: [('-', ''), ('-', '')] LUH19200818-V12-33-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-Shaw', 'Shaw'), ('-', ''), ('-', ''), ('-', '')] LUH19200818-V12-33-page3.txt: [('-so.', 'so.')] LUH19200818-V12-33-page5.txt: [('Quarter-', 'Quarter'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('meeting-', 'meeting')] LUH19200818-V12-33-page6.txt: [('-', ''), ('-', '')] LUH19200818-V12-33-page7.txt: [('-', ''), ('Hill..-', 'Hill..')] LUH19200818-V12-33-page8.txt: [('-', '')] LUH19200818-V12-33-page9.txt: [('HER-', 'HER'), ('Hafferty-', 'Hafferty')] LUH19200825-V12-34-page11.txt: [('-large', 'large'), ('-in', 'in'), ('-Mich.', 'Mich.'), ('-', '')] LUH19200825-V12-34-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200825-V12-34-page2.txt: [('-attention', 'attention')] LUH19200825-V12-34-page3.txt: [('-', '')] LUH19200825-V12-34-page7.txt: [('-my', 'my')] LUH19200825-V12-34-page9.txt: [('-', ''), ('-', '')] LUH19200901-V12-35-page3.txt: [('-best', 'best'), ('year.-', 'year.')] LUH19200901-V12-35-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-cents-a-week', 'cents-a-week')] LUH19200901-V12-35-page6.txt: [("'con-", "'con"), ('-', '')] LUH19200901-V12-35-page7.txt: [('-time', 'time'), ('Juniors-', 'Juniors'), ('part---', 'part--'), ('Fon-', 'Fon'), ('-cleared', 'cleared'), ('-', ''), ('-', '')] LUH19200908-V12-36-page1.txt: [('.W-', '.W'), ('-', ''), ('--', '-')] LUH19200908-V12-36-page10.txt: [('-and', 'and')] LUH19200908-V12-36-page11.txt: [('-', ''), ('-.GC', '.GC'), ('-', '')] LUH19200908-V12-36-page12.txt: [('-cent-a-week', 'cent-a-week'), ('-', '')] LUH19200908-V12-36-page2.txt: [('Terms-', 'Terms'), ('-', '')] LUH19200908-V12-36-page4.txt: [('-', '')] LUH19200908-V12-36-page5.txt: [('-', '')] LUH19200908-V12-36-page6.txt: [('-', ''), ('-', ''), ('pre-', 'pre')] LUH19200908-V12-36-page8.txt: [('-', '')] LUH19200915-V12-37-page1.txt: [('-', ''), ('-', ''), ('may-', 'may'), ('-and', 'and')] LUH19200915-V12-37-page2.txt: [('Confer-', 'Confer'), ('Terms-', 'Terms'), ('-President', 'President')] LUH19200915-V12-37-page3.txt: [('-', ''), ('-', '')] LUH19200915-V12-37-page4.txt: [('-', '')] LUH19200915-V12-37-page5.txt: [('Ingather-', 'Ingather'), ('and-', 'and')] LUH19200915-V12-37-page6.txt: [('-', ''), ('-this', 'this')] LUH19200915-V12-37-page7.txt: [('-', ''), ('-', ''), ('-', '')] LUH19200915-V12-37-page8.txt: [('-young', 'young'), ('expenses.--', 'expenses.-')] LUH19200922-V12-38-page1.txt: [('-attended.', 'attended.'), ('-of', 'of'), ('-', '')] LUH19200922-V12-38-page10.txt: [('-cent-a-week', 'cent-a-week'), ('Sab-', 'Sab'), ('bless-', 'bless'), ('-', ''), ('-it', 'it'), ('cam-', 'cam'), ('-No', 'No')] LUH19200922-V12-38-page11.txt: [('-anYwheres."', 'anYwheres."'), ('magazines--', 'magazines-'), ('-', '')] LUH19200922-V12-38-page12.txt: [("-'", "'")] LUH19200922-V12-38-page2.txt: [('Terms--', 'Terms-'), ('-', ''), ('-colored', 'colored'), ('-centa-week', 'centa-week')] LUH19200922-V12-38-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-begins', 'begins')] LUH19200922-V12-38-page4.txt: [('-', '')] LUH19200922-V12-38-page6.txt: [('-at', 'at'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19200922-V12-38-page7.txt: [('.-', '.'), ('-come', 'come'), ('stay-at-', 'stay-at'), ('-', '')] LUH19200922-V12-38-page8.txt: [('thee."-', 'thee."'), ('-cents-a-week', 'cents-a-week'), ('-cent-a-week', 'cent-a-week'), ('-', '')] LUH19200922-V12-38-page9.txt: [('-', ''), ('-cent-a-week', 'cent-a-week'), ('-cent-aweek', 'cent-aweek')] LUH19200929-V12-39-page2.txt: [('Guthrie-', 'Guthrie'), ('than-', 'than')] LUH19200929-V12-39-page3.txt: [('-', ''), ('beim-', 'beim'), ('-', '')] LUH19200929-V12-39-page4.txt: [('-', ''), ('-', ''), ('-.', '.')] LUH19200929-V12-39-page5.txt: [('-', ''), ('-', ''), ('Schools-', 'Schools'), ('Wis.-', 'Wis.'), ('Benson-', 'Benson'), ('-', ''), ('-', ''), ('-Miss', 'Miss'), ('-some', 'some')] LUH19200929-V12-39-page6.txt: [('camp-meh-', 'camp-meh'), ('-', ''), ('Michigan-', 'Michigan'), ('appreci-', 'appreci'), ('--', '-'), ('-', ''), ('-', ''), ('-', '')] LUH19200929-V12-39-page7.txt: [('-you', 'you'), ('-', '')] LUH19200929-V12-39-page8.txt: [('-', '')] LUH19201006-V12-40-page1.txt: [('-vi.', 'vi.'), ('---', '--'), ('-', ''), ('--', '-'), ('-.', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--.', '-.'), ('--', '-'), ('--.', '-.'), ('-.', '.'), ('--', '-'), ('----', '---'), ('.-', '.'), ('-irtg', 'irtg'), ('--', '-'), ('-', ''), ('----', '---'), ('-', ''), ('--', '-'), ('-', ''), ('--', '-'), ('F-', 'F'), ('----', '---'), ('-', ''), ('-', ''), ('-.', '.')] LUH19201006-V12-40-page10.txt: [('prof-', 'prof'), ('-', ''), ('-', '')] LUH19201006-V12-40-page11.txt: [('-we', 'we'), ('.-', '.'), ('-who', 'who')] LUH19201006-V12-40-page12.txt: [('-', ''), ('-', '')] LUH19201006-V12-40-page13.txt: [('-', ''), ('-town.', 'town.'), ('Danish-', 'Danish'), ('the-', 'the')] LUH19201006-V12-40-page14.txt: [('China-', 'China')] LUH19201006-V12-40-page15.txt: [('Wanted.-', 'Wanted.'), ('-room', 'room'), ('-acre', 'acre'), ('-room', 'room'), ('-acre', 'acre'), ('-room', 'room'), ('-acre', 'acre'), ('farm-', 'farm'), ('-room', 'room'), ('-', ''), ('-', ''), ('OD-', 'OD'), ('-BR', 'BR'), ('-', ''), ('-', ''), ('cam-', 'cam'), ('-Make', 'Make')] LUH19201006-V12-40-page2.txt: [('Terms-', 'Terms'), ('-', ''), ('-I', 'I'), ('-', '')] LUH19201006-V12-40-page3.txt: [('-I', 'I'), ('-Put', 'Put')] LUH19201006-V12-40-page4.txt: [('-.heard', '.heard'), ('the-', 'the'), ('Present-', 'Present')] LUH19201006-V12-40-page5.txt: [('-G.', 'G.'), ('Pilgrim-', 'Pilgrim'), ('num-', 'num')] LUH19201006-V12-40-page6.txt: [('pre-', 'pre')] LUH19201006-V12-40-page7.txt: [('oppor-', 'oppor'), ('communi-', 'communi'), ('-over', 'over')] LUH19201006-V12-40-page8.txt: [('-', ''), ('-baptim.', 'baptim.'), ('-is', 'is')] LUH19201006-V12-40-page9.txt: [('-', ''), ('oppor-', 'oppor'), ('-', '')] LUH19201013-V12-41-page1.txt: [('-If', 'If'), ('-it', 'it'), ('-say', 'say'), ('Confer-', 'Confer'), ('de-', 'de')] LUH19201013-V12-41-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('Depart-', 'Depart'), ('-', ''), ('-was', 'was'), ('-Souls', 'Souls'), ('-', '')] LUH19201013-V12-41-page12.txt: [('-', ''), ('Member-', 'Member'), ('camp-meet-', 'camp-meet')] LUH19201013-V12-41-page2.txt: [('Terms-', 'Terms'), ('-depriving', 'depriving'), ('-an', 'an'), ('Liberty-', 'Liberty')] LUH19201013-V12-41-page3.txt: [('-and', 'and'), ('-Paul', 'Paul'), ('-He', 'He')] LUH19201013-V12-41-page4.txt: [('-', ''), ('-year', 'year'), ('-the', 'the')] LUH19201013-V12-41-page5.txt: [('-', ''), ('-read', 'read')] LUH19201013-V12-41-page6.txt: [('-', '')] LUH19201013-V12-41-page7.txt: [('-', ''), ('-opportunity', 'opportunity'), ('-', ''), ('Miss-', 'Miss')] LUH19201013-V12-41-page8.txt: [('-', ''), ('-', ''), ('-young', 'young'), ('and-', 'and')] LUH19201020-V12-42-page1.txt: [('BERRIEN-', 'BERRIEN'), ('-to', 'to'), ('-', '')] LUH19201020-V12-42-page10.txt: [('twenty-', 'twenty')] LUH19201020-V12-42-page11.txt: [('Har-', 'Har'), ('-of', 'of'), ('-obgerver', 'obgerver'), ('-', '')] LUH19201020-V12-42-page12.txt: [('-', ''), ('-', ''), ('-', '')] LUH19201020-V12-42-page2.txt: [('Terms-', 'Terms'), ('hun-', 'hun')] LUH19201020-V12-42-page3.txt: [('-', ''), ('cam-', 'cam'), ('ac-', 'ac')] LUH19201020-V12-42-page4.txt: [('-interesting.', 'interesting.')] LUH19201020-V12-42-page5.txt: [('-the', 'the'), ('Park..-', 'Park..'), ('-', '')] LUH19201020-V12-42-page6.txt: [('-', ''), ('-considerable', 'considerable'), ('Conference-', 'Conference'), ('-', ''), ('-', ''), ('grate-', 'grate')] LUH19201020-V12-42-page7.txt: [('-', ''), ('secretary-', 'secretary'), ('re-', 're')] LUH19201020-V12-42-page8.txt: [('-UNION', 'UNION')] LUH19201020-V12-42-page9.txt: [('-', ''), ('-', '')] LUH19201027-V12-43-page1.txt: [('-', ''), ('---Sarah', '--Sarah')] LUH19201027-V12-43-page10.txt: [('-', '')] LUH19201027-V12-43-page13.txt: [('-', ''), ('-', '')] LUH19201027-V12-43-page14.txt: [('-The', 'The')] LUH19201027-V12-43-page15.txt: [('edu-', 'edu'), ('indi-', 'indi')] LUH19201027-V12-43-page16.txt: [('-NO', 'NO')] LUH19201027-V12-43-page2.txt: [('-much', 'much'), ('In-', 'In'), ('author-', 'author')] LUH19201027-V12-43-page3.txt: [('-', ''), ('quie-', 'quie'), ('--', '-'), ('-', ''), ('in-', 'in'), ('-', '')] LUH19201027-V12-43-page4.txt: [('amend-', 'amend'), ('-', ''), ('-', ''), ('Ingath-', 'Ingath')] LUH19201027-V12-43-page5.txt: [('-', ''), ('-Topics', 'Topics'), ('-be', 'be'), ('be-', 'be')] LUH19201027-V12-43-page6.txt: [('-been', 'been'), ('L.-', 'L.'), ('-', ''), ('-', '')] LUH19201027-V12-43-page7.txt: [('.-', '.')] LUH19201027-V12-43-page8.txt: [('-Berrien', 'Berrien'), ('-', ''), ('Aledo-', 'Aledo'), ('-Rice', 'Rice')] LUH19201027-V12-43-page9.txt: [('-', ''), ('-', ''), ('work..-', 'work..'), ('which-', 'which')] LUH19201103-V12-44-page1.txt: [('donel-', 'donel'), ('-our', 'our')] LUH19201103-V12-44-page10.txt: [('-Ingathering', 'Ingathering'), ('-ending', 'ending'), ('-who', 'who'), ('-', '')] LUH19201103-V12-44-page11.txt: [('-cent-a-week', 'cent-a-week'), ('-', ''), ('-', ''), ('-Mrs.', 'Mrs.')] LUH19201103-V12-44-page12.txt: [('Mc-', 'Mc')] LUH19201103-V12-44-page2.txt: [('Terms-', 'Terms'), ('-among', 'among')] LUH19201103-V12-44-page3.txt: [('-whom', 'whom'), ('-', ''), ('-', ''), ('-and', 'and'), ('-the', 'the'), ('-these', 'these')] LUH19201103-V12-44-page4.txt: [('-fulfillment', 'fulfillment'), ('-', '')] LUH19201103-V12-44-page5.txt: [('-', ''), ('-minister.', 'minister.'), ('-I', 'I'), ('re-', 're')] LUH19201103-V12-44-page6.txt: [('-was', 'was'), ('-The', 'The')] LUH19201103-V12-44-page7.txt: [('-', ''), ('-so', 'so'), ('-', ''), ('sue-', 'sue')] LUH19201103-V12-44-page8.txt: [('blood."--', 'blood."-'), ('-', ''), ('-', ''), ('-', '')] LUH19201103-V12-44-page9.txt: [('Poteskey-', 'Poteskey'), ('-', ''), ('-I', 'I'), ('-Thousands', 'Thousands')] LUH19201110-V12-45-page1.txt: [('No.-', 'No.'), ('-', ''), ('three-', 'three'), ('-by', 'by'), ('out-', 'out'), ('-', ''), ('ear-', 'ear')] LUH19201110-V12-45-page10.txt: [('ocean-', 'ocean'), ('fifty.-cent-a-', 'fifty.-cent-a'), ('-', ''), ('coun-', 'coun')] LUH19201110-V12-45-page11.txt: [('-', ''), ('-', '')] LUH19201110-V12-45-page12.txt: [('Fill-', 'Fill')] LUH19201110-V12-45-page13.txt: [('be-', 'be'), ('-more', 'more'), ('-interesting', 'interesting')] LUH19201110-V12-45-page15.txt: [('-', '')] LUH19201110-V12-45-page16.txt: [('-"Study', '"Study'), ('-room', 'room')] LUH19201110-V12-45-page2.txt: [('-all', 'all'), ('--worked', '-worked'), ('Czecko-', 'Czecko'), ('auto-', 'auto')] LUH19201110-V12-45-page3.txt: [('Gland-', 'Gland'), ('-the', 'the'), ('-pound', 'pound'), ('-and', 'and'), ('-one', 'one'), ('inside.-', 'inside.')] LUH19201110-V12-45-page5.txt: [('-', '')] LUH19201110-V12-45-page6.txt: [('ren-', 'ren'), ('--dered', '-dered'), ('-', ''), ('-', '')] LUH19201110-V12-45-page8.txt: [('-the', 'the')] LUH19201110-V12-45-page9.txt: [('-', ''), ('-', ''), ('repre-', 'repre'), ('-', '')] LUH19201117-V12-46-page1.txt: [('est-', 'est'), ('Three-', 'Three')] LUH19201117-V12-46-page11.txt: [('-', ''), ('missions.-', 'missions.'), ('-', ''), ('won-', 'won')] LUH19201117-V12-46-page14.txt: [('-', '')] LUH19201117-V12-46-page15.txt: [('-', '')] LUH19201117-V12-46-page16.txt: [("-'", "'"), ('Con-', 'Con'), ('interpre-', 'interpre'), ('-DAY', 'DAY')] LUH19201117-V12-46-page2.txt: [('Terms-', 'Terms')] LUH19201117-V12-46-page4.txt: [('-', ''), ('Conference-', 'Conference')] LUH19201117-V12-46-page9.txt: [('-', '')] LUH19201124-V12-47-page1.txt: [('--and', '-and')] LUH19201124-V12-47-page13.txt: [('Bed-', 'Bed'), ('-', ''), ('-cents-a-week', 'cents-a-week'), ('-cents-a-week.', 'cents-a-week.')] LUH19201124-V12-47-page15.txt: [('-', '')] LUH19201124-V12-47-page2.txt: [('the-', 'the'), ('-They', 'They')] LUH19201124-V12-47-page3.txt: [('-', '')] LUH19201124-V12-47-page5.txt: [('-', ''), ('-', '')] LUH19201124-V12-47-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19201124-V12-47-page7.txt: [('-were', 'were'), ('-Underhill', 'Underhill')] LUH19201124-V12-47-page8.txt: [('-resent', 'resent'), ('Phil--', 'Phil-'), ('Morning-', 'Morning'), ('Many-', 'Many')] LUH19201124-V12-47-page9.txt: [('-', ''), ('speak-', 'speak'), ('-', ''), ('gath-', 'gath')] LUH19201201-V12-48-page1.txt: [('-', '')] LUH19201201-V12-48-page10.txt: [('-', ''), ('-', ''), ('--Ma', '-Ma')] LUH19201201-V12-48-page11.txt: [('-sent', 'sent'), ('-.be', '.be'), ('-DR', 'DR'), ('-', ''), ('mis-', 'mis')] LUH19201201-V12-48-page12.txt: [('re-', 're')] LUH19201201-V12-48-page2.txt: [('Confer-', 'Confer'), ('Terms-', 'Terms')] LUH19201201-V12-48-page3.txt: [('De-', 'De'), ('-', '')] LUH19201201-V12-48-page4.txt: [('dis-', 'dis')] LUH19201201-V12-48-page5.txt: [('-invited', 'invited'), ('purchasIng-', 'purchasIng'), ('-When', 'When'), ('-', ''), ('---zion.', '--zion.'), ('-', ''), ('-e', 'e')] LUH19201201-V12-48-page7.txt: [('-has', 'has')] LUH19201201-V12-48-page8.txt: [('-', ''), ('-cents-a-week', 'cents-a-week'), ('-have', 'have')] LUH19201201-V12-48-page9.txt: [('-', '')] LUH19201208-V12-49-page10.txt: [('-are', 'are'), ('-', ''), ('-', '')] LUH19201208-V12-49-page12.txt: [('-', '')] LUH19201208-V12-49-page13.txt: [('-', ''), ('-', '')] LUH19201208-V12-49-page14.txt: [('-', ''), ('-', ''), ('-', '')] LUH19201208-V12-49-page15.txt: [('-thousand', 'thousand'), ('Septem-', 'Septem'), ('Mich-', 'Mich'), ('Wiscon-', 'Wiscon'), ('Wiscon-', 'Wiscon'), ('Mich-', 'Mich')] LUH19201208-V12-49-page2.txt: [('Terms-', 'Terms'), ('Anti-', 'Anti')] LUH19201208-V12-49-page3.txt: [('-human', 'human'), ('mes-', 'mes')] LUH19201208-V12-49-page4.txt: [('un-', 'un'), ('one-', 'one')] LUH19201208-V12-49-page5.txt: [('-', '')] LUH19201208-V12-49-page7.txt: [('-evening', 'evening'), ('-ejected', 'ejected'), ('-recently', 'recently')] LUH19201208-V12-49-page8.txt: [('-', ''), ('-', '')] LUH19201208-V12-49-page9.txt: [('-fully', 'fully'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19201215-V12-50-page1.txt: [('-Russell', 'Russell'), ('-previously', 'previously'), ('-of', 'of'), ('-', ''), ('-', '')] LUH19201215-V12-50-page10.txt: [('-nineteen', 'nineteen'), ('"The-', '"The'), ('-', ''), ('-', '')] LUH19201215-V12-50-page11.txt: [('-be', 'be'), ('-', '')] LUH19201215-V12-50-page12.txt: [('"--', '"-'), ('-as', 'as')] LUH19201215-V12-50-page13.txt: [('-', '')] LUH19201215-V12-50-page14.txt: [('-', ''), ('num.-', 'num.')] LUH19201215-V12-50-page15.txt: [('Ill.-', 'Ill.'), ('-', ''), ('Miss-', 'Miss')] LUH19201215-V12-50-page16.txt: [('Packing.-', 'Packing.'), ('-for', 'for')] LUH19201215-V12-50-page2.txt: [('-a', 'a'), ('Seventh-day-', 'Seventh-day'), ('of-', 'of')] LUH19201215-V12-50-page3.txt: [('in-', 'in'), ('-', ''), ('-', ''), ('-would', 'would'), ('enrolled-', 'enrolled')] LUH19201215-V12-50-page4.txt: [('trail-', 'trail')] LUH19201215-V12-50-page6.txt: [('be-', 'be')] LUH19201215-V12-50-page7.txt: [('-new', 'new'), ('-gave', 'gave'), ('-our', 'our'), ('-the', 'the'), ('-we', 'we'), ('the-', 'the'), ('foreigners.-', 'foreigners.'), ('-last', 'last')] LUH19201215-V12-50-page8.txt: [('-', ''), ('Mc-', 'Mc'), ('-', '')] LUH19201215-V12-50-page9.txt: [('-conference', 'conference'), ('-Lamson', 'Lamson'), ('-', ''), ('-', ''), ('-', '')] LUH19201222-V12-51-page1.txt: [('-but', 'but'), ('Mission-', 'Mission'), ('-ent.', 'ent.')] LUH19201222-V12-51-page10.txt: [('-page', 'page'), ('-for', 'for')] LUH19201222-V12-51-page11.txt: [('-Thanksgiving', 'Thanksgiving'), ('-the', 'the'), ('-', ''), ('-astray', 'astray'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] LUH19201222-V12-51-page12.txt: [('-', ''), ('-', ''), ('-', ''), ("'-", "'"), ('-', ''), ('-', ''), ('-', ''), ('"-', '"'), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] LUH19201222-V12-51-page2.txt: [('-', '')] LUH19201222-V12-51-page3.txt: [('Terms-', 'Terms'), ('Ad-', 'Ad'), ('-', ''), ('somewhat-', 'somewhat'), ('-cross', 'cross'), ('build-', 'build'), ('-', ''), ('-plod', 'plod'), ('a.-', 'a.')] LUH19201222-V12-51-page4.txt: [('pumpkins-', 'pumpkins'), ('-sent', 'sent')] LUH19201222-V12-51-page5.txt: [('-', '')] LUH19201222-V12-51-page6.txt: [('-borne', 'borne'), ('-campaign', 'campaign')] LUH19201222-V12-51-page7.txt: [('-', ''), ('Pro-', 'Pro'), ('-', '')] LUH19201222-V12-51-page8.txt: [('-', ''), ('-at', 'at'), ('-Brother', 'Brother'), ('im-', 'im'), ('-', '')] LUH19201222-V12-51-page9.txt: [('-', ''), ('-for', 'for'), ('in-', 'in'), ('-than', 'than')]
In [20]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction3 Average verified rate: 0.969762184438248 Average of error rates: 0.033413153456998315 Total token count: 5745587
In [21]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[21]:
[('e', 15515), ('w', 12254), ('m', 9261), ('r', 8963), ('br', 8455), ('g', 7885), ('f', 7801), ('d', 6791), ("'", 3786), ('n', 3584), ('od', 3519), ('gc', 3060), ('k', 2721), ('wm', 2525), ('t', 2147), ('th', 1734), ("canvassers'", 1208), ('pg', 1116), ('co', 1026), ('bf', 911), ('mt', 893), ('ck', 767), ('hm', 731), ('u', 578), ('ords', 470), ('drury', 452), ('x', 423), ('suda', 358), ("elders'", 338), ('kimberlin', 264), ('lb', 244), ("sec'y-treas", 244), ('plake', 241), ("colporteurs'", 238), ('mitzelfelt', 215), ("'the", 206), ('two-per-cent', 203), ("soldiers'", 202), ('erald', 201), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('pengelly', 166), ('es', 160), ('kittleson', 152), ('pp', 151), ('tatton', 149), ('palmiter', 148), ("'i", 148), ('mc', 148)]
Correction 4 -- Remove extra quotation marks¶
In [22]:
# %load shared_elements/replace_extra_quotation_marks.py
prev = cycle
cycle = "correction4"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
text = re.sub(r"[0-9,!?$:;&]", " ", content)
tokens = utilities.tokenize_text(text)
corrections = []
for token in tokens:
token_list = list(token)
last_char = token_list[-1]
if last_char is "'":
if len(token) > 1:
if token_list[-2] is 's' or 'S':
pass
else:
corrections.append((token, re.sub(r"'", r"", token)))
else:
pass
elif token[0] is "'":
corrections.append((token, re.sub(r"'", r"", token)))
else:
pass
if len(corrections) > 0:
print('{}: {}'.format(filename, corrections))
for correction in corrections:
content = clean.replace_pair(correction, content)
else:
pass
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
LUH19081104-V01-01-page1.txt: [("'Our", 'Our')] LUH19081104-V01-01-page4.txt: [("'L.", 'L.')] LUH19081111-V01-02-page3.txt: [("'Of", 'Of'), ("'and", 'and')] LUH19081111-V01-02-page5.txt: [("'testimonies", 'testimonies'), ("'done", 'done')] LUH19081111-V01-02-page7.txt: [("'Many", 'Many'), ("'of", 'of')] LUH19081111-V01-02-page8.txt: [("'is", 'is')] LUH19081119-V01-03-page2.txt: [("'with", 'with')] LUH19081119-V01-03-page4.txt: [("'is", 'is')] LUH19081119-V01-03-page5.txt: [("'America", 'America')] LUH19081125-V01-04-page6.txt: [('\'"', '"')] LUH19081125-V01-04-page7.txt: [("'Interest.", 'Interest.')] LUH19081202-V01-05-page1.txt: [("'tis", 'tis')] LUH19081202-V01-05-page2.txt: [("'People's", 'Peoples')] LUH19081202-V01-05-page3.txt: [("'in", 'in')] LUH19081202-V01-05-page6.txt: [("'two", 'two'), ("'nearly", 'nearly')] LUH19081202-V01-05-page7.txt: [("'does", 'does'), ("'once.", 'once.'), ("'Roue", 'Roue')] LUH19081202-V01-05-page8.txt: [("'They", 'They')] LUH19081209-V01-06-page3.txt: [("'that", 'that')] LUH19081209-V01-06-page4.txt: [("'from", 'from')] LUH19081216-V01-07-page2.txt: [("'reading", 'reading')] LUH19081216-V01-07-page4.txt: [("'a", 'a'), ("'brothers", 'brothers')] LUH19081216-V01-07-page6.txt: [("'of", 'of')] LUH19081216-V01-07-page7.txt: [("'On", 'On')] LUH19081216-V01-07-page8.txt: [("'Fri-City", 'Fri-City')] LUH19081223-V01-08-page6.txt: [("'Work.", 'Work.'), ("'a", 'a'), ("'to", 'to'), ("'the", 'the'), ('\'".', '".'), ("'Mrs.", 'Mrs.')] LUH19081223-V01-08-page7.txt: [("'on", 'on'), ("'third", 'third'), ("'now", 'now'), ("'upon", 'upon'), ("'A", 'A'), ('\'"', '"'), ("'Continued", 'Continued'), ("'Oregon", 'Oregon'), ("'interested", 'interested'), ("'this", 'this'), ("'effective", 'effective'), ("'of", 'of'), ("'be", 'be')] LUH19081230-V01-09-page1.txt: [("'no", 'no')] LUH19081230-V01-09-page3.txt: [("'entrance", 'entrance')] LUH19081230-V01-09-page4.txt: [("'make", 'make')] LUH19081230-V01-09-page7.txt: [("'he", 'he')] LUH19090106-V01-10-page1.txt: [("'or", 'or')] LUH19090106-V01-10-page2.txt: [("'Many", 'Many')] LUH19090106-V01-10-page5.txt: [("'Twelve", 'Twelve'), ("'l'A", 'lA')] LUH19090106-V01-10-page8.txt: [("'UNION", 'UNION')] LUH19090113-V01-11-page1.txt: [("'secure", 'secure')] LUH19090113-V01-11-page4.txt: [("'men", 'men')] LUH19090113-V01-11-page5.txt: [("'s", 's')] LUH19090113-V01-11-page6.txt: [("'tis", 'tis')] LUH19090113-V01-11-page7.txt: [("'Volunteer", 'Volunteer')] LUH19090113-V01-11-page8.txt: [("'persons", 'persons'), ("'the", 'the')] LUH19090120-V01-12-page2.txt: [("'SERVICE.", 'SERVICE.')] LUH19090120-V01-12-page8.txt: [("'Emmanuel", 'Emmanuel')] LUH19090127-V01-13-page8.txt: [("'holding", 'holding')] LUH19090203-V01-14-page1.txt: [("'the", 'the'), ("'Tis", 'Tis'), ("'great", 'great')] LUH19090203-V01-14-page2.txt: [("'His", 'His')] LUH19090203-V01-14-page6.txt: [("'Tis", 'Tis')] LUH19090210-V01-15-page4.txt: [("'South", 'South')] LUH19090210-V01-15-page7.txt: [("'Shakespeare.", 'Shakespeare.')] LUH19090210-V01-15-page8.txt: [("'notices.", 'notices.')] LUH19090217-V01-16-page1.txt: [("'Tis", 'Tis')] LUH19090217-V01-16-page3.txt: [("'that", 'that'), ("'Levitical", 'Levitical')] LUH19090217-V01-16-page5.txt: [("'help", 'help')] LUH19090224-V01-17-page2.txt: [("'are", 'are')] LUH19090224-V01-17-page4.txt: [("'two", 'two')] LUH19090224-V01-17-page5.txt: [("'we", 'we')] LUH19090303-V01-18-page3.txt: [("'describe", 'describe')] LUH19090303-V01-18-page6.txt: [("'one", 'one'), ("'a", 'a'), ("'one", 'one'), ("'Syriac", 'Syriac')] LUH19090303-V01-18-page7.txt: [("'of", 'of')] LUH19090303-V01-18-page8.txt: [("'office", 'office')] LUH19090310-V01-19-page1.txt: [("'m", 'm'), ("'ve", 've')] LUH19090310-V01-19-page4.txt: [("'kJ", 'kJ')] LUH19090310-V01-19-page6.txt: [("'Work", 'Work')] LUH19090310-V01-19-page7.txt: [("'two", 'two')] LUH19090317-V01-20-page1.txt: [("'night", 'night')] LUH19090317-V01-20-page5.txt: [("'End", 'End'), ("'End", 'End'), ("'End", 'End')] LUH19090317-V01-20-page6.txt: [("'.", '.')] LUH19090317-V01-20-page8.txt: [("'Sister", 'Sister')] LUH19090324-V01-21-page3.txt: [("'has", 'has')] LUH19090324-V01-21-page7.txt: [("'I'OLF.", 'IOLF.'), ("'Sentinel", 'Sentinel')] LUH19090331-V01-22-page1.txt: [("'your", 'your')] LUH19090331-V01-22-page7.txt: [("'an", 'an')] LUH19090331-V01-22-page8.txt: [("'I", 'I')] LUH19090407-V01-23-page1.txt: [("'twas", 'twas'), ("'Tis", 'Tis')] LUH19090407-V01-23-page3.txt: [("'do", 'do')] LUH19090407-V01-23-page5.txt: [("'by", 'by'), ("'teacher", 'teacher')] LUH19090407-V01-23-page7.txt: [("'that", 'that')] LUH19090414-V01-24-page2.txt: [("'thirsting", 'thirsting'), ("'the", 'the'), ("'such", 'such')] LUH19090414-V01-24-page3.txt: [("'noise", 'noise')] LUH19090414-V01-24-page4.txt: [("'God's", 'Gods'), ("'holy", 'holy')] LUH19090414-V01-24-page5.txt: [("'matters", 'matters')] LUH19090414-V01-24-page6.txt: [("'has", 'has'), ("'of", 'of'), ("'on", 'on')] LUH19090414-V01-24-page7.txt: [("'so", 'so')] LUH19090414-V01-24-page8.txt: [("'some", 'some')] LUH19090421-V01-25-page6.txt: [("'What", 'What'), ("'Shall", 'Shall')] LUH19090428-V01-26-page1.txt: [("'us", 'us')] LUH19090505-V01-27-page2.txt: [("'that", 'that'), ("'children", 'children'), ("'and", 'and')] LUH19090505-V01-27-page3.txt: [("'If", 'If'), ("'facilities", 'facilities'), ("'Wisdom", 'Wisdom'), ("'in", 'in'), ("'tithesand", 'tithesand')] LUH19090505-V01-27-page4.txt: [("'God's", 'Gods'), ("'In", 'In'), ("'subject", 'subject'), ("'to", 'to'), ("'practiced", 'practiced'), ("'Most", 'Most'), ("'had", 'had'), ("'He", 'He'), ("'come", 'come'), ("'to", 'to'), ("'but", 'but'), ("'gave", 'gave'), ("'Lesson", 'Lesson'), ("'he", 'he'), ("'the", 'the'), ("'Rom.", 'Rom.')] LUH19090505-V01-27-page5.txt: [("'Tuesday", 'Tuesday'), ("'His", 'His'), ("'is", 'is')] LUH19090505-V01-27-page6.txt: [("'Southern", 'Southern'), ("'do", 'do'), ("'work.", 'work.'), ("'to", 'to'), ("'Reports", 'Reports'), ("'A", 'A'), ("'advantages", 'advantages')] LUH19090505-V01-27-page7.txt: [("'will", 'will'), ("'present.", 'present.'), ("'by", 'by'), ("'.", '.'), ("'C.", 'C.'), ("'C.", 'C.')] LUH19090505-V01-27-page8.txt: [("'papers", 'papers')] LUH19090512-V01-28-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'tis", 'tis')] LUH19090512-V01-28-page2.txt: [("'permit", 'permit')] LUH19090512-V01-28-page3.txt: [("'are", 'are')] LUH19090512-V01-28-page6.txt: [("'new", 'new'), ("'this", 'this')] LUH19090512-V01-28-page7.txt: [("'It", 'It')] LUH19090512-V01-28-page8.txt: [("'good", 'good')] LUH19090519-V01-29-page4.txt: [("'of", 'of'), ("'to", 'to'), ('\'hosts."', 'hosts."'), ("'from", 'from'), ("'Lord", 'Lord'), ("'adjustment", 'adjustment'), ("'individual", 'individual')] LUH19090519-V01-29-page5.txt: [("'Himself", 'Himself')] LUH19090519-V01-29-page7.txt: [("'I", 'I'), ("'HERALD", 'HERALD')] LUH19090519-V01-29-page8.txt: [("'Lake", 'Lake')] LUH19090526-V01-30-page11.txt: [("'time", 'time')] LUH19090526-V01-30-page14.txt: [("'Seventh-day", 'Seventh-day')] LUH19090526-V01-30-page3.txt: [("'.", '.')] LUH19090526-V01-30-page4.txt: [("'any", 'any')] LUH19090526-V01-30-page5.txt: [("'Both", 'Both'), ("'No.", 'No.')] LUH19090526-V01-30-page7.txt: [("'What", 'What')] LUH19090526-V01-30-page8.txt: [("'the", 'the'), ("'notices.", 'notices.')] LUH19090526-V01-30-page9.txt: [("'God", 'God'), ("'Twould", 'Twould'), ("'Tould", 'Tould'), ("'Mid", 'Mid')] LUH19090602-V01-31-page1.txt: [("'Twould", 'Twould'), ("'Tould", 'Tould'), ("'Mid", 'Mid')] LUH19090602-V01-31-page3.txt: [("'time", 'time')] LUH19090602-V01-31-page6.txt: [("'Seventh-day", 'Seventh-day')] LUH19090602-V01-31-page8.txt: [("'Washington", 'Washington')] LUH19090609-V01-32-page1.txt: [("'Tis", 'Tis')] LUH19090609-V01-32-page6.txt: [("'fact", 'fact'), ("'low", 'low'), ("'Reports", 'Reports')] LUH19090609-V01-32-page7.txt: [("'Moth", 'Moth'), ("'on", 'on'), ("'F.", 'F.')] LUH19090609-V01-32-page8.txt: [("'study.", 'study.'), ("'young", 'young')] LUH19090616-V01-33-page1.txt: [("'LAUNCH", 'LAUNCH'), ("'Let", 'Let'), ("'When", 'When')] LUH19090616-V01-33-page2.txt: [("'For", 'For')] LUH19090616-V01-33-page3.txt: [("'Do", 'Do')] LUH19090616-V01-33-page4.txt: [("'precious", 'precious')] LUH19090616-V01-33-page8.txt: [("'ADVENTISTS", 'ADVENTISTS')] LUH19090623-V01-34-page1.txt: [("'God", 'God')] LUH19090623-V01-34-page3.txt: [("'knows", 'knows')] LUH19090623-V01-34-page5.txt: [("'higher", 'higher')] LUH19090623-V01-34-page6.txt: [("'rest", 'rest')] LUH19090623-V01-34-page8.txt: [("'It", 'It')] LUH19090630-V01-35-page2.txt: [("'principle", 'principle')] LUH19090630-V01-35-page4.txt: [("'seems", 'seems')] LUH19090707-V01-36-page3.txt: [("'as", 'as')] LUH19090707-V01-36-page4.txt: [("'farther", 'farther')] LUH19090707-V01-36-page6.txt: [("'Reports", 'Reports')] LUH19090714-V01-37-page1.txt: [("''Shall", 'Shall'), ("'marble", 'marble')] LUH19090714-V01-37-page2.txt: [("'Program", 'Program'), ("'eaucational", 'eaucational')] LUH19090714-V01-37-page7.txt: [("'Work", 'Work'), ("''.J.", '.J.')] LUH19090714-V01-37-page8.txt: [("'r", 'r')] LUH19090721-V01-38-page1.txt: [("'NI.", 'NI.')] LUH19090721-V01-38-page3.txt: [("'may", 'may'), ("'one", 'one')] LUH19090721-V01-38-page4.txt: [("'s", 's')] LUH19090721-V01-38-page5.txt: [("'the", 'the'), ("'where", 'where'), ("'and", 'and')] LUH19090728-V01-39-page1.txt: [("'Neath", 'Neath')] LUH19090728-V01-39-page4.txt: [("'Tell", 'Tell'), ("'General", 'General')] LUH19090728-V01-39-page6.txt: [("'glad", 'glad')] LUH19090804-V01-40-page2.txt: [("'vas", 'vas')] LUH19090804-V01-40-page3.txt: [("'but", 'but')] LUH19090804-V01-40-page6.txt: [("'Reports", 'Reports')] LUH19090804-V01-40-page7.txt: [("'coo", 'coo'), ("'Agnes", 'Agnes'), ("'West", 'West')] LUH19090811-V01-41-page3.txt: [("'they", 'they')] LUH19090811-V01-41-page5.txt: [("'Why", 'Why')] LUH19090811-V01-41-page6.txt: [("'is", 'is')] LUH19090818-V01-42-page2.txt: [("'bound", 'bound'), ("'and", 'and')] LUH19090818-V01-42-page3.txt: [("'providing", 'providing')] LUH19090818-V01-42-page4.txt: [("'and", 'and'), ("'shor", 'shor')] LUH19090818-V01-42-page5.txt: [("'her", 'her'), ("''Giving", 'Giving')] LUH19090818-V01-42-page6.txt: [("'oak", 'oak')] LUH19090818-V01-42-page7.txt: [("'.e", '.e')] LUH19090825-V01-43-page1.txt: [("'of", 'of'), ("'prayer.", 'prayer.'), ("'the", 'the')] LUH19090825-V01-43-page2.txt: [('\'"', '"'), ("'upon", 'upon')] LUH19090825-V01-43-page3.txt: [("'willing", 'willing')] LUH19090825-V01-43-page6.txt: [("'blame", 'blame')] LUH19090825-V01-43-page8.txt: [("'Covert", 'Covert'), ("'of", 'of')] LUH19090901-V01-44-page5.txt: [("'good", 'good')] LUH19090901-V01-44-page6.txt: [("'work", 'work')] LUH19090901-V01-44-page7.txt: [("'very", 'very'), ("'tant", 'tant'), ("'some", 'some')] LUH19090901-V01-44-page8.txt: [('\'"', '"'), ("'joint", 'joint'), ("'twas", 'twas'), ("'That", 'That')] LUH19090908-V01-45-page1.txt: [("'N", 'N'), ("'Tis", 'Tis')] LUH19090908-V01-45-page2.txt: [("'of", 'of'), ("'man", 'man')] LUH19090908-V01-45-page3.txt: [("'consumption", 'consumption'), ("'dishes", 'dishes'), ("'darkened", 'darkened'), ("'his", 'his'), ("'noble", 'noble'), ("'his", 'his')] LUH19090908-V01-45-page7.txt: [("'As", 'As'), ("'camp", 'camp')] LUH19090908-V01-45-page8.txt: [("'HERALD", 'HERALD'), ("'UNION", 'UNION')] LUH19090915-V01-46-page2.txt: [("'enemy", 'enemy')] LUH19090915-V01-46-page3.txt: [("'Forbid", 'Forbid'), ("'Died", 'Died')] LUH19090915-V01-46-page5.txt: [("'success", 'success')] LUH19090915-V01-46-page6.txt: [("'take", 'take')] LUH19090915-V01-46-page8.txt: [("'le", 'le')] LUH19090922-V01-47-page1.txt: [("'very", 'very')] LUH19090922-V01-47-page2.txt: [("'and", 'and')] LUH19090922-V01-47-page6.txt: [("'.", '.')] LUH19090922-V01-47-page8.txt: [("'fifteen", 'fifteen')] LUH19090929-V01-48-page2.txt: [("'without", 'without')] LUH19090929-V01-48-page6.txt: [("'tell", 'tell')] LUH19090929-V01-48-page8.txt: [("'has", 'has')] LUH19091006-V01-49-page1.txt: [("'Word", 'Word'), ("'t", 't')] LUH19091006-V01-49-page3.txt: [("'Dr.", 'Dr.')] LUH19091006-V01-49-page6.txt: [("'eleven", 'eleven'), ("'attic", 'attic')] LUH19091013-V01-50-page5.txt: [("'one", 'one')] LUH19091013-V01-50-page6.txt: [("''.", '.')] LUH19091013-V01-50-page7.txt: [("'River", 'River'), ("'at", 'at')] LUH19091013-V01-50-page8.txt: [("'Shall", 'Shall')] LUH19091020-V01-51-page2.txt: [("'the", 'the')] LUH19091020-V01-51-page3.txt: [("'fashionable", 'fashionable'), ("'and", 'and')] LUH19091020-V01-51-page5.txt: [("'begin", 'begin'), ("'Thou", 'Thou')] LUH19091020-V01-51-page6.txt: [("'BROWNS.", 'BROWNS.')] LUH19091020-V01-51-page7.txt: [('\'"', '"')] LUH19091027-V01-52-page3.txt: [("'Inas", 'Inas')] LUH19091027-V01-52-page4.txt: [("'Lord", 'Lord')] LUH19091027-V01-52-page7.txt: [("'Work", 'Work')] LUH19091103-V01-53-page1.txt: [("'T", 'T'), ("'will", 'will'), ("'reveal", 'reveal')] LUH19091103-V01-53-page2.txt: [("'in", 'in')] LUH19091103-V01-53-page4.txt: [("'this", 'this')] LUH19091103-V01-53-page5.txt: [("'Americans", 'Americans'), ("'South", 'South')] LUH19091103-V01-53-page8.txt: [("'.", '.'), ("'Was", 'Was'), ("'instructive", 'instructive'), ("'new", 'new'), ("'the", 'the'), ("'betterment", 'betterment'), ("'.of", '.of'), ("'coming", 'coming'), ("'subject", 'subject'), ("'Boylan", 'Boylan'), ("'en", 'en')] LUH19091110-V01-54-page2.txt: [("'hear", 'hear')] LUH19091110-V01-54-page3.txt: [("'unreal", 'unreal'), ("'inherently", 'inherently'), ("'frivolous", 'frivolous'), ("'cowardly", 'cowardly'), ("'What", 'What'), ("'his", 'his')] LUH19091110-V01-54-page5.txt: [("'the", 'the')] LUH19091110-V01-54-page6.txt: [("'Iota", 'Iota')] LUH19091110-V01-54-page8.txt: [("'The", 'The'), ("'world", 'world'), ("'ADVENTISTS", 'ADVENTISTS')] LUH19091117-V01-55-page5.txt: [("'for", 'for'), ("'with", 'with'), ("'Reports", 'Reports')] LUH19091117-V01-55-page7.txt: [("'I", 'I'), ("'rwo", 'rwo')] LUH19091124-V01-56-page1.txt: [("'tis", 'tis')] LUH19091124-V01-56-page5.txt: [("'Where", 'Where'), ("'I", 'I'), ("'How", 'How')] LUH19091201-V01-57-page2.txt: [("'change", 'change')] LUH19091201-V01-57-page3.txt: [("'Saturday", 'Saturday'), ("'backed", 'backed')] LUH19091201-V01-57-page4.txt: [("'enrollment", 'enrollment')] LUH19091201-V01-57-page8.txt: [('\'"', '"'), ("''Eastern", 'Eastern')] LUH19091208-V01-58-page3.txt: [("'Ilow", 'Ilow'), ("'conjrast", 'conjrast'), ("'some", 'some'), ("'a", 'a'), ("'under", 'under'), ("'ciSm", 'ciSm'), ("'Ye", 'Ye')] LUH19091208-V01-58-page4.txt: [("'abundantly.", 'abundantly.')] LUH19091208-V01-58-page5.txt: [("'who", 'who'), ("'with", 'with')] LUH19091208-V01-58-page6.txt: [("'general", 'general'), ("'churches.", 'churches.'), ("'some", 'some'), ("'had", 'had'), ("'of", 'of')] LUH19091208-V01-58-page7.txt: [("'Perry", 'Perry'), ("'of", 'of'), ("'A.", 'A.'), ("'conference", 'conference'), ("'December", 'December')] LUH19091215-V01-59-page1.txt: [("'neath", 'neath')] LUH19091215-V01-59-page3.txt: [("'over", 'over'), ("'D", 'D'), ("'I", 'I')] LUH19091215-V01-59-page4.txt: [("'Now", 'Now')] LUH19091215-V01-59-page8.txt: [("'Springfield", 'Springfield')] LUH19091222-V01-60-page2.txt: [("'We", 'We')] LUH19091222-V01-60-page5.txt: [("'learn", 'learn')] LUH19091222-V01-60-page8.txt: [("'l'H", 'lH')] LUH19100105-V02-01-page1.txt: [("'tis", 'tis'), ("'expect", 'expect'), ("'the", 'the')] LUH19100105-V02-01-page5.txt: [("'feSsed", 'feSsed'), ("'Reports", 'Reports')] LUH19100105-V02-01-page6.txt: [("'Work", 'Work')] LUH19100105-V02-01-page7.txt: [("'s", 's')] LUH19100105-V02-01-page8.txt: [("'The", 'The'), ("'these", 'these'), ("'visited", 'visited')] LUH19100112-V02-02-page1.txt: [("'tie", 'tie'), ("'rime", 'rime')] LUH19100112-V02-02-page2.txt: [("'confer", 'confer')] LUH19100112-V02-02-page6.txt: [("'Cease", 'Cease')] LUH19100112-V02-02-page7.txt: [("'a", 'a')] LUH19100119-V02-03-page3.txt: [("'.", '.')] LUH19100119-V02-03-page4.txt: [("'Son", 'Son')] LUH19100119-V02-03-page7.txt: [("''Ministry", 'Ministry')] LUH19100126-V02-04-page1.txt: [("'So", 'So')] LUH19100126-V02-04-page4.txt: [("'we", 'we')] LUH19100126-V02-04-page6.txt: [("'reas.", 'reas.')] LUH19100126-V02-04-page8.txt: [("'his", 'his')] LUH19100202-V02-05-page3.txt: [("'Jesus", 'Jesus')] LUH19100202-V02-05-page8.txt: [("'BERRIEN", 'BERRIEN')] LUH19100209-V02-06-page4.txt: [("'Christian", 'Christian'), ("'Vol.", 'Vol.')] LUH19100209-V02-06-page6.txt: [("'his", 'his'), ("'Mott", 'Mott')] LUH19100216-V02-07-page12.txt: [("'strike", 'strike'), ("'P", 'P')] LUH19100216-V02-07-page13.txt: [("'reported", 'reported')] LUH19100216-V02-07-page2.txt: [("'This", 'This')] LUH19100216-V02-07-page4.txt: [("'spired", 'spired'), ("'in", 'in')] LUH19100216-V02-07-page7.txt: [("'that", 'that')] LUH19100216-V02-07-page8.txt: [("'up", 'up'), ("'accomplished.", 'accomplished.')] LUH19100216-V02-07-page9.txt: [("'Southern", 'Southern')] LUH19100223-V02-08-page10.txt: [("'Again", 'Again')] LUH19100223-V02-08-page13.txt: [("'years.", 'years.'), ("'Wisconsin", 'Wisconsin')] LUH19100223-V02-08-page15.txt: [("'The", 'The')] LUH19100223-V02-08-page2.txt: [("'Daniel", 'Daniel'), ("'Great", 'Great')] LUH19100223-V02-08-page5.txt: [("'churches", 'churches'), ("'taken", 'taken'), ("'support", 'support')] LUH19100302-V02-09-page1.txt: [("'all", 'all')] LUH19100302-V02-09-page10.txt: [("'the", 'the')] LUH19100302-V02-09-page14.txt: [("'Great", 'Great'), ("'This", 'This'), ("'Bible", 'Bible'), ("'Great", 'Great'), ("'Glorious", 'Glorious'), ("'Manual", 'Manual'), ("'Assurance", 'Assurance'), ("''East", 'East')] LUH19100302-V02-09-page2.txt: [("'probably", 'probably')] LUH19100302-V02-09-page6.txt: [("'hold", 'hold'), ("'the", 'the')] LUH19100302-V02-09-page7.txt: [("'question", 'question'), ("'whole", 'whole')] LUH19100302-V02-09-page9.txt: [("'an", 'an')] LUH19100309-V02-10-page1.txt: [("'the", 'the')] LUH19100309-V02-10-page10.txt: [("'This", 'This')] LUH19100309-V02-10-page12.txt: [("'Lake", 'Lake'), ("'work.", 'work.')] LUH19100309-V02-10-page13.txt: [("'and", 'and'), ("'canvassing", 'canvassing')] LUH19100309-V02-10-page16.txt: [("'Shepard", 'Shepard'), ("'CONFERENCE", 'CONFERENCE')] LUH19100309-V02-10-page4.txt: [("'ministers", 'ministers')] LUH19100309-V02-10-page6.txt: [("'persons", 'persons'), ("'been", 'been')] LUH19100309-V02-10-page9.txt: [("'Ending", 'Ending')] LUH19100316-V02-11-page1.txt: [("'Twas", 'Twas')] LUH19100316-V02-11-page4.txt: [("'preached", 'preached')] LUH19100323-V02-12-page1.txt: [("'President", 'President')] LUH19100323-V02-12-page2.txt: [("'many", 'many')] LUH19100323-V02-12-page7.txt: [("'Beechwood", 'Beechwood')] LUH19100330-V02-13-page4.txt: [("'Springs", 'Springs')] LUH19100330-V02-13-page6.txt: [("'No", 'No'), ("'has", 'has'), ("'Index", 'Index')] LUH19100406-V02-14-page3.txt: [("'by", 'by')] LUH19100406-V02-14-page5.txt: [("'a", 'a'), ("'L", 'L')] LUH19100406-V02-14-page6.txt: [("'I", 'I')] LUH19100413-V02-15-page2.txt: [("'sum", 'sum'), ("'work", 'work')] LUH19100413-V02-15-page3.txt: [("'There", 'There')] LUH19100413-V02-15-page5.txt: [("'the", 'the')] LUH19100413-V02-15-page6.txt: [("'East", 'East')] LUH19100420-V02-16-page1.txt: [("'Out", 'Out')] LUH19100427-V02-17-page4.txt: [("'tone", 'tone')] LUH19100427-V02-17-page5.txt: [("'sleeps", 'sleeps'), ("'Hastings", 'Hastings')] LUH19100427-V02-17-page7.txt: [("'reports", 'reports'), ("'new", 'new'), ("'was", 'was')] LUH19100504-V02-18-page2.txt: [("'be", 'be')] LUH19100504-V02-18-page3.txt: [("'above", 'above')] LUH19100504-V02-18-page5.txt: [("'EDITH", 'EDITH')] LUH19100504-V02-18-page8.txt: [("'BEEBE", 'BEEBE')] LUH19100511-V02-19-page1.txt: [("'Office", 'Office'), ("'The", 'The'), ("'The", 'The'), ("'Ministry", 'Ministry')] LUH19100511-V02-19-page5.txt: [("'Northern", 'Northern')] LUH19100511-V02-19-page6.txt: [('\'reacher."', 'reacher."'), ("'by", 'by')] LUH19100511-V02-19-page7.txt: [("'Ministry", 'Ministry')] LUH19100518-V02-20-page4.txt: [("'Daniel", 'Daniel')] LUH19100518-V02-20-page5.txt: [("'Hicks", 'Hicks')] LUH19100518-V02-20-page8.txt: [("'Nashville", 'Nashville')] LUH19100525-V02-21-page1.txt: [("'tis", 'tis')] LUH19100525-V02-21-page7.txt: [("'call", 'call')] LUH19100601-V02-22-page1.txt: [("'tis", 'tis')] LUH19100601-V02-22-page4.txt: [("'Great", 'Great')] LUH19100601-V02-22-page6.txt: [("'reacher", 'reacher')] LUH19100608-V02-23-page6.txt: [("'JR.", 'JR.')] LUH19100615-V02-24-page1.txt: [("'when", 'when')] LUH19100615-V02-24-page4.txt: [("'UNION", 'UNION')] LUH19100615-V02-24-page7.txt: [("'for", 'for')] LUH19100622-V02-25-page1.txt: [("'.", '.')] LUH19100622-V02-25-page5.txt: [("'HERALD", 'HERALD')] LUH19100629-V02-26-page10.txt: [("'minister", 'minister')] LUH19100629-V02-26-page9.txt: [("'in", 'in')] LUH19100706-V02-27-page1.txt: [("'physical", 'physical')] LUH19100706-V02-27-page2.txt: [("'There", 'There'), ("'question", 'question'), ("'Great", 'Great')] LUH19100706-V02-27-page4.txt: [("'phone", 'phone')] LUH19100706-V02-27-page8.txt: [("'in", 'in'), ("'s", 's')] LUH19100706-V02-27-page9.txt: [("'We", 'We'), ("'for", 'for')] LUH19100713-V02-28-page1.txt: [("'neath", 'neath'), ("'some", 'some')] LUH19100713-V02-28-page2.txt: [("'Bible", 'Bible'), ("'Great", 'Great'), ("'Prophecies", 'Prophecies')] LUH19100720-V02-29-page10.txt: [("'K.", 'K.')] LUH19100720-V02-29-page9.txt: [("'which", 'which')] LUH19100727-V02-30-page1.txt: [("'On", 'On'), ("'How", 'How'), ("'of", 'of')] LUH19100727-V02-30-page2.txt: [("'that", 'that'), ("'take", 'take'), ("'time", 'time'), ("'pleasures", 'pleasures')] LUH19100727-V02-30-page5.txt: [("'I", 'I')] LUH19100727-V02-30-page7.txt: [("'be", 'be')] LUH19100810-V02-32-page10.txt: [("'big", 'big')] LUH19100810-V02-32-page5.txt: [("'It", 'It'), ("'so", 'so'), ("'so", 'so')] LUH19100810-V02-32-page7.txt: [("'that", 'that'), ("'C.", 'C.')] LUH19100810-V02-32-page8.txt: [("'at", 'at'), ("'Pruitt", 'Pruitt'), ("'Mrs.", 'Mrs.'), ("'aged", 'aged'), ("'brothers", 'brothers'), ("'uniting", 'uniting'), ("'dear", 'dear'), ("'Daniel", 'Daniel'), ("'that", 'that'), ("'Traverse", 'Traverse'), ("'Aug.", 'Aug.')] LUH19100810-V02-32-page9.txt: [("'States.", 'States.'), ("'until", 'until'), ("'HillShoro", 'HillShoro'), ("'where", 'where'), ("'A", 'A'), ("'from", 'from'), ("'at", 'at'), ("'Falls", 'Falls'), ("'days", 'days'), ("'and", 'and'), ("'be", 'be')] LUH19100817-V02-33-page2.txt: [("'Well", 'Well'), ("'That", 'That'), ("'Are", 'Are'), ("'Yes", 'Yes'), ("'I", 'I'), ("'Have", 'Have')] LUH19100817-V02-33-page3.txt: [("'Great", 'Great'), ("'Great", 'Great')] LUH19100817-V02-33-page4.txt: [("'of", 'of')] LUH19100817-V02-33-page6.txt: [('\'Testimonies."', 'Testimonies."')] LUH19100824-V02-34-page2.txt: [("'Home", 'Home')] LUH19100824-V02-34-page4.txt: [("'UNION", 'UNION')] LUH19100824-V02-34-page5.txt: [("'Three", 'Three')] LUH19100824-V02-34-page8.txt: [("'God", 'God')] LUH19100831-V02-35-page4.txt: [("'Sanctify", 'Sanctify'), ("'I", 'I')] LUH19100907-V02-36-page1.txt: [("'preparing", 'preparing')] LUH19100907-V02-36-page3.txt: [("'dress", 'dress')] LUH19100907-V02-36-page5.txt: [("'MARY", 'MARY')] LUH19100907-V02-36-page6.txt: [("'Friend", 'Friend'), ("'Tis", 'Tis'), ("'gospel", 'gospel'), ("'have", 'have')] LUH19100907-V02-36-page8.txt: [("'to", 'to')] LUH19100914-V02-37-page6.txt: [("'no", 'no')] LUH19100914-V02-37-page8.txt: [("'Illinois", 'Illinois')] LUH19100921-V02-38-page1.txt: [("'Wherefore", 'Wherefore')] LUH19100921-V02-38-page2.txt: [("'But", 'But'), ("'how", 'how')] LUH19100921-V02-38-page6.txt: [("'weeks", 'weeks')] LUH19100921-V02-38-page8.txt: [("'work", 'work')] LUH19100928-V02-39-page8.txt: [("'Fri-City", 'Fri-City')] LUH19101005-V02-40-page10.txt: [("'four", 'four'), ("'A.", 'A.')] LUH19101005-V02-40-page2.txt: [("'immorality", 'immorality')] LUH19101005-V02-40-page3.txt: [("'Extract", 'Extract')] LUH19101005-V02-40-page4.txt: [("'between", 'between'), ("'Papa", 'Papa')] LUH19101005-V02-40-page6.txt: [("'to", 'to')] LUH19101005-V02-40-page7.txt: [("'Now", 'Now')] LUH19101012-V02-41-page10.txt: [("'Lake", 'Lake')] LUH19101012-V02-41-page2.txt: [("'If", 'If')] LUH19101012-V02-41-page8.txt: [("'Testimonies", 'Testimonies'), ("'While", 'While'), ("'Lorenzo", 'Lorenzo'), ("'Three", 'Three')] LUH19101019-V02-42-page1.txt: [("'coffee", 'coffee')] LUH19101026-V02-43-page1.txt: [("'Office", 'Office'), ("'S.", 'S.'), ("'mid", 'mid'), ("'mid", 'mid')] LUH19101026-V02-43-page2.txt: [("'And", 'And'), ("''image", 'image')] LUH19101026-V02-43-page6.txt: [("'Whom", 'Whom'), ("'Here", 'Here')] LUH19101026-V02-43-page8.txt: [("'old", 'old')] LUH19101102-V02-44-page6.txt: [("'fell.", 'fell.')] LUH19101109-V02-45-page1.txt: [("'tis", 'tis')] LUH19101109-V02-45-page2.txt: [("'so-called", 'so-called')] LUH19101109-V02-45-page5.txt: [("'general", 'general')] LUH19101109-V02-45-page6.txt: [("'have", 'have'), ("'a", 'a')] LUH19101109-V02-45-page8.txt: [("'your", 'your')] LUH19101116-V02-46-page1.txt: [("'organizations", 'organizations')] LUH19101116-V02-46-page3.txt: [("'printed", 'printed')] LUH19101116-V02-46-page5.txt: [("''one", 'one')] LUH19101116-V02-46-page8.txt: [("'ler", 'ler')] LUH19101123-V02-47-page1.txt: [("''In", 'In')] LUH19101123-V02-47-page5.txt: [("'the", 'the')] LUH19101130-V02-48-page5.txt: [("'.", '.')] LUH19101207-V02-49-page1.txt: [("'it", 'it')] LUH19101207-V02-49-page11.txt: [("'Bethel", 'Bethel'), ("'rwater", 'rwater')] LUH19101207-V02-49-page12.txt: [("'Ledge...", 'Ledge...')] LUH19101207-V02-49-page8.txt: [("'Berrien", 'Berrien'), ("'ots", 'ots'), ("'from", 'from')] LUH19101214-V02-50-page3.txt: [("'enriched", 'enriched')] LUH19101214-V02-50-page5.txt: [("'March", 'March')] LUH19101221-V02-51-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19101221-V02-51-page12.txt: [("'the", 'the')] LUH19101221-V02-51-page3.txt: [("'of", 'of')] LUH19101221-V02-51-page5.txt: [("'Let", 'Let')] LUH19110104-V03-01-page4.txt: [("'Great", 'Great')] LUH19110111-V03-02-page3.txt: [("'agent", 'agent')] LUH19110111-V03-02-page5.txt: [("'efforts.", 'efforts.')] LUH19110111-V03-02-page6.txt: [("'Notice", 'Notice')] LUH19110118-V03-03-page1.txt: [("'officers", 'officers')] LUH19110118-V03-03-page2.txt: [("'Maces", 'Maces'), ("'M.", 'M.')] LUH19110125-V03-04-page1.txt: [("'at", 'at'), ("'P.", 'P.')] LUH19110125-V03-04-page3.txt: [("''Successful", 'Successful')] LUH19110125-V03-04-page4.txt: [("''The", 'The')] LUH19110125-V03-04-page5.txt: [("'church", 'church')] LUH19110125-V03-04-page7.txt: [("'missionary", 'missionary')] LUH19110125-V03-04-page8.txt: [("'the", 'the')] LUH19110201-V03-05-page1.txt: [("'Tis", 'Tis')] LUH19110201-V03-05-page4.txt: [("'be", 'be')] LUH19110208-V03-06-page1.txt: [("'Ministry", 'Ministry'), ("'Christ's", 'Christs')] LUH19110208-V03-06-page3.txt: [("'A", 'A'), ("'I", 'I'), ("'they", 'they'), ("'All", 'All')] LUH19110208-V03-06-page8.txt: [("'Ministry", 'Ministry')] LUH19110215-V03-07-page3.txt: [("'part", 'part')] LUH19110215-V03-07-page7.txt: [("'Daniel", 'Daniel')] LUH19110222-V03-08-page5.txt: [("'and", 'and'), ("'will", 'will'), ("'folding", 'folding')] LUH19110222-V03-08-page9.txt: [("'God", 'God')] LUH19110301-V03-09-page1.txt: [("'dirt", 'dirt')] LUH19110301-V03-09-page2.txt: [("'In", 'In'), ("'Christ's", 'Christs')] LUH19110301-V03-09-page3.txt: [("'our", 'our'), ("'field.", 'field.')] LUH19110301-V03-09-page6.txt: [("'Practical", 'Practical')] LUH19110301-V03-09-page8.txt: [("'is", 'is')] LUH19110308-V03-10-page1.txt: [("'gag", 'gag'), ("'It", 'It'), ("'the", 'the'), ("'e'all", 'eall'), ("'F", 'F'), ("'Fund", 'Fund'), ("'Mission", 'Mission'), ("'Of", 'Of'), ("'Muai", 'Muai'), ("'Cf", 'Cf')] LUH19110308-V03-10-page6.txt: [("'by", 'by')] LUH19110308-V03-10-page8.txt: [("'morals.", 'morals.'), ("'care", 'care'), ("'of'co'w", 'ofcow'), ("'and", 'and'), ("'Greent", 'Greent')] LUH19110315-V03-11-page3.txt: [("'near", 'near')] LUH19110315-V03-11-page4.txt: [("'all", 'all')] LUH19110322-V03-12-page1.txt: [("'a", 'a'), ("'of", 'of')] LUH19110322-V03-12-page11.txt: [("'a", 'a')] LUH19110322-V03-12-page13.txt: [("'Brother", 'Brother')] LUH19110322-V03-12-page14.txt: [("'Children's", 'Childrens')] LUH19110322-V03-12-page16.txt: [("'is", 'is')] LUH19110322-V03-12-page5.txt: [("'Ministry", 'Ministry')] LUH19110322-V03-12-page9.txt: [("'this", 'this')] LUH19110329-V03-13-page2.txt: [("'Whom", 'Whom'), ("'Here", 'Here')] LUH19110329-V03-13-page3.txt: [("'How", 'How'), ("'There", 'There'), ("'my", 'my'), ("'Yes", 'Yes')] LUH19110329-V03-13-page4.txt: [("'Surely", 'Surely')] LUH19110329-V03-13-page7.txt: [("'meal", 'meal'), ("'Prof.", 'Prof.')] LUH19110405-V03-14-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19110405-V03-14-page3.txt: [("'What", 'What')] LUH19110405-V03-14-page4.txt: [("'.yore", '.yore')] LUH19110405-V03-14-page5.txt: [("'study", 'study')] LUH19110419-V03-16-page4.txt: [("'H.", 'H.')] LUH19110419-V03-16-page5.txt: [("'Here", 'Here')] LUH19110419-V03-16-page6.txt: [("'are", 'are')] LUH19110426-V03-17-page7.txt: [("'Ministry", 'Ministry')] LUH19110503-V03-18-page2.txt: [("'Mother", 'Mother'), ("'If", 'If'), ("'My", 'My'), ("'Well", 'Well'), ("'I", 'I'), ("'Go", 'Go'), ("'You're", 'Youre'), ("'God", 'God')] LUH19110503-V03-18-page3.txt: [("''In", 'In')] LUH19110503-V03-18-page5.txt: [("''My", 'My')] LUH19110503-V03-18-page7.txt: [("'with", 'with')] LUH19110510-V03-19-page4.txt: [("'MAGOON.", 'MAGOON.')] LUH19110510-V03-19-page8.txt: [("'rook", 'rook')] LUH19110510-V03-19s-page3.txt: [("'of", 'of')] LUH19110524-V03-21-page1.txt: [("'The", 'The'), ("'Today", 'Today'), ("'hold", 'hold')] LUH19110524-V03-21-page2.txt: [("'In", 'In')] LUH19110524-V03-21-page6.txt: [("'has", 'has')] LUH19110531-V03-22-page1.txt: [("'our", 'our'), ("'will", 'will'), ("'Now", 'Now'), ("'tis", 'tis')] LUH19110531-V03-22-page2.txt: [("'yet", 'yet'), ("'belongs", 'belongs')] LUH19110531-V03-22-page3.txt: [("''C.", 'C.')] LUH19110531-V03-22-page5.txt: [("'more", 'more'), ("'s", 's')] LUH19110607-V03-23-page1.txt: [("'.", '.'), ("'of", 'of'), ("'work", 'work')] LUH19110607-V03-23-page4.txt: [("'Great", 'Great'), ("'pain", 'pain'), ("'I", 'I')] LUH19110607-V03-23-page8.txt: [("''While", 'While')] LUH19110614-V03-24-page5.txt: [("'rejoicing.", 'rejoicing.'), ("'Those", 'Those')] LUH19110614-V03-24-page8.txt: [("'R.", 'R.')] LUH19110621-V03-25-page3.txt: [("'prejudice", 'prejudice')] LUH19110621-V03-25-page5.txt: [("'Docks", 'Docks')] LUH19110621-V03-25-page6.txt: [("'dwell", 'dwell')] LUH19110621-V03-25-page8.txt: [("'society.", 'society.')] LUH19110628-V03-26-page1.txt: [("'flue", 'flue')] LUH19110705-V03-27-page3.txt: [("'I", 'I')] LUH19110705-V03-27-page5.txt: [("'Jennie", 'Jennie'), ("'Steps", 'Steps'), ("'Glorious", 'Glorious'), ("'Paradise", 'Paradise')] LUH19110712-V03-28-page2.txt: [("'of", 'of')] LUH19110712-V03-28-page3.txt: [("'summer", 'summer')] LUH19110712-V03-28-page6.txt: [("'Practical", 'Practical'), ("'I", 'I')] LUH19110719-V03-29-page2.txt: [("'I", 'I')] LUH19110719-V03-29-page4.txt: [("'Daniel", 'Daniel')] LUH19110719-V03-29-page5.txt: [("'Daniel", 'Daniel'), ("'Bible", 'Bible'), ("'Great", 'Great'), ("'Best", 'Best'), ("'Great", 'Great'), ("'Prophecies", 'Prophecies')] LUH19110719-V03-29-page8.txt: [("'I.", 'I.')] LUH19110726-V03-30-page1.txt: [("'preaching", 'preaching')] LUH19110726-V03-30-page2.txt: [("'Seventh-day", 'Seventh-day')] LUH19110726-V03-30-page6.txt: [("'do", 'do')] LUH19110726-V03-30-page7.txt: [("'interest.", 'interest.')] LUH19110802-V03-31-page3.txt: [("'engaged", 'engaged')] LUH19110802-V03-31-page6.txt: [("'News", 'News'), ("'News", 'News')] LUH19110802-V03-31-page7.txt: [("'buy", 'buy')] LUH19110802-V03-31-page8.txt: [("'Ph.", 'Ph.'), ("'Pu.", 'Pu.')] LUH19110809-V03-32-page11.txt: [("'Tis", 'Tis')] LUH19110809-V03-32-page6.txt: [("'in", 'in')] LUH19110809-V03-32-page7.txt: [("'That", 'That'), ("'Great", 'Great')] LUH19110809-V03-32-page9.txt: [("'Tis", 'Tis')] LUH19110816-V03-33-page1.txt: [("'gainst", 'gainst'), ("'You", 'You'), ("'We", 'We')] LUH19110816-V03-33-page2.txt: [("'In", 'In')] LUH19110816-V03-33-page7.txt: [("'Necessity", 'Necessity')] LUH19110823-V03-34-page1.txt: [("'delayed", 'delayed')] LUH19110823-V03-34-page5.txt: [("'Raymond", 'Raymond')] LUH19110830-V03-35-page1.txt: [("'Tis", 'Tis'), ("'Neath", 'Neath')] LUH19110830-V03-35-page3.txt: [("'are", 'are')] LUH19110830-V03-35-page6.txt: [("'of", 'of')] LUH19110906-V03-36-page4.txt: [("'earnings", 'earnings'), ("'m", 'm')] LUH19110913-V03-37-page1.txt: [("'Whatsoever", 'Whatsoever'), ("'Reading", 'Reading')] LUH19110913-V03-37-page2.txt: [("'varied", 'varied')] LUH19110913-V03-37-page8.txt: [("'not", 'not')] LUH19110920-V03-38-page1.txt: [("'a", 'a')] LUH19110920-V03-38-page7.txt: [("'on", 'on')] LUH19110927-V03-39-page1.txt: [("'A.", 'A.')] LUH19110927-V03-39-page2.txt: [("'county", 'county')] LUH19110927-V03-39-page6.txt: [("'of", 'of')] LUH19111004-V03-40-page8.txt: [("''Northern", 'Northern')] LUH19111011-V03-41-page1.txt: [("'is", 'is')] LUH19111011-V03-41-page3.txt: [("'Bible", 'Bible'), ("'Gret", 'Gret'), ("'and", 'and')] LUH19111018-V03-42-page6.txt: [("'Faith", 'Faith'), ("'alarm", 'alarm'), ("'It", 'It')] LUH19111025-V03-43-page2.txt: [("'P.", 'P.')] LUH19111025-V03-43-page3.txt: [("'firing", 'firing'), ("'P.", 'P.')] LUH19111025-V03-43-page4.txt: [("'a", 'a')] LUH19111025-V03-43-page6.txt: [("'North", 'North')] LUH19111101-V03-44-page3.txt: [("'The", 'The')] LUH19111101-V03-44-page4.txt: [("'You", 'You')] LUH19111101-V03-44-page6.txt: [("''The", 'The')] LUH19111108-V03-45-page1.txt: [("'not", 'not'), ("'EDWARDS", 'EDWARDS'), ("'T", 'T')] LUH19111108-V03-45-page6.txt: [("''Great", 'Great'), ("'souls", 'souls'), ("'This", 'This'), ("'and", 'and')] LUH19111108-V03-45-page7.txt: [("'you", 'you'), ("'At", 'At'), ("'neath", 'neath'), ("'from", 'from')] LUH19111115-V03-46-page6.txt: [("'Great", 'Great'), ("'Kennard", 'Kennard')] LUH19111117-V03-46e-page2.txt: [("'the", 'the')] LUH19111117-V03-46e-page3.txt: [("'I", 'I'), ("'This", 'This'), ("'Others", 'Others')] LUH19111117-V03-46e-page8.txt: [("'with", 'with')] LUH19111122-V03-47-page1.txt: [('\'ago."', 'ago."')] LUH19111122-V03-47-page3.txt: [("''A.", 'A.'), ("'He", 'He')] LUH19111122-V03-47-page4.txt: [("'study", 'study')] LUH19111122-V03-47-page7.txt: [("'profitable", 'profitable')] LUH19111129-V03-48-page11.txt: [("'ne", 'ne'), ("'Sunday", 'Sunday')] LUH19111129-V03-48-page4.txt: [("'We", 'We')] LUH19111129-V03-48-page5.txt: [("'find", 'find')] LUH19111129-V03-48-page8.txt: [("'snew", 'snew')] LUH19111129-V03-48-page9.txt: [("'I", 'I'), ("'He", 'He'), ("'May", 'May'), ("'Early", 'Early'), ("'Dear", 'Dear'), ("'Mama", 'Mama'), ("'There", 'There')] LUH19111206-V03-49-page1.txt: [("'sources", 'sources')] LUH19111206-V03-49-page7.txt: [("'father", 'father')] LUH19111213-V03-50-page2.txt: [("'in", 'in')] LUH19111213-V03-50-page5.txt: [("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19111213-V03-50-page6.txt: [("'in", 'in')] LUH19111213-V03-50-page7.txt: [("'and", 'and')] LUH19111213-V03-50-page8.txt: [("'Outline", 'Outline')] LUH19111220-V03-51-page1.txt: [("'Twill", 'Twill'), ("'follow", 'follow')] LUH19111220-V03-51-page2.txt: [("'have", 'have')] LUH19111220-V03-51-page8.txt: [("'from", 'from')] LUH19120103-V04-01-page1.txt: [("'H.", 'H.'), ("'Tis", 'Tis')] LUH19120103-V04-01-page10.txt: [("'Bible", 'Bible')] LUH19120103-V04-01-page8.txt: [("'Being", 'Being'), ("''The", 'The')] LUH19120109-V04-02-page1.txt: [("'tis", 'tis'), ("'tis", 'tis')] LUH19120109-V04-02-page3.txt: [("'ministerial", 'ministerial'), ("'ouch", 'ouch')] LUH19120117-V04-03-page1.txt: [("'Tis", 'Tis'), ("'twill", 'twill')] LUH19120117-V04-03-page2.txt: [("'I", 'I')] LUH19120117-V04-03-page4.txt: [("''ye", 'ye')] LUH19120124-V04-04-page6.txt: [("'better", 'better'), ("'Bible", 'Bible'), ("'The", 'The')] LUH19120131-V04-05-page6.txt: [("'and", 'and')] LUH19120131-V04-05-page8.txt: [("'Our", 'Our'), ("'Steps", 'Steps'), ("'Bible", 'Bible'), ("'Daniel", 'Daniel'), ("'Bible", 'Bible')] LUH19120207-V04-06-page3.txt: [("'Great", 'Great')] LUH19120207-V04-06-page5.txt: [("'Daniel", 'Daniel')] LUH19120214-V04-07-page4.txt: [("'Coming", 'Coming')] LUH19120221-V04-08-page1.txt: [("'ye", 'ye')] LUH19120221-V04-08-page3.txt: [("'P.", 'P.')] LUH19120221-V04-08-page8.txt: [("'Tis", 'Tis')] LUH19120228-V04-09-page2.txt: [("'China's", 'Chinas'), ("'Our", 'Our'), ("'Daniel", 'Daniel'), ("'Best", 'Best'), ("'and", 'and'), ("''Nobody", 'Nobody')] LUH19120228-V04-09-page3.txt: [("'I", 'I')] LUH19120228-V04-09-page4.txt: [("'day.", 'day.')] LUH19120228-V04-09-page7.txt: [("'Don't", 'Dont')] LUH19120313-V04-11-page1.txt: [("'Union", 'Union'), ("'word", 'word'), ("'tis", 'tis')] LUH19120313-V04-11-page2.txt: [("'thy", 'thy')] LUH19120313-V04-11-page3.txt: [("'fund.", 'fund.'), ("'and", 'and')] LUH19120313-V04-11-page6.txt: [("'Frank", 'Frank')] LUH19120313-V04-11-page7.txt: [("'to", 'to')] LUH19120313-V04-11-page8.txt: [("'nls", 'nls')] LUH19120320-V04-12-page2.txt: [("'reacher", 'reacher')] LUH19120320-V04-12-page3.txt: [("''Bible", 'Bible')] LUH19120327-V04-13-page2.txt: [("'the", 'the'), ("'They", 'They'), ("'If", 'If')] LUH19120327-V04-13-page3.txt: [("''in", 'in')] LUH19120327-V04-13-page4.txt: [("'but", 'but')] LUH19120327-V04-13-page7.txt: [("'with", 'with')] LUH19120403-V04-14-page4.txt: [("'was", 'was')] LUH19120403-V04-14-page5.txt: [("'whether", 'whether')] LUH19120410-V04-15-page1.txt: [("'Come", 'Come')] LUH19120410-V04-15-page5.txt: [("'visited", 'visited')] LUH19120410-V04-15-page7.txt: [("'rime", 'rime')] LUH19120417-V04-16-page1.txt: [("'Neath", 'Neath')] LUH19120417-V04-16-page6.txt: [("'the", 'the')] LUH19120424-V04-17-page4.txt: [("'Salvation", 'Salvation')] LUH19120424-V04-17-page6.txt: [("'Several", 'Several'), ("'workers", 'workers')] LUH19120424-V04-17-page8.txt: [("'God", 'God')] LUH19120501-V04-18-page1.txt: [("'tis", 'tis'), ("'Tis", 'Tis')] LUH19120501-V04-18-page10.txt: [("'As", 'As'), ("'As", 'As'), ("'That", 'That')] LUH19120501-V04-18-page13.txt: [("''Have", 'Have')] LUH19120501-V04-18-page16.txt: [("'Tis", 'Tis')] LUH19120501-V04-18-page2.txt: [("'said", 'said')] LUH19120508-V04-19-page1.txt: [("''I", 'I')] LUH19120508-V04-19-page2.txt: [("'Ill.", 'Ill.'), ("'will", 'will')] LUH19120508-V04-19-page5.txt: [("'where", 'where')] LUH19120508-V04-19-page7.txt: [("'brotherly", 'brotherly')] LUH19120515-V04-20-page2.txt: [("'much", 'much')] LUH19120522-V04-21-page1.txt: [("'Union", 'Union')] LUH19120522-V04-21-page6.txt: [("'District.", 'District.')] LUH19120522-V04-21-page7.txt: [("'Twocents", 'Twocents')] LUH19120529-V04-22-page1.txt: [("'Union", 'Union')] LUH19120529-V04-22-page3.txt: [("''Rise", 'Rise')] LUH19120605-V04-23-page6.txt: [("''Conquering", 'Conquering')] LUH19120605-V04-23-page8.txt: [("'V.", 'V.')] LUH19120612-V04-24-page1.txt: [("'tis", 'tis')] LUH19120612-V04-24-page2.txt: [("'Behold", 'Behold')] LUH19120612-V04-24-page3.txt: [("''In", 'In')] LUH19120612-V04-24-page5.txt: [("'for", 'for')] LUH19120619-V04-25-page2.txt: [("'How", 'How'), ("'for", 'for')] LUH19120619-V04-25-page3.txt: [("'first", 'first'), ("'worship", 'worship')] LUH19120619-V04-25-page4.txt: [("'or", 'or')] LUH19120626-V04-26-page2.txt: [("''A", 'A')] LUH19120626-V04-26-page5.txt: [("'Xpect", 'Xpect')] LUH19120626-V04-26-page8.txt: [("'Daniel", 'Daniel')] LUH19120703-V04-27-page2.txt: [("'individual", 'individual')] LUH19120703-V04-27-page5.txt: [("'.", '.')] LUH19120703-V04-27-page7.txt: [("'as", 'as')] LUH19120717-V04-29-page1.txt: [("'E.", 'E.')] LUH19120717-V04-29-page2.txt: [("''Daniel", 'Daniel'), ("'at", 'at')] LUH19120717-V04-29-page5.txt: [("'Michigan", 'Michigan')] LUH19120724-V04-30-page1.txt: [("'F.", 'F.')] LUH19120724-V04-30-page13.txt: [("'sons", 'sons')] LUH19120724-V04-30-page14.txt: [("'of", 'of'), ("'extended", 'extended')] LUH19120724-V04-30-page7.txt: [("'particularly", 'particularly')] LUH19120807-V04-32-page2.txt: [("'We", 'We')] LUH19120807-V04-32-page3.txt: [("''The", 'The')] LUH19120807-V04-32-page5.txt: [("'.", '.')] LUH19120807-V04-32-page7.txt: [("'Vesta", 'Vesta')] LUH19120814-V04-33-page2.txt: [("'Mintstry", 'Mintstry')] LUH19120814-V04-33-page4.txt: [("'Prophecies", 'Prophecies'), ("'Daniel", 'Daniel')] LUH19120821-V04-34-page1.txt: [("'Twill", 'Twill'), ("'P.", 'P.')] LUH19120821-V04-34-page6.txt: [("'camp", 'camp')] LUH19120828-V04-35-page3.txt: [("'Coming", 'Coming')] LUH19120828-V04-35-page4.txt: [("'Great", 'Great'), ("'Daniel", 'Daniel'), ("'Desire", 'Desire')] LUH19120828-V04-35-page6.txt: [("'Oh", 'Oh'), ("'Conference", 'Conference'), ("'with", 'with')] LUH19120828-V04-35-page8.txt: [("'Union", 'Union')] LUH19120904-V04-36-page1.txt: [("'The", 'The'), ("'Inasmuch", 'Inasmuch'), ("'ye", 'ye'), ("'Lift", 'Lift')] LUH19120904-V04-36-page5.txt: [("'You", 'You'), ("'Coming", 'Coming'), ("'Great", 'Great')] LUH19120904-V04-36-page6.txt: [("'Phe", 'Phe')] LUH19120904-V04-36-page8.txt: [("'Union", 'Union'), ("'au", 'au'), ("'V.", 'V.')] LUH19120911-V04-37-page1.txt: [("'You", 'You')] LUH19120911-V04-37-page6.txt: [("'tomatoes.", 'tomatoes.'), ("'deep", 'deep')] LUH19120911-V04-37-page7.txt: [("'nine", 'nine'), ("'.", '.'), ("'.", '.')] LUH19120918-V04-38-page7.txt: [("'Nina", 'Nina')] LUH19120918-V04-38-page8.txt: [("'I", 'I'), ("'Whom", 'Whom'), ("'Here", 'Here')] LUH19120925-V04-39-page2.txt: [("'civil", 'civil')] LUH19120925-V04-39-page3.txt: [("''the", 'the')] LUH19120925-V04-39-page7.txt: [("'Irwin", 'Irwin'), ("'campaign", 'campaign')] LUH19121002-V04-40-page1.txt: [("'Ninety-five", 'Ninety-five'), ("'Teutonic", 'Teutonic'), ("'Iberic", 'Iberic'), ("'Celtic", 'Celtic'), ("'Slavic", 'Slavic'), ("'The", 'The'), ("'Under", 'Under'), ("'offscouring", 'offscouring'), ("'garbage", 'garbage'), ("''There", 'There'), ("'tis", 'tis')] LUH19121002-V04-40-page3.txt: [("'I", 'I'), ("'Great", 'Great'), ("'I", 'I')] LUH19121002-V04-40-page5.txt: [("'and", 'and'), ("'Point", 'Point')] LUH19121009-V04-41-page1.txt: [("'But", 'But'), ("'There", 'There'), ("'He", 'He'), ("'The", 'The'), ("'deemed", 'deemed'), ("'considered", 'considered'), ("'an", 'an'), ("'The", 'The')] LUH19121009-V04-41-page2.txt: [("'My", 'My'), ("'go", 'go'), ("'doing", 'doing')] LUH19121009-V04-41-page6.txt: [("'La", 'La'), ("'I", 'I')] LUH19121016-V04-42-page1.txt: [("'Lake", 'Lake')] LUH19121023-V04-43-page1.txt: [("'twas", 'twas')] LUH19121023-V04-43-page3.txt: [("'but", 'but'), ("'Field", 'Field')] LUH19121023-V04-43-page7.txt: [("''Vera", 'Vera')] LUH19121023-V04-43-page8.txt: [("'UNION", 'UNION'), ("'Last", 'Last')] LUH19121030-V04-44-page6.txt: [("'Coming", 'Coming'), ("'is", 'is')] LUH19121106-V04-45-page3.txt: [("'among", 'among')] LUH19121106-V04-45-page6.txt: [("'truth", 'truth')] LUH19121106-V04-45-page7.txt: [("'Great", 'Great')] LUH19121113-V04-46-page5.txt: [("'ministry", 'ministry')] LUH19121120-V04-47-page7.txt: [("'help", 'help')] LUH19121120-V04-47-page8.txt: [("'find", 'find'), ("''We", 'We')] LUH19121127-V04-48-page6.txt: [("'A.", 'A.'), ("'treatments.", 'treatments.')] LUH19121127-V04-48-page7.txt: [("'lone", 'lone')] LUH19121204-V04-49-page3.txt: [("'we", 'we'), ("''exceeding", 'exceeding')] LUH19121204-V04-49-page4.txt: [("'week", 'week'), ("'as", 'as')] LUH19121204-V04-49-page5.txt: [("'this", 'this'), ("'started", 'started'), ("'right", 'right')] LUH19121204-V04-49-page7.txt: [("'She", 'She'), ("'Adelphian", 'Adelphian')] LUH19121211-V04-50-page1.txt: [("'g", 'g'), ("'hese", 'hese')] LUH19121211-V04-50-page2.txt: [("'I", 'I'), ("'He", 'He'), ("'What", 'What'), ("'I", 'I')] LUH19121218-V04-51-page2.txt: [("'Bible", 'Bible')] LUH19121218-V04-51-page5.txt: [("'n", 'n')] LUH19121218-V04-51-page6.txt: [("'Tis", 'Tis')] LUH19121218-V04-51-page7.txt: [("'Good", 'Good')] LUH19121225-V04-52-page4.txt: [("'Tuesday", 'Tuesday')] LUH19121225-V04-52-page7.txt: [("'their", 'their')] LUH19121225-V04-52-page8.txt: [("'best", 'best'), ("'Why", 'Why')] LUH19130108-V05-01-page1.txt: [("'mind", 'mind')] LUH19130108-V05-01-page2.txt: [("'held", 'held')] LUH19130108-V05-01-page6.txt: [("'rust", 'rust'), ("'Great", 'Great'), ("'sick", 'sick')] LUH19130115-V05-02-page1.txt: [("'not", 'not')] LUH19130115-V05-02-page3.txt: [("'to", 'to')] LUH19130115-V05-02-page4.txt: [("'atter", 'atter')] LUH19130115-V05-02-page8.txt: [("'to", 'to')] LUH19130122-V05-03-page1.txt: [("'Why", 'Why'), ("'to", 'to'), ("'people", 'people')] LUH19130122-V05-03-page3.txt: [("'Be", 'Be')] LUH19130122-V05-03-page4.txt: [("'and", 'and')] LUH19130122-V05-03-page5.txt: [("'Whom", 'Whom'), ("'Here", 'Here')] LUH19130122-V05-03-page7.txt: [("'The", 'The'), ("'''thirteen", 'thirteen')] LUH19130122-V05-03-page8.txt: [("'Union", 'Union')] LUH19130129-V05-04-page4.txt: [("''Watch", 'Watch')] LUH19130129-V05-04-page5.txt: [("'efforts", 'efforts')] LUH19130129-V05-04-page6.txt: [("'club", 'club')] LUH19130205-V05-05-page3.txt: [("'g", 'g'), ("'Great", 'Great'), ("'Great", 'Great'), ("'Daniel", 'Daniel'), ("'Great", 'Great')] LUH19130205-V05-05-page5.txt: [("'day", 'day'), ("'Sabbath", 'Sabbath')] LUH19130205-V05-05-page8.txt: [("'Can", 'Can')] LUH19130212-V05-06-page4.txt: [("'Canvassing", 'Canvassing'), ("'I", 'I')] LUH19130219-V05-07-page6.txt: [("'feed", 'feed'), ("'men", 'men')] LUH19130219-V05-07-page7.txt: [("'The", 'The')] LUH19130226-V05-08-page1.txt: [("'In", 'In')] LUH19130226-V05-08-page10.txt: [("'I'.", 'I.')] LUH19130226-V05-08-page11.txt: [("'line", 'line')] LUH19130305-V05-09-page1.txt: [("'treatment.", 'treatment.')] LUH19130305-V05-09-page2.txt: [("'instead", 'instead')] LUH19130305-V05-09-page3.txt: [("'preacher", 'preacher')] LUH19130305-V05-09-page5.txt: [("'we", 'we')] LUH19130305-V05-09-page7.txt: [("'And", 'And')] LUH19130312-V05-10-page1.txt: [("'The", 'The')] LUH19130312-V05-10-page5.txt: [("''Daniel", 'Daniel'), ("'churchschool", 'churchschool')] LUH19130319-V05-11-page3.txt: [("'reacher.", 'reacher.')] LUH19130319-V05-11-page4.txt: [("'The", 'The')] LUH19130319-V05-11-page7.txt: [("'Coming", 'Coming')] LUH19130326-V05-12-page1.txt: [("'Educational", 'Educational')] LUH19130326-V05-12-page12.txt: [("'did", 'did')] LUH19130326-V05-12-page2.txt: [("'giver", 'giver'), ("'of", 'of')] LUH19130326-V05-12-page5.txt: [("'the", 'the'), ("'the", 'the')] LUH19130326-V05-12-page6.txt: [("''Acre", 'Acre')] LUH19130402-V05-13-page1.txt: [("'neath", 'neath')] LUH19130402-V05-13-page7.txt: [("'and", 'and')] LUH19130409-V05-14-page1.txt: [("'Great", 'Great'), ("'Nanking", 'Nanking'), ("'South", 'South'), ("'For", 'For'), ("'For", 'For')] LUH19130409-V05-14-page4.txt: [("'organized", 'organized')] LUH19130409-V05-14-page5.txt: [("'In", 'In')] LUH19130416-V05-15-page1.txt: [("'the", 'the')] LUH19130416-V05-15-page2.txt: [("'elected.", 'elected.')] LUH19130416-V05-15-page3.txt: [("'vas", 'vas')] LUH19130416-V05-15-page5.txt: [("'the", 'the'), ("'Illinois", 'Illinois')] LUH19130416-V05-15-page6.txt: [("'part", 'part')] LUH19130423-V05-16-page3.txt: [("'Great", 'Great')] LUH19130423-V05-16-page5.txt: [("'Daniel", 'Daniel')] LUH19130423-V05-16-page7.txt: [("'presented", 'presented')] LUH19130430-V05-17-page1.txt: [("'help", 'help')] LUH19130430-V05-17-page6.txt: [("'Great", 'Great')] LUH19130430-V05-17-page8.txt: [("''Happy", 'Happy'), ("'three", 'three'), ("'tract", 'tract')] LUH19130507-V05-18-page3.txt: [("'early", 'early')] LUH19130507-V05-18-page5.txt: [("'Daniel", 'Daniel'), ("'do", 'do')] LUH19130507-V05-18-page7.txt: [("'Illinois.", 'Illinois.')] LUH19130507-V05-18-page8.txt: [("'read", 'read')] LUH19130514-V05-19-page1.txt: [("''Thus", 'Thus')] LUH19130514-V05-19-page2.txt: [("'It", 'It'), ("'We", 'We'), ("'Hasten", 'Hasten')] LUH19130514-V05-19-page6.txt: [("'the", 'the')] LUH19130514-V05-19-page7.txt: [("'M.", 'M.')] LUH19130514-V05-19-page8.txt: [("'College", 'College'), ("'Bible", 'Bible'), ("'The", 'The'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19130521-V05-20-page3.txt: [("'Is", 'Is'), ("'INo", 'INo')] LUH19130521-V05-20-page5.txt: [("'Coming", 'Coming')] LUH19130521-V05-20-page7.txt: [("'he", 'he')] LUH19130521-V05-20-page8.txt: [('\'s"Cooking', 's"Cooking'), ("'North", 'North')] LUH19130528-V05-21-page3.txt: [("'character.", 'character.'), ("'keepers", 'keepers')] LUH19130528-V05-21-page4.txt: [("'Kalamazoo.", 'Kalamazoo.')] LUH19130528-V05-21-page5.txt: [("'Steps", 'Steps'), ("'Great", 'Great'), ("'a", 'a')] LUH19130528-V05-21-page6.txt: [("'at", 'at'), ("''L.", 'L.')] LUH19130528-V05-21-page7.txt: [("'H.", 'H.')] LUH19130604-V05-22-page1.txt: [("'Family", 'Family')] LUH19130604-V05-22-page2.txt: [("'an", 'an'), ("'What", 'What')] LUH19130604-V05-22-page3.txt: [("'more", 'more')] LUH19130604-V05-22-page5.txt: [("'will", 'will')] LUH19130604-V05-22-page6.txt: [("'work", 'work'), ("'souls.", 'souls.'), ("'who", 'who')] LUH19130604-V05-22-page7.txt: [("'number", 'number')] LUH19130604-V05-22-page8.txt: [("'training", 'training')] LUH19130611-V05-23-page1.txt: [("'first", 'first'), ("'Till", 'Till'), ("'Till", 'Till'), ("'Twas", 'Twas'), ("'Till", 'Till'), ("'run", 'run')] LUH19130611-V05-23-page2.txt: [("'attempt", 'attempt')] LUH19130611-V05-23-page3.txt: [("'years.", 'years.')] LUH19130611-V05-23-page8.txt: [("'at", 'at')] LUH19130618-V05-24-page2.txt: [("'Morning", 'Morning')] LUH19130618-V05-24-page3.txt: [("'America", 'America')] LUH19130618-V05-24-page5.txt: [("'d", 'd'), ("'canvassers", 'canvassers')] LUH19130618-V05-24-page7.txt: [("'GC", 'GC')] LUH19130618-V05-24-page8.txt: [("'.", '.'), ("'.", '.')] LUH19130625-V05-25-page2.txt: [("'Whosoever", 'Whosoever'), ("'shall", 'shall')] LUH19130625-V05-25-page3.txt: [("'Great", 'Great'), ("'CoNp.", 'CoNp.')] LUH19130625-V05-25-page7.txt: [("'Southern", 'Southern')] LUH19130702-V05-26-page6.txt: [("'Great", 'Great'), ("'Great", 'Great')] LUH19130702-V05-26-page7.txt: [("'C.", 'C.')] LUH19130709-V05-27-page2.txt: [("'Gather", 'Gather')] LUH19130709-V05-27-page4.txt: [("''Good", 'Good'), ("'tent", 'tent')] LUH19130709-V05-27-page5.txt: [("'Desire", 'Desire'), ("'y", 'y')] LUH19130716-V05-28-page2.txt: [("'It", 'It')] LUH19130716-V05-28-page3.txt: [("'Fri", 'Fri')] LUH19130716-V05-28-page4.txt: [("'some", 'some')] LUH19130723-V05-29-page5.txt: [("'Coming", 'Coming'), ("'Daniel", 'Daniel'), ("'Past", 'Past'), ("'Bible", 'Bible')] LUH19130723-V05-29-page7.txt: [("'appropriate", 'appropriate'), ("''Bring", 'Bring'), ("''I", 'I')] LUH19130723-V05-29-page8.txt: [("'.", '.')] LUH19130730-V05-30-page10.txt: [("'Report", 'Report'), ("'DR", 'DR')] LUH19130730-V05-30-page12.txt: [("'A", 'A')] LUH19130730-V05-30-page3.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19130806-V05-31-page3.txt: [("'are", 'are')] LUH19130806-V05-31-page5.txt: [("'ring", 'ring')] LUH19130806-V05-31-page7.txt: [('\'s"Cooking', 's"Cooking')] LUH19130806-V05-31-page8.txt: [("'of", 'of')] LUH19130813-V05-32-page3.txt: [("'It", 'It')] LUH19130820-V05-33-page4.txt: [("'Side.....", 'Side.....')] LUH19130820-V05-33-page5.txt: [("'reacher", 'reacher')] LUH19130827-V05-34-page1.txt: [("'son", 'son')] LUH19130827-V05-34-page3.txt: [("'Are", 'Are'), ("'I", 'I'), ("'Let's", 'Lets'), ("'Great", 'Great')] LUH19130827-V05-34-page5.txt: [("'Selling", 'Selling'), ("'God", 'God')] LUH19130827-V05-34-page6.txt: [("'been", 'been')] LUH19130903-V05-35-page3.txt: [("'as", 'as')] LUH19130903-V05-35-page4.txt: [("'come", 'come')] LUH19130903-V05-35-page7.txt: [("'mission", 'mission')] LUH19130903-V05-35-page8.txt: [("'Mrs.", 'Mrs.')] LUH19130910-V05-36-page1.txt: [("'go", 'go')] LUH19130917-V05-37-page1.txt: [("'Wescott", 'Wescott')] LUH19130917-V05-37-page4.txt: [("'of", 'of')] LUH19130924-V05-38-page2.txt: [("'time", 'time'), ("'ask", 'ask')] LUH19130924-V05-38-page5.txt: [("'of", 'of')] LUH19131001-V05-39-page4.txt: [("'to", 'to')] LUH19131001-V05-39-page5.txt: [("'Fri-City", 'Fri-City')] LUH19131001-V05-39-page8.txt: [("'.", '.')] LUH19131008-V05-40-page3.txt: [("'things", 'things')] LUH19131008-V05-40-page5.txt: [("'could", 'could')] LUH19131008-V05-40-page6.txt: [("'tis", 'tis')] LUH19131008-V05-40-page7.txt: [("'Holly", 'Holly'), ("'pounds", 'pounds')] LUH19131008-V05-40-page8.txt: [("'is", 'is')] LUH19131015-V05-41-page12.txt: [("'be", 'be')] LUH19131015-V05-41-page14.txt: [("'either", 'either'), ("'the", 'the')] LUH19131015-V05-41-page16.txt: [("'he", 'he'), ("'Creek", 'Creek')] LUH19131015-V05-41-page2.txt: [("'Great", 'Great')] LUH19131015-V05-41-page3.txt: [("'It", 'It')] LUH19131015-V05-41-page4.txt: [("'That", 'That')] LUH19131015-V05-41-page7.txt: [("'The", 'The')] LUH19131015-V05-41-page9.txt: [("'from", 'from')] LUH19131022-V05-42-page2.txt: [("'y", 'y'), ("'the", 'the'), ("'a", 'a'), ("'our", 'our'), ("'will", 'will')] LUH19131022-V05-42-page3.txt: [("'most", 'most'), ("'Sabbath", 'Sabbath'), ("'Hear", 'Hear'), ("'superintendent", 'superintendent'), ("'it", 'it'), ("'am", 'am'), ("'supply", 'supply'), ("'If", 'If')] LUH19131029-V05-43-page1.txt: [("'but", 'but'), ("'this", 'this')] LUH19131029-V05-43-page3.txt: [("'Whosoever", 'Whosoever'), ("'Bible", 'Bible')] LUH19131029-V05-43-page4.txt: [("'F.", 'F.')] LUH19131105-V05-44-page1.txt: [("'Dean", 'Dean')] LUH19131105-V05-44-page12.txt: [("'in", 'in')] LUH19131105-V05-44-page14.txt: [("'the", 'the')] LUH19131105-V05-44-page15.txt: [("'Say", 'Say'), ("'Would", 'Would')] LUH19131105-V05-44-page5.txt: [("'y", 'y')] LUH19131112-V05-45-page1.txt: [("'Penny", 'Penny')] LUH19131112-V05-45-page2.txt: [("'sanitarium", 'sanitarium')] LUH19131112-V05-45-page4.txt: [("'Four", 'Four')] LUH19131112-V05-45-page6.txt: [("'teacher", 'teacher')] LUH19131112-V05-45-page7.txt: [("'Case", 'Case')] LUH19131119-V05-46-page3.txt: [("'then", 'then')] LUH19131119-V05-46-page8.txt: [("'thirty", 'thirty')] LUH19131127-V05-47-page1.txt: [("'to", 'to')] LUH19131127-V05-47-page3.txt: [("'As", 'As'), ("'Except", 'Except'), ("'The", 'The')] LUH19131127-V05-47-page7.txt: [("'to", 'to')] LUH19131127-V05-47-page8.txt: [("'Tis", 'Tis'), ("'receives", 'receives')] LUH19131203-V05-48-page4.txt: [("'y", 'y'), ("'Indianapolis", 'Indianapolis')] LUH19131210-V05-49-page1.txt: [("'This", 'This')] LUH19131210-V05-49-page3.txt: [("'Sister", 'Sister')] LUH19131210-V05-49-page6.txt: [("'part", 'part'), ("'to", 'to')] LUH19131210-V05-49-page7.txt: [("'where", 'where')] LUH19131217-V05-50-page1.txt: [("'and", 'and')] LUH19131217-V05-50-page11.txt: [("'of", 'of'), ("''Great", 'Great')] LUH19131217-V05-50-page12.txt: [("'recently", 'recently'), ("'the", 'the')] LUH19131217-V05-50-page13.txt: [("'I", 'I'), ("'held", 'held')] LUH19131217-V05-50-page4.txt: [("'ones", 'ones')] LUH19131217-V05-50-page5.txt: [("'people", 'people'), ("'we", 'we')] LUH19131217-V05-50-page7.txt: [("'lawn", 'lawn'), ("'of", 'of')] LUH19131224-V05-51-page1.txt: [("'This", 'This'), ("'What", 'What'), ("'I", 'I'), ("'You", 'You')] LUH19131224-V05-51-page2.txt: [("'spent", 'spent')] LUH19131224-V05-51-page3.txt: [("'I'uesday", 'Iuesday')] LUH19131224-V05-51-page4.txt: [("'immediately", 'immediately')] LUH19131224-V05-51-page6.txt: [("'was", 'was'), ("'If", 'If')] LUH19131224-V05-51-page8.txt: [("'round", 'round'), ("'What", 'What')] LUH19140107-V06-01-page3.txt: [("'I", 'I')] LUH19140114-V06-02-page1.txt: [("'are", 'are')] LUH19140114-V06-02-page2.txt: [("'all", 'all')] LUH19140114-V06-02-page3.txt: [("''Bible", 'Bible')] LUH19140114-V06-02-page4.txt: [("'sacred", 'sacred')] LUH19140121-V06-03-page2.txt: [("'at", 'at')] LUH19140128-V06-04-page2.txt: [("'I", 'I'), ("'The", 'The'), ("'We", 'We'), ("'Elder", 'Elder'), ("'With", 'With')] LUH19140128-V06-04-page3.txt: [("'It", 'It')] LUH19140128-V06-04-page8.txt: [("'South", 'South')] LUH19140204-V06-05-page4.txt: [("'.", '.')] LUH19140204-V06-05-page7.txt: [("'Great", 'Great')] LUH19140211-V06-06-page2.txt: [("'He", 'He'), ("'have", 'have'), ("'Herzel", 'Herzel')] LUH19140211-V06-06-page3.txt: [("'for", 'for'), ("'the", 'the')] LUH19140211-V06-06-page5.txt: [("'.", '.')] LUH19140211-V06-06-page8.txt: [("''If", 'If')] LUH19140218-V06-07-page1.txt: [("'Rock", 'Rock'), ("'just", 'just')] LUH19140218-V06-07-page5.txt: [("'every", 'every')] LUH19140218-V06-07-page7.txt: [("'North", 'North')] LUH19140218-V06-07-page8.txt: [("'twould", 'twould'), ("'Christ", 'Christ')] LUH19140225-V06-08-page2.txt: [("'Great", 'Great'), ("'Christ", 'Christ'), ("'Coming", 'Coming'), ("'Launch", 'Launch')] LUH19140225-V06-08-page5.txt: [("'so", 'so')] LUH19140304-V06-09-page1.txt: [("'away", 'away')] LUH19140304-V06-09-page5.txt: [("'our", 'our'), ("''It", 'It')] LUH19140304-V06-09-page8.txt: [("'best", 'best')] LUH19140311-V06-10-page2.txt: [("'year.", 'year.')] LUH19140311-V06-10-page5.txt: [("'generous", 'generous'), ("'the", 'the')] LUH19140318-V06-11-page4.txt: [("'tis", 'tis')] LUH19140318-V06-11-page5.txt: [("'prayer", 'prayer')] LUH19140318-V06-11-page6.txt: [("'Great", 'Great'), ("'the", 'the')] LUH19140325-V06-12-page2.txt: [("'the", 'the')] LUH19140325-V06-12-page4.txt: [("'Great", 'Great'), ("'Daniel", 'Daniel')] LUH19140325-V06-12-page5.txt: [("'Our", 'Our'), ("'of", 'of'), ("'Individuals", 'Individuals')] LUH19140325-V06-12-page6.txt: [("''As", 'As'), ("'married", 'married')] LUH19140401-V06-13-page2.txt: [("'Do", 'Do'), ("'Great", 'Great')] LUH19140401-V06-13-page3.txt: [("'of", 'of')] LUH19140401-V06-13-page4.txt: [("'returned", 'returned')] LUH19140401-V06-13-page6.txt: [("'Conference", 'Conference')] LUH19140401-V06-13-page7.txt: [("'Tis", 'Tis')] LUH19140408-V06-14-page5.txt: [("'and", 'and'), ("'recently", 'recently')] LUH19140415-V06-15-page3.txt: [("'has", 'has')] LUH19140415-V06-15-page8.txt: [("'Lake", 'Lake')] LUH19140422-V06-16-page1.txt: [("'of", 'of')] LUH19140422-V06-16-page12.txt: [("'Mrs.", 'Mrs.')] LUH19140422-V06-16-page15.txt: [("'There", 'There')] LUH19140422-V06-16-page2.txt: [("'Heaven", 'Heaven')] LUH19140422-V06-16-page3.txt: [("'I", 'I')] LUH19140422-V06-16-page7.txt: [("'stand", 'stand')] LUH19140429-V06-17-page15.txt: [("'.", '.')] LUH19140429-V06-17-page16.txt: [("'Chattanooga", 'Chattanooga')] LUH19140429-V06-17-page2.txt: [("'I", 'I')] LUH19140429-V06-17-page3.txt: [("'The", 'The'), ("'They", 'They'), ("'I", 'I'), ("'Testimonies", 'Testimonies'), ("'It", 'It')] LUH19140429-V06-17-page4.txt: [("'If", 'If')] LUH19140506-V06-18-page3.txt: [("'Lake", 'Lake'), ("'the", 'the'), ("'UNION", 'UNION')] LUH19140513-V06-19-page10.txt: [("'The", 'The'), ("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'Twas", 'Twas')] LUH19140526-V06-20-page2.txt: [("'may", 'may'), ("'free.", 'free.')] LUH19140526-V06-20-page3.txt: [("'It", 'It'), ("'Practical", 'Practical'), ("'Daniel", 'Daniel'), ("'I", 'I')] LUH19140527-V06-21-page3.txt: [("'will", 'will'), ("'It", 'It')] LUH19140603-V06-22-page3.txt: [("'week", 'week')] LUH19140603-V06-22-page6.txt: [("'they", 'they')] LUH19140603-V06-22-page8.txt: [("'part", 'part')] LUH19140610-V06-23-page2.txt: [("'was", 'was')] LUH19140610-V06-23-page4.txt: [("'Your", 'Your'), ('\'"', '"')] LUH19140617-V06-24-page2.txt: [("'attendance", 'attendance')] LUH19140617-V06-24-page6.txt: [("'freight", 'freight')] LUH19140617-V06-24-page8.txt: [("'It", 'It'), ("'Great", 'Great')] LUH19140624-V06-25-page2.txt: [("'Now", 'Now')] LUH19140624-V06-25-page5.txt: [("'who", 'who'), ("'certainly", 'certainly'), ("'have", 'have')] LUH19140701-V06-26-page3.txt: [("'I", 'I')] LUH19140701-V06-26-page5.txt: [("'as", 'as'), ("'hour", 'hour')] LUH19140701-V06-26-page7.txt: [("'.", '.')] LUH19140701-V06-26-page8.txt: [("'them", 'them')] LUH19140708-V06-27-page2.txt: [("'The", 'The')] LUH19140708-V06-27-page3.txt: [("'society.", 'society.')] LUH19140708-V06-27-page7.txt: [("'malley", 'malley'), ("'CK", 'CK')] LUH19140715-V06-28-page1.txt: [("'company", 'company')] LUH19140715-V06-28-page4.txt: [("'five", 'five')] LUH19140715-V06-28-page7.txt: [("'rhos.", 'rhos.')] LUH19140722-V06-29-page1.txt: [("'C.", 'C.'), ("'Anderson.", 'Anderson.')] LUH19140722-V06-29-page5.txt: [("'Jefferson", 'Jefferson')] LUH19140722-V06-29-page7.txt: [("'Penn.", 'Penn.'), ("'Penn.", 'Penn.')] LUH19140722-V06-29-page8.txt: [("'Every", 'Every'), ("'failure", 'failure')] LUH19140729-V06-30-page3.txt: [("'Coming", 'Coming')] LUH19140729-V06-30-page7.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'kin", 'kin')] LUH19140805-V06-31-page1.txt: [("'of", 'of')] LUH19140805-V06-31-page10.txt: [("'He", 'He'), ("'not", 'not')] LUH19140805-V06-31-page13.txt: [("'our", 'our')] LUH19140805-V06-31-page15.txt: [("'School", 'School')] LUH19140805-V06-31-page16.txt: [("'for", 'for'), ("'who", 'who')] LUH19140805-V06-31-page9.txt: [("'Further", 'Further')] LUH19140812-V06-32-page1.txt: [("'Northern", 'Northern')] LUH19140812-V06-32-page3.txt: [("'Mt.", 'Mt.')] LUH19140812-V06-32-page8.txt: [("'Sanitarium", 'Sanitarium')] LUH19140819-V06-33-page15.txt: [("'rhomas", 'rhomas')] LUH19140819-V06-33-page2.txt: [("'facts", 'facts'), ("'foundations", 'foundations')] LUH19140826-V06-34-page1.txt: [("'night", 'night')] LUH19140826-V06-34-page2.txt: [("'rithe", 'rithe')] LUH19140826-V06-34-page3.txt: [("'l'ithe", 'lithe')] LUH19140826-V06-34-page6.txt: [("'Daniel", 'Daniel'), ("'I", 'I')] LUH19140826-V06-34-page7.txt: [("'Penn.", 'Penn.')] LUH19140826-V06-34-page8.txt: [("'That", 'That')] LUH19140902-V06-35-page2.txt: [("'to", 'to')] LUH19140902-V06-35-page3.txt: [("'It", 'It'), ("'Great", 'Great')] LUH19140902-V06-35-page4.txt: [("'Every", 'Every')] LUH19140902-V06-35-page5.txt: [("'Well", 'Well'), ("'I", 'I')] LUH19140902-V06-35-page7.txt: [("'to", 'to')] LUH19140909-V06-36-page6.txt: [("'Bible", 'Bible')] LUH19140909-V06-36-page8.txt: [("'condition", 'condition'), ("'Address", 'Address'), ("'closing", 'closing'), ("'tis", 'tis')] LUH19140916-V06-37-page4.txt: [("'says", 'says'), ("'sold", 'sold'), ("'Great", 'Great')] LUH19140916-V06-37-page5.txt: [("'can", 'can'), ("'caught", 'caught'), ("'Stamp", 'Stamp'), ("'way", 'way'), ("'Stamp", 'Stamp'), ("'Stamp", 'Stamp')] LUH19140916-V06-37-page8.txt: [("'rutei", 'rutei')] LUH19140923-V06-38-page7.txt: [("'S.", 'S.'), ("'from", 'from'), ("'Penn.", 'Penn.')] LUH19140923-V06-38-page8.txt: [("'Faithful", 'Faithful'), ("'offering", 'offering')] LUH19140930-V06-39-page3.txt: [("'society", 'society')] LUH19140930-V06-39-page6.txt: [("'of", 'of')] LUH19140930-V06-39-page7.txt: [("'Pract", 'Pract')] LUH19141007-V06-40-page4.txt: [("'attending.", 'attending.')] LUH19141015-V06-41-page7.txt: [("'Daniel", 'Daniel'), ("'Great", 'Great')] LUH19141022-V06-42-page13.txt: [("'persons", 'persons')] LUH19141022-V06-42-page16.txt: [("'God", 'God')] LUH19141022-V06-42-page6.txt: [("'of", 'of')] LUH19141022-V06-42-page8.txt: [("'joint", 'joint')] LUH19141022-V06-42-page9.txt: [("'all", 'all'), ("'lift", 'lift'), ("'Missionary", 'Missionary')] LUH19141028-V06-43-page3.txt: [("'Daniel", 'Daniel'), ("'Bible", 'Bible')] LUH19141028-V06-43-page4.txt: [("'fifty", 'fifty')] LUH19141028-V06-43-page8.txt: [("'ISSUED", 'ISSUED')] LUH19141104-V06-44-page4.txt: [("'Thoughts", 'Thoughts')] LUH19141104-V06-44-page5.txt: [("'chemical", 'chemical')] LUH19141104-V06-44-page7.txt: [("'with", 'with')] LUH19141104-V06-44-page8.txt: [("'bread", 'bread')] LUH19141111-V06-45-page1.txt: [("'passed", 'passed')] LUH19141111-V06-45-page3.txt: [("'Book", 'Book'), ("'My", 'My'), ("'Lady", 'Lady'), ("'Come", 'Come')] LUH19141111-V06-45-page4.txt: [("'Coming", 'Coming')] LUH19141111-V06-45-page5.txt: [("'and", 'and')] LUH19141111-V06-45-page8.txt: [("'was", 'was')] LUH19141118-V06-46-page1.txt: [("'committed", 'committed')] LUH19141118-V06-46-page12.txt: [("'ISSUED", 'ISSUED')] LUH19141118-V06-46-page7.txt: [("'rung.", 'rung.')] LUH19141118-V06-46-page9.txt: [("'years", 'years'), ("'s", 's')] LUH19141125-V06-47-page1.txt: [("'he", 'he'), ("'opportunities.", 'opportunities.'), ("'Strong", 'Strong'), ("'This", 'This'), ("'present", 'present'), ("'at", 'at'), ("'Wonder", 'Wonder'), ("'atteriipt", 'atteriipt'), ("'a", 'a'), ("''manner", 'manner'), ("'tis", 'tis'), ("'truth.", 'truth.'), ("'in", 'in'), ("'month", 'month'), ("'alI", 'alI'), ("'btethren", 'btethren'), ("'WaShirigton", 'WaShirigton')] LUH19141125-V06-47-page2.txt: [("'Frankfort", 'Frankfort')] LUH19141125-V06-47-page3.txt: [("'contain", 'contain')] LUH19141125-V06-47-page4.txt: [("'I", 'I')] LUH19141125-V06-47-page5.txt: [("'HERALD", 'HERALD')] LUH19141125-V06-47-page7.txt: [("'it", 'it')] LUH19141125-V06-47-page8.txt: [("'BR", 'BR')] LUH19141202-V06-48-page1.txt: [("'mong", 'mong'), ("'such", 'such')] LUH19141202-V06-48-page6.txt: [("'Phe", 'Phe')] LUH19141202-V06-48-page7.txt: [("'Coming", 'Coming')] LUH19141209-V06-49-page2.txt: [("'springs", 'springs')] LUH19141209-V06-49-page3.txt: [("'affairs.", 'affairs.')] LUH19141209-V06-49-page4.txt: [("'Great", 'Great'), ("'Great", 'Great')] LUH19141209-V06-49-page5.txt: [("'our", 'our')] LUH19141209-V06-49-page6.txt: [("'present", 'present')] LUH19141216-V06-50-page5.txt: [("'lithe", 'lithe')] LUH19141223-V06-51-page2.txt: [("'summer", 'summer')] LUH19141223-V06-51-page5.txt: [("'end", 'end')] LUH19141223-V06-51-page6.txt: [("'Patriarchs", 'Patriarchs')] LUH19141223-V06-51-page7.txt: [("'Penn.", 'Penn.')] LUH19141223-V06-51-page8.txt: [("'Christmas", 'Christmas')] LUH19150106-V07-01-page1.txt: [("'our", 'our')] LUH19150106-V07-01-page3.txt: [("'local", 'local')] LUH19150106-V07-01-page5.txt: [("'tidings", 'tidings')] LUH19150106-V07-01-page6.txt: [("'Is", 'Is')] LUH19150113-V07-02-page5.txt: [("'church.", 'church.')] LUH19150113-V07-02-page8.txt: [("'Twill", 'Twill'), ("'Twas", 'Twas')] LUH19150120-V07-03-page2.txt: [("'for", 'for'), ("'so", 'so')] LUH19150120-V07-03-page3.txt: [("'Conferente", 'Conferente'), ("'to", 'to')] LUH19150120-V07-03-page4.txt: [("'The", 'The'), ("'Go", 'Go')] LUH19150120-V07-03-page6.txt: [("'course", 'course')] LUH19150127-V07-04-page1.txt: [("'gainst", 'gainst')] LUH19150127-V07-04-page11.txt: [("'Great", 'Great'), ("'Why", 'Why'), ("'That", 'That'), ("'All", 'All'), ("'HERALD", 'HERALD')] LUH19150127-V07-04-page12.txt: [("'laborers", 'laborers'), ("'the", 'the')] LUH19150127-V07-04-page4.txt: [("'HERALD", 'HERALD'), ("'Present", 'Present')] LUH19150127-V07-04-page7.txt: [("'Mother", 'Mother'), ("'Great", 'Great'), ("'Bible", 'Bible')] LUH19150203-V07-05-page5.txt: [("'After", 'After'), ("'When", 'When'), ("'there", 'there')] LUH19150210-V07-06-page3.txt: [("'make", 'make'), ("'for", 'for')] LUH19150210-V07-06-page4.txt: [("'Great", 'Great'), ("'I", 'I')] LUH19150210-V07-06-page7.txt: [("'baby", 'baby')] LUH19150224-V07-08-page1.txt: [("'will", 'will'), ("'mid", 'mid')] LUH19150224-V07-08-page8.txt: [("'At", 'At')] LUH19150303-V07-09-page1.txt: [("'My", 'My'), ("'bring", 'bring'), ("'Advance", 'Advance')] LUH19150303-V07-09-page5.txt: [("'toward", 'toward')] LUH19150310-V07-10-page1.txt: [("'convinced", 'convinced'), ("'Acts", 'Acts'), ("'Counsels", 'Counsels')] LUH19150310-V07-10-page2.txt: [("'Facts", 'Facts'), ("'Testimonies", 'Testimonies'), ("'Patriarchs", 'Patriarchs'), ("'Great", 'Great')] LUH19150310-V07-10-page6.txt: [("'for", 'for')] LUH19150317-V07-11-page6.txt: [("'and", 'and'), ("'cellist.", 'cellist.')] LUH19150324-V07-12-page15.txt: [("'to", 'to'), ("'Daniel", 'Daniel')] LUH19150324-V07-12-page16.txt: [("'Boettcher", 'Boettcher'), ("'r", 'r')] LUH19150324-V07-12-page5.txt: [("'Under", 'Under'), ("'Desire", 'Desire'), ("'Dress", 'Dress'), ("'asked", 'asked')] LUH19150324-V07-12-page7.txt: [("'of", 'of')] LUH19150331-V07-13-page3.txt: [("'right", 'right'), ("'In", 'In')] LUH19150331-V07-13-page7.txt: [("'nearly", 'nearly')] LUH19150407-V07-14-page2.txt: [("'school.", 'school.')] LUH19150407-V07-14-page4.txt: [("'Bible", 'Bible')] LUH19150407-V07-14-page7.txt: [("'even", 'even')] LUH19150414-V07-15-page5.txt: [("'HERALD", 'HERALD')] LUH19150414-V07-15-page7.txt: [("'.", '.')] LUH19150421-V07-16-page1.txt: [("'know", 'know')] LUH19150421-V07-16-page5.txt: [("'as", 'as'), ("'meetings", 'meetings'), ("'to", 'to')] LUH19150428-V07-17-page1.txt: [("'Tis", 'Tis')] LUH19150428-V07-17-page2.txt: [("'Church", 'Church')] LUH19150428-V07-17-page3.txt: [("'Coming", 'Coming'), ("'We", 'We'), ("'I", 'I')] LUH19150505-V07-18-page7.txt: [("'and", 'and'), ("'fifty", 'fifty')] LUH19150505-V07-18-page8.txt: [("'Wisconsin", 'Wisconsin')] LUH19150512-V07-19-page2.txt: [("'Lake", 'Lake')] LUH19150512-V07-19-page5.txt: [("'enrolled", 'enrolled')] LUH19150512-V07-19-page7.txt: [("'tis", 'tis'), ("'neath", 'neath')] LUH19150519-V07-20-page3.txt: [("'Bible", 'Bible')] LUH19150519-V07-20-page4.txt: [("'Bible", 'Bible'), ("'Great", 'Great')] LUH19150519-V07-20-page5.txt: [("'twill", 'twill')] LUH19150526-V07-21-page3.txt: [("'missionary", 'missionary')] LUH19150526-V07-21-page5.txt: [("'speak", 'speak')] LUH19150602-V07-22-page1.txt: [("'Pc.", 'Pc.')] LUH19150609-V07-23-page2.txt: [("'often.", 'often.')] LUH19150609-V07-23-page4.txt: [("'the", 'the')] LUH19150609-V07-23-page5.txt: [("'like", 'like')] LUH19150616-V07-24-page2.txt: [("'your", 'your')] LUH19150616-V07-24-page4.txt: [("'city", 'city')] LUH19150616-V07-24-page6.txt: [("'that", 'that')] LUH19150616-V07-24-page7.txt: [("'BR", 'BR'), ("'UNION", 'UNION')] LUH19150623-V07-25-page6.txt: [("'RUSSELL", 'RUSSELL')] LUH19150630-V07-26-page2.txt: [("'be", 'be')] LUH19150630-V07-26-page7.txt: [("'BR", 'BR')] LUH19150707-V07-27-page4.txt: [("'I", 'I'), ("'Great", 'Great'), ("'Great", 'Great')] LUH19150707-V07-27-page7.txt: [("'HM", 'HM')] LUH19150707-V07-27-page8.txt: [("'Twomblv", 'Twomblv')] LUH19150714-V07-28-page4.txt: [("'Whatsoever", 'Whatsoever')] LUH19150721-V07-29-page1.txt: [("'just", 'just'), ("'Be", 'Be')] LUH19150721-V07-29-page2.txt: [("'Tabernacle", 'Tabernacle')] LUH19150721-V07-29-page3.txt: [("'Chesaning", 'Chesaning')] LUH19150721-V07-29-page5.txt: [("'i", 'i')] LUH19150721-V07-29-page8.txt: [("'the", 'the')] LUH19150728-V07-30-page6.txt: [("'UNION", 'UNION')] LUH19150728-V07-30-page7.txt: [("'but", 'but'), ("'.", '.')] LUH19150728-V07-30-page8.txt: [("'far", 'far'), ("'Come", 'Come'), ("'If", 'If')] LUH19150804-V07-31-page3.txt: [("'World's", 'Worlds'), ("'Shadow", 'Shadow')] LUH19150804-V07-31-page8.txt: [("'stages", 'stages')] LUH19150811-V07-32-page12.txt: [("'August", 'August')] LUH19150811-V07-32-page4.txt: [("'Do", 'Do'), ("'that", 'that'), ("'I", 'I'), ("'It", 'It')] LUH19150818-V07-33-page1.txt: [("'Twas", 'Twas'), ("'Twas", 'Twas')] LUH19150818-V07-33-page11.txt: [("'Great", 'Great'), ("'still", 'still'), ("'We", 'We')] LUH19150818-V07-33-page12.txt: [("'Bible", 'Bible'), ("'That", 'That')] LUH19150818-V07-33-page14.txt: [("'Bible", 'Bible'), ("'Well", 'Well'), ("'I", 'I')] LUH19150818-V07-33-page15.txt: [("'this", 'this')] LUH19150818-V07-33-page16.txt: [("'love", 'love')] LUH19150818-V07-33-page4.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19150818-V07-33-page5.txt: [("'See", 'See')] LUH19150818-V07-33-page6.txt: [("'I", 'I'), ("'Are", 'Are'), ("'But", 'But')] LUH19150818-V07-33-page9.txt: [("'I", 'I')] LUH19150825-V07-34-page1.txt: [("'twas", 'twas')] LUH19150825-V07-34-page4.txt: [("'higher", 'higher'), ("'this", 'this')] LUH19150825-V07-34-page6.txt: [("'a", 'a')] LUH19150825-V07-34-page7.txt: [("'Pwombly.....", 'Pwombly.....'), ("'July", 'July'), ("'.", '.')] LUH19150825-V07-34-page8.txt: [("'Your", 'Your'), ("'If", 'If'), ("'Bible", 'Bible')] LUH19150901-V07-35-page1.txt: [("'a", 'a'), ("'the", 'the')] LUH19150901-V07-35-page6.txt: [("'merciful", 'merciful')] LUH19150901-V07-35-page8.txt: [("'Fri", 'Fri')] LUH19150908-V07-36-page1.txt: [("'UNION", 'UNION')] LUH19150908-V07-36-page3.txt: [("'or", 'or'), ("'than", 'than')] LUH19150908-V07-36-page6.txt: [("'Twill", 'Twill'), ("'twill", 'twill')] LUH19150915-V07-37-page2.txt: [("'See", 'See')] LUH19150915-V07-37-page6.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'With", 'With'), ("'Tis", 'Tis')] LUH19150915-V07-37-page7.txt: [("'For", 'For'), ("'indexes.", 'indexes.')] LUH19150922-V07-38-page5.txt: [("'that", 'that')] LUH19150922-V07-38-page7.txt: [("'on", 'on')] LUH19150929-V07-39-page1.txt: [("'careful", 'careful')] LUH19151006-V07-40-page1.txt: [("'H.", 'H.')] LUH19151006-V07-40-page4.txt: [("'reconsecrating", 'reconsecrating')] LUH19151013-V07-41-page1.txt: [("'cooperation", 'cooperation')] LUH19151013-V07-41-page3.txt: [("'Great", 'Great'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19151013-V07-41-page4.txt: [("'LAKE", 'LAKE')] LUH19151013-V07-41-page5.txt: [("'kdeep", 'kdeep')] LUH19151013-V07-41-page7.txt: [("'Vatican", 'Vatican')] LUH19151020-V07-42-page4.txt: [("'in", 'in')] LUH19151020-V07-42-page6.txt: [("'I", 'I'), ("'I", 'I')] LUH19151020-V07-42-page7.txt: [("'What", 'What'), ("'News", 'News')] LUH19151027-V07-43-page1.txt: [("'Why", 'Why'), ("'tis", 'tis'), ("'My", 'My')] LUH19151027-V07-43-page11.txt: [("'BR", 'BR'), ("'lines", 'lines')] LUH19151027-V07-43-page4.txt: [("'the", 'the')] LUH19151027-V07-43-page5.txt: [("'Both", 'Both')] LUH19151027-V07-43-page6.txt: [("'who", 'who')] LUH19151027-V07-43-page7.txt: [("'Cents", 'Cents')] LUH19151103-V07-44-page2.txt: [("'special", 'special')] LUH19151103-V07-44-page6.txt: [("'very", 'very')] LUH19151110-V07-45-page1.txt: [("'tis", 'tis')] LUH19151110-V07-45-page6.txt: [("'Bible", 'Bible')] LUH19151110-V07-45-page7.txt: [("'Aurelia", 'Aurelia')] LUH19151110-V07-45-page8.txt: [("'others.", 'others.')] LUH19151117-V07-46-page4.txt: [("'days", 'days')] LUH19151117-V07-46-page5.txt: [("'Tithe", 'Tithe')] LUH19151117-V07-46-page6.txt: [("'Tithe", 'Tithe')] LUH19151124-V07-47-page1.txt: [("'last", 'last'), ("'They", 'They')] LUH19151124-V07-47-page2.txt: [("'citizens", 'citizens')] LUH19151124-V07-47-page7.txt: [("'Del.", 'Del.')] LUH19151201-V07-48-page1.txt: [("'Union", 'Union'), ("'Tis", 'Tis')] LUH19151201-V07-48-page4.txt: [("'Heralds", 'Heralds')] LUH19151208-V07-49-page8.txt: [("''A", 'A')] LUH19151215-V07-50-page5.txt: [("'rural", 'rural'), ("'are", 'are')] LUH19151222-V07-51-page11.txt: [("'rota", 'rota')] LUH19151222-V07-51-page6.txt: [("'Maple", 'Maple')] LUH19160105-V08-01-page1.txt: [("'they", 'they')] LUH19160105-V08-01-page3.txt: [("'makes", 'makes'), ("'company", 'company')] LUH19160105-V08-01-page5.txt: [("'this", 'this')] LUH19160105-V08-01-page7.txt: [("'barrels", 'barrels')] LUH19160112-V08-02-page3.txt: [("'of", 'of')] LUH19160112-V08-02-page4.txt: [("'missions", 'missions'), ("'hear", 'hear')] LUH19160112-V08-02-page7.txt: [("'conference", 'conference')] LUH19160119-V08-03-page8.txt: [("'following", 'following'), ("'reign", 'reign')] LUH19160126-V08-04-page1.txt: [("'God", 'God'), ("'meeting", 'meeting')] LUH19160126-V08-04-page4.txt: [("'responded.", 'responded.')] LUH19160126-V08-04-page7.txt: [("'and", 'and')] LUH19160202-V08-05-page2.txt: [("'responsibility", 'responsibility')] LUH19160202-V08-05-page3.txt: [("'Us", 'Us'), ("'Said", 'Said'), ("'established", 'established'), ("'that", 'that')] LUH19160202-V08-05-page8.txt: [("'Approved", 'Approved')] LUH19160209-V08-06-page2.txt: [("'a", 'a'), ("'early", 'early')] LUH19160209-V08-06-page3.txt: [("'writes", 'writes'), ("'informal", 'informal')] LUH19160209-V08-06-page4.txt: [("'Bible", 'Bible')] LUH19160209-V08-06-page5.txt: [("'regions", 'regions'), ("'Sage", 'Sage'), ("'the", 'the')] LUH19160216-V08-07-page1.txt: [("'Some", 'Some'), ("'tis", 'tis')] LUH19160223-V08-08-page1.txt: [("'we", 'we')] LUH19160223-V08-08-page7.txt: [("'Practical", 'Practical')] LUH19160223-V08-08-page9.txt: [("'for", 'for'), ("'gathering.", 'gathering.'), ("'for", 'for')] LUH19160301-V08-09-page1.txt: [("'Tis", 'Tis'), ("'I", 'I')] LUH19160301-V08-09-page3.txt: [("'Monday", 'Monday'), ("'Bible", 'Bible'), ("'Practical", 'Practical'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19160301-V08-09-page5.txt: [("'and", 'and'), ("'Bible", 'Bible')] LUH19160301-V08-09-page6.txt: [("'Bible", 'Bible')] LUH19160308-V08-10-page10.txt: [("'placed", 'placed')] LUH19160308-V08-10-page11.txt: [("'work", 'work')] LUH19160308-V08-10-page16.txt: [("'Bible", 'Bible')] LUH19160308-V08-10-page18.txt: [("'a", 'a'), ("'husband", 'husband')] LUH19160315-V08-11-page12.txt: [("'Build", 'Build')] LUH19160315-V08-11-page14.txt: [("'to", 'to'), ("'Ave", 'Ave')] LUH19160315-V08-11-page5.txt: [("'we", 'we'), ("'overdrawn", 'overdrawn'), ("'four", 'four')] LUH19160315-V08-11-page7.txt: [("'strengthening.", 'strengthening.')] LUH19160322-V08-12-page10.txt: [("'the", 'the')] LUH19160322-V08-12-page12.txt: [("'are", 'are'), ("'you", 'you')] LUH19160322-V08-12-page13.txt: [("'It", 'It'), ("'Our", 'Our')] LUH19160322-V08-12-page14.txt: [("'And", 'And'), ("'come", 'come'), ("'glorious", 'glorious'), ("'there", 'there'), ("'stand", 'stand'), ("'Are", 'Are')] LUH19160322-V08-12-page15.txt: [("'had", 'had')] LUH19160322-V08-12-page17.txt: [("'Repeat", 'Repeat'), ("'Tell", 'Tell'), ("'quite", 'quite')] LUH19160322-V08-12-page19.txt: [("'The", 'The')] LUH19160322-V08-12-page20.txt: [("'Perhaps", 'Perhaps'), ("'of", 'of'), ("'with", 'with')] LUH19160322-V08-12-page22.txt: [("'The", 'The'), ("'on", 'on')] LUH19160322-V08-12-page24.txt: [("'Be", 'Be'), ("'Come", 'Come'), ("'Then", 'Then'), ("'I", 'I'), ("'abide", 'abide'), ("'Behold", 'Behold'), ("'Him", 'Him'), ("'Lord", 'Lord'), ("'He", 'He')] LUH19160322-V08-12-page25.txt: [("'Lord", 'Lord'), ("'I", 'I'), ("'I", 'I'), ("'That", 'That')] LUH19160322-V08-12-page28.txt: [("'heart", 'heart')] LUH19160322-V08-12-page39.txt: [("'hundred", 'hundred'), ("'from", 'from'), ("'the", 'the')] LUH19160322-V08-12-page42.txt: [("'with", 'with')] LUH19160322-V08-12-page43.txt: [("'There", 'There')] LUH19160322-V08-12-page6.txt: [("'think", 'think')] LUH19160329-V08-13-page7.txt: [("'.", '.'), ("'power", 'power'), ("'Three", 'Three')] LUH19160405-V08-14-page3.txt: [("'tis", 'tis')] LUH19160405-V08-14-page7.txt: [("'writer.", 'writer.')] LUH19160412-V08-15-page1.txt: [("'d.", 'd.'), ("'should", 'should')] LUH19160412-V08-15-page6.txt: [("'Em", 'Em'), ("'em", 'em'), ("'em", 'em')] LUH19160412-V08-15-page8.txt: [("'The", 'The')] LUH19160419-V08-16-page1.txt: [("'seventh-day", 'seventh-day'), ("'I", 'I'), ("'No", 'No'), ("'Mong", 'Mong')] LUH19160419-V08-16-page2.txt: [("'while", 'while'), ("'little", 'little'), ("'Safahaih", 'Safahaih')] LUH19160419-V08-16-page4.txt: [("'Bible", 'Bible'), ("'Now", 'Now'), ("'You", 'You'), ("'I", 'I')] LUH19160419-V08-16-page7.txt: [("'want", 'want'), ("'HERALD", 'HERALD')] LUH19160426-V08-17-page1.txt: [("'This", 'This'), ("'It", 'It')] LUH19160426-V08-17-page2.txt: [("'You", 'You'), ("'I", 'I')] LUH19160426-V08-17-page3.txt: [("'of", 'of'), ("'will", 'will')] LUH19160503-V08-18-page1.txt: [("'Tis", 'Tis'), ("'Neath", 'Neath')] LUH19160503-V08-18-page2.txt: [("'in", 'in')] LUH19160503-V08-18-page4.txt: [("'good", 'good'), ("'than", 'than')] LUH19160503-V08-18-page6.txt: [("'last", 'last'), ("'a", 'a')] LUH19160503-V08-18-page7.txt: [("'Temperance", 'Temperance'), ("'BR", 'BR'), ("'Chas.", 'Chas.')] LUH19160510-V08-19-page2.txt: [("'boys", 'boys'), ("'a", 'a')] LUH19160510-V08-19-page3.txt: [("'camp", 'camp'), ("'information", 'information')] LUH19160510-V08-19-page6.txt: [("'The", 'The'), ("'at", 'at'), ("'Stockton", 'Stockton'), ("'children'.", 'children.'), ("'various", 'various'), ("'For", 'For'), ("'Milwaukee", 'Milwaukee'), ("'BOwman", 'BOwman'), ("'is", 'is')] LUH19160510-V08-19-page7.txt: [("'BR", 'BR'), ("'Colton", 'Colton'), ("'She", 'She'), ("'ood", 'ood'), ("'mid", 'mid'), ("'North", 'North'), ("'away", 'away'), ("'.", '.')] LUH19160510-V08-19-page8.txt: [("'Vatican", 'Vatican'), ("'Shadow", 'Shadow'), ("'Shadow", 'Shadow'), ("'The", 'The'), ("'The", 'The'), ("'Shadow", 'Shadow'), ("'World's", 'Worlds'), ("'Shadow", 'Shadow'), ("'Shadow", 'Shadow')] LUH19160517-V08-20-page1.txt: [("'at", 'at')] LUH19160517-V08-20-page7.txt: [("'souls", 'souls')] LUH19160524-V08-21-page1.txt: [("'a", 'a'), ("'remember", 'remember')] LUH19160524-V08-21-page2.txt: [("'the", 'the'), ("'not", 'not'), ("'us.", 'us.')] LUH19160524-V08-21-page3.txt: [("'Hall", 'Hall'), ("'parents", 'parents')] LUH19160524-V08-21-page4.txt: [("'its", 'its'), ("'work", 'work')] LUH19160524-V08-21-page6.txt: [("'conditions", 'conditions'), ("'of", 'of'), ("'reports", 'reports'), ("'it", 'it'), ("'young", 'young')] LUH19160524-V08-21-page7.txt: [("'and", 'and'), ("'was", 'was'), ("'definite", 'definite'), ("'the", 'the'), ("'taken", 'taken'), ("'UNION", 'UNION'), ("'HERALD", 'HERALD'), ("'L.", 'L.'), ("'S", 'S')] LUH19160531-V08-22-page1.txt: [("'Tis", 'Tis'), ("'have", 'have'), ("'what", 'what'), ("'morbid", 'morbid'), ("'judgment-bound", 'judgment-bound'), ("'reach", 'reach'), ("'able", 'able'), ("'are", 'are'), ("'mirror", 'mirror'), ("'Word.", 'Word.')] LUH19160531-V08-22-page10.txt: [("'children", 'children'), ("'HERALD", 'HERALD')] LUH19160531-V08-22-page11.txt: [("'Grand", 'Grand'), ("'January", 'January'), ("'a", 'a'), ("'tb''Theodore", 'tbTheodore'), ("'F.", 'F.'), ("'age", 'age'), ("'truth", 'truth'), ("'Married", 'Married'), ("'She", 'She'), ("'As", 'As'), ("'hy", 'hy'), ("'that", 'that'), ("'After", 'After'), ("'and", 'and'), ("'PrOfeSSor", 'PrOfeSSor'), ("'Graf", 'Graf'), ("'burned", 'burned'), ("'ashes", 'ashes'), ("'to", 'to'), ("'members", 'members'), ("'There", 'There'), ("'subject", 'subject'), ("'The", 'The'), ('\'Opportunity."', 'Opportunity."')] LUH19160531-V08-22-page12.txt: [("'Union", 'Union'), ("'.", '.')] LUH19160531-V08-22-page2.txt: [("'at", 'at'), ("'.cOnsider", '.cOnsider'), ("'CHtztsTIAN.", 'CHtztsTIAN.'), ("'not", 'not'), ("'Ye", 'Ye'), ("'people", 'people')] LUH19160531-V08-22-page3.txt: [("'is", 'is'), ("'be", 'be'), ("'feeling", 'feeling'), ("'few", 'few'), ("'studies", 'studies'), ("'and", 'and'), ("'went", 'went'), ("'a", 'a')] LUH19160531-V08-22-page6.txt: [("'Rejoice", 'Rejoice')] LUH19160531-V08-22-page7.txt: [("'I", 'I'), ("'Well", 'Well'), ("'I", 'I'), ("'of", 'of')] LUH19160531-V08-22-page9.txt: [("'followed", 'followed')] LUH19160607-V08-23-page1.txt: [("'one", 'one')] LUH19160607-V08-23-page3.txt: [("'LaCrosse", 'LaCrosse'), ("'May", 'May')] LUH19160607-V08-23-page4.txt: [("'and", 'and')] LUH19160607-V08-23-page8.txt: [("'round", 'round')] LUH19160614-V08-24-page1.txt: [("'the", 'the')] LUH19160614-V08-24-page2.txt: [("'of", 'of'), ("'Things", 'Things'), ("'Mention", 'Mention'), ("'It", 'It'), ("'I", 'I'), ("'the", 'the')] LUH19160614-V08-24-page5.txt: [("'Bible", 'Bible')] LUH19160614-V08-24-page6.txt: [("'Grandpa", 'Grandpa')] LUH19160614-V08-24-page7.txt: [("'they", 'they')] LUH19160621-V08-25-page2.txt: [("'lays", 'lays')] LUH19160621-V08-25-page4.txt: [("'Unfaithfulness", 'Unfaithfulness'), ("'lithe", 'lithe')] LUH19160621-V08-25-page5.txt: [("'I", 'I'), ("'But", 'But'), ("'Return", 'Return'), ("'Return", 'Return'), ("'and", 'and')] LUH19160621-V08-25-page6.txt: [("'Bible", 'Bible')] LUH19160621-V08-25-page8.txt: [("'That", 'That')] LUH19160628-V08-26-page2.txt: [("'meeting", 'meeting')] LUH19160628-V08-26-page7.txt: [("'Mc", 'Mc'), ("'McBride", 'McBride')] LUH19160705-V08-27-page4.txt: [("'till", 'till')] LUH19160705-V08-27-page5.txt: [("'they", 'they')] LUH19160705-V08-27-page7.txt: [("'Some", 'Some'), ("'Ivan", 'Ivan')] LUH19160705-V08-27-page8.txt: [("'Bible", 'Bible')] LUH19160712-V08-28-page1.txt: [("'We", 'We'), ("'tis", 'tis')] LUH19160712-V08-28-page2.txt: [("'Bible", 'Bible')] LUH19160719-V08-29-page1.txt: [("'our", 'our'), ("'Tis", 'Tis')] LUH19160719-V08-29-page3.txt: [("'to", 'to')] LUH19160719-V08-29-page6.txt: [("'I", 'I'), ("'Bible", 'Bible'), ("'I", 'I'), ("'There", 'There'), ("'How", 'How')] LUH19160726-V08-30-page4.txt: [("'location.", 'location.')] LUH19160726-V08-30-page5.txt: [("'You", 'You')] LUH19160726-V08-30-page6.txt: [("'The", 'The'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19160802-V08-31-page13.txt: [("'love", 'love'), ("'When", 'When')] LUH19160802-V08-31-page14.txt: [("'Great", 'Great'), ("'Daniel", 'Daniel'), ("'That's", 'Thats'), ("'I", 'I'), ("'This", 'This'), ("'and", 'and'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Daniel", 'Daniel'), ("'Bible", 'Bible')] LUH19160802-V08-31-page8.txt: [("'and", 'and'), ("'Michigan", 'Michigan')] LUH19160809-V08-32-page3.txt: [("'occasionally", 'occasionally'), ("'Bible", 'Bible')] LUH19160809-V08-32-page4.txt: [("'Daniel", 'Daniel'), ("'Practical", 'Practical'), ("'Daniel", 'Daniel'), ("'Don't", 'Dont'), ("'Though", 'Though')] LUH19160809-V08-32-page7.txt: [("'Yes", 'Yes'), ("'Bible", 'Bible'), ("'Yes", 'Yes'), ("'were", 'were'), ("'hundred", 'hundred')] LUH19160816-V08-33-page1.txt: [("'Take", 'Take'), ("'the", 'the')] LUH19160816-V08-33-page2.txt: [("'century.", 'century.')] LUH19160816-V08-33-page3.txt: [("'don't", 'dont')] LUH19160816-V08-33-page5.txt: [("'Best", 'Best')] LUH19160816-V08-33-page8.txt: [("'Patton", 'Patton')] LUH19160823-V08-34-page10.txt: [("'grade", 'grade'), ("'WISCONSIN", 'WISCONSIN'), ("'prophecy", 'prophecy')] LUH19160823-V08-34-page11.txt: [("'no", 'no')] LUH19160823-V08-34-page14.txt: [("'higher", 'higher'), ("'new", 'new')] LUH19160823-V08-34-page5.txt: [("'do", 'do')] LUH19160823-V08-34-page8.txt: [("'Here", 'Here'), ("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19160830-V08-35-page4.txt: [("'laborers", 'laborers')] LUH19160830-V08-35-page5.txt: [("'enlarge", 'enlarge')] LUH19160830-V08-35-page6.txt: [("'l'ithe", 'lithe')] LUH19160830-V08-35-page8.txt: [("'Patton", 'Patton')] LUH19160906-V08-36-page2.txt: [("'conference", 'conference'), ("'Bible", 'Bible'), ("'This", 'This'), ("'Great", 'Great'), ("'Great", 'Great'), ("'Bible", 'Bible')] LUH19160913-V08-37-page4.txt: [("'Bible", 'Bible')] LUH19160913-V08-37-page6.txt: [("'tis", 'tis')] LUH19160913-V08-37-page8.txt: [("'Fessler", 'Fessler'), ("'Go", 'Go'), ("'To", 'To'), ("'Twill", 'Twill'), ("'Twill", 'Twill')] LUH19160920-V08-38-page1.txt: [("'tis", 'tis')] LUH19160920-V08-38-page2.txt: [("'We", 'We'), ("'Put", 'Put')] LUH19160920-V08-38-page4.txt: [("'influence", 'influence')] LUH19160927-V08-39-page3.txt: [("'Kent", 'Kent'), ("'days", 'days')] LUH19160927-V08-39-page4.txt: [("'Daniel", 'Daniel'), ("'Wayne", 'Wayne')] LUH19160927-V08-39-page5.txt: [("'Wright", 'Wright'), ("'if", 'if')] LUH19160927-V08-39-page6.txt: [("'price", 'price'), ("'but", 'but'), ("'Wisconsin", 'Wisconsin'), ("'La", 'La'), ("'September", 'September')] LUH19160927-V08-39-page8.txt: [("'the", 'the'), ("'Well", 'Well')] LUH19161004-V08-40-page2.txt: [("'Two", 'Two'), ("'Is", 'Is')] LUH19161004-V08-40-page4.txt: [("'an", 'an')] LUH19161004-V08-40-page6.txt: [("'Bible", 'Bible')] LUH19161004-V08-40-page8.txt: [("'Patton", 'Patton')] LUH19161011-V08-41-page1.txt: [("'Field", 'Field')] LUH19161011-V08-41-page5.txt: [("'help", 'help')] LUH19161011-V08-41-page6.txt: [("'May", 'May'), ("'I", 'I'), ("'.", '.')] LUH19161011-V08-41-page7.txt: [("'the", 'the'), ("'in", 'in'), ("'conducted", 'conducted')] LUH19161011-V08-41-page8.txt: [("'Patton", 'Patton')] LUH19161018-V08-42-page3.txt: [("'to", 'to'), ("'So", 'So')] LUH19161018-V08-42-page4.txt: [("'Coming", 'Coming')] LUH19161018-V08-42-page8.txt: [("'the", 'the')] LUH19161025-V08-43-page2.txt: [("'Then", 'Then')] LUH19161025-V08-43-page3.txt: [("'returning", 'returning')] LUH19161025-V08-43-page4.txt: [("'Mattoon", 'Mattoon')] LUH19161025-V08-43-page5.txt: [("'will", 'will')] LUH19161025-V08-43-page6.txt: [("'daughter", 'daughter'), ("'six", 'six')] LUH19161025-V08-43-page8.txt: [("'mired", 'mired'), ("'Po", 'Po'), ('\'\'No"', 'No"')] LUH19161101-V08-44-page2.txt: [("'members.", 'members.')] LUH19161101-V08-44-page6.txt: [("'completed", 'completed')] LUH19161101-V08-44-page8.txt: [("'Patton", 'Patton')] LUH19161108-V08-45-page1.txt: [("'at", 'at')] LUH19161108-V08-45-page5.txt: [("'any", 'any')] LUH19161108-V08-45-page8.txt: [("'well", 'well'), ("'the", 'the'), ("'everlasting", 'everlasting')] LUH19161115-V08-46-page1.txt: [("'for", 'for')] LUH19161122-V08-47-page3.txt: [("'are", 'are'), ("'When", 'When'), ("'after", 'after'), ("'sundown.", 'sundown.'), ("'feel", 'feel'), ("'the", 'the'), ("'E.", 'E.'), ("'are", 'are'), ("'now", 'now'), ("'has", 'has'), ("'the", 'the'), ("'t'ain", 'tain'), ("'ftbm", 'ftbm'), ("'-'''Si", '-Si'), ("'who", 'who')] LUH19161122-V08-47-page4.txt: [("'come", 'come'), ("'double", 'double')] LUH19161122-V08-47-page6.txt: [("'Academy", 'Academy'), ("'watin", 'watin'), ("'afourid", 'afourid'), ("'of", 'of')] LUH19161122-V08-47-page7.txt: [("'From", 'From'), ("'field", 'field'), ("'mother", 'mother'), ("'Patton", 'Patton')] LUH19161129-V08-48-page4.txt: [("'elphian", 'elphian')] LUH19161129-V08-48-page7.txt: [("'ought", 'ought'), ("'Bible", 'Bible')] LUH19161129-V08-48-page8.txt: [("'College", 'College')] LUH19161206-V08-49-page4.txt: [("'meetings.", 'meetings.')] LUH19161206-V08-49-page5.txt: [("'appropriate", 'appropriate'), ("'I", 'I'), ("'Come", 'Come'), ("'That", 'That')] LUH19161206-V08-49-page6.txt: [("'Bible", 'Bible'), ("'I", 'I')] LUH19161206-V08-49-page7.txt: [("'of", 'of')] LUH19161206-V08-49-page8.txt: [("'had", 'had')] LUH19161213-V08-50-page1.txt: [("'Christ's", 'Christs'), ("'during", 'during'), ("'Christ's", 'Christs')] LUH19161213-V08-50-page11.txt: [("'Letters", 'Letters')] LUH19161213-V08-50-page12.txt: [("'thing", 'thing'), ("'This", 'This')] LUH19161213-V08-50-page2.txt: [("'I", 'I')] LUH19161213-V08-50-page3.txt: [("'are", 'are')] LUH19161213-V08-50-page9.txt: [("'you", 'you')] LUH19161220-V08-51-page1.txt: [("'I", 'I')] LUH19161220-V08-51-page10.txt: [("'epitome", 'epitome')] LUH19161220-V08-51-page11.txt: [("'I'll", 'Ill')] LUH19161220-V08-51-page12.txt: [("'ts", 'ts')] LUH19161220-V08-51-page4.txt: [("'annual", 'annual'), ("'Albion", 'Albion')] LUH19161220-V08-51-page5.txt: [("'and", 'and')] LUH19161220-V08-51-page7.txt: [("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Best", 'Best')] LUH19161220-V08-51-page9.txt: [("'It", 'It'), ("'all", 'all')] LUH19170103-V09-01-page1.txt: [("'strange", 'strange'), ("'The", 'The'), ("'Tis", 'Tis')] LUH19170103-V09-01-page3.txt: [("'and", 'and'), ("'many", 'many'), ("'The", 'The'), ("'Well", 'Well'), ("'We'll", 'Well'), ("'and", 'and')] LUH19170103-V09-01-page4.txt: [("'Our", 'Our')] LUH19170103-V09-01-page5.txt: [("'the", 'the')] LUH19170103-V09-01e-page10.txt: [("'Bible", 'Bible')] LUH19170103-V09-01e-page16.txt: [("'Bible", 'Bible'), ("'I", 'I')] LUH19170103-V09-01e-page6.txt: [("'did", 'did')] LUH19170103-V09-01e-page9.txt: [("'Twas", 'Twas')] LUH19170110-V09-02-page1.txt: [("'if", 'if'), ("'is", 'is')] LUH19170110-V09-02-page5.txt: [("'grown", 'grown')] LUH19170110-V09-02-page6.txt: [("'Lord", 'Lord')] LUH19170117-V09-03-page1.txt: [("'And", 'And'), ("'And", 'And'), ("'as", 'as')] LUH19170117-V09-03-page2.txt: [("'help.", 'help.')] LUH19170117-V09-03-page3.txt: [("'Brethren", 'Brethren'), ("'such", 'such')] LUH19170117-V09-03-page4.txt: [("'and", 'and'), ("'instruction.", 'instruction.'), ("'other", 'other')] LUH19170117-V09-03-page6.txt: [("'Great", 'Great')] LUH19170117-V09-03-page7.txt: [("'and", 'and'), ("'a", 'a')] LUH19170124-V09-04-page3.txt: [("'the", 'the')] LUH19170124-V09-04-page4.txt: [("'be", 'be'), ("'Lord", 'Lord'), ("'It", 'It'), ("'to", 'to')] LUH19170124-V09-04-page6.txt: [("'at", 'at')] LUH19170124-V09-04-page8.txt: [("'Board", 'Board')] LUH19170131-V09-05-page1.txt: [("'neath", 'neath'), ("'gainst", 'gainst')] LUH19170131-V09-05-page4.txt: [("'to", 'to')] LUH19170207-V09-06-page2.txt: [("'of", 'of'), ("'One", 'One')] LUH19170207-V09-06-page4.txt: [("'tis", 'tis')] LUH19170207-V09-06-page5.txt: [("'truth", 'truth')] LUH19170207-V09-06-page7.txt: [("'till", 'till')] LUH19170207-V09-06-page8.txt: [("'I", 'I')] LUH19170214-V09-07-page1.txt: [("'Tis", 'Tis')] LUH19170214-V09-07-page4.txt: [("'I", 'I')] LUH19170221-V09-08-page5.txt: [("'Falls", 'Falls')] LUH19170221-V09-08-page8.txt: [("'Lord's", 'Lords')] LUH19170228-V09-09-page2.txt: [("'prepared", 'prepared')] LUH19170228-V09-09-page7.txt: [("'cents", 'cents')] LUH19170307-V09-10-page3.txt: [("'This", 'This'), ("'From", 'From')] LUH19170307-V09-10-page4.txt: [("'a", 'a')] LUH19170307-V09-10-page8.txt: [("'suitable", 'suitable')] LUH19170314-V09-11-page1.txt: [("'the", 'the'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19170314-V09-11-page4.txt: [("'supplies.", 'supplies.')] LUH19170314-V09-11-page5.txt: [("'board", 'board'), ("'schools", 'schools'), ("'in", 'in')] LUH19170314-V09-11-page8.txt: [("'of", 'of')] LUH19170321-V09-12-page1.txt: [('\'not"', 'not"'), ("'I", 'I'), ("'Have", 'Have')] LUH19170321-V09-12-page10.txt: [("'pleasure", 'pleasure'), ("'Patton", 'Patton')] LUH19170321-V09-12-page11.txt: [("'Church", 'Church'), ("'Twill", 'Twill'), ("'morning", 'morning')] LUH19170321-V09-12-page3.txt: [("'is", 'is'), ("'anything", 'anything')] LUH19170328-V09-13-page3.txt: [("'send", 'send')] LUH19170328-V09-13-page4.txt: [("'results.", 'results.')] LUH19170328-V09-13-page5.txt: [("'for", 'for')] LUH19170328-V09-13-page6.txt: [("'and", 'and')] LUH19170328-V09-13-page7.txt: [("'make", 'make')] LUH19170404-V09-14-page10.txt: [("'Bible", 'Bible')] LUH19170404-V09-14-page11.txt: [("'the", 'the'), ("'.he", '.he')] LUH19170404-V09-14-page12.txt: [("'there", 'there')] LUH19170404-V09-14-page2.txt: [("'Shall", 'Shall')] LUH19170404-V09-14-page3.txt: [("'LAKE", 'LAKE')] LUH19170404-V09-14-page5.txt: [("'minister.", 'minister.')] LUH19170404-V09-14-page9.txt: [("'Heavenly", 'Heavenly'), ("'have", 'have'), ("'they", 'they')] LUH19170411-V09-15-page3.txt: [("'office", 'office')] LUH19170411-V09-15-page5.txt: [("'Bible", 'Bible'), ("'Daniel", 'Daniel'), ("'Daniel", 'Daniel'), ("'Great", 'Great')] LUH19170411-V09-15-page6.txt: [("'demonstrations", 'demonstrations'), ("'part", 'part'), ("'are", 'are')] LUH19170411-V09-15-page7.txt: [("'grow", 'grow'), ("'BR", 'BR')] LUH19170418-V09-16-page1.txt: [("'Tis", 'Tis')] LUH19170418-V09-16-page2.txt: [("'country", 'country')] LUH19170418-V09-16-page3.txt: [("'Those", 'Those')] LUH19170418-V09-16-page4.txt: [("'That", 'That')] LUH19170418-V09-16-page7.txt: [("'United", 'United'), ("'of", 'of'), ('\'Church"', 'Church"')] LUH19170425-V09-17-page10.txt: [("'Where", 'Where')] LUH19170425-V09-17-page12.txt: [("'cherishes", 'cherishes')] LUH19170425-V09-17-page13.txt: [("'died", 'died')] LUH19170425-V09-17-page14.txt: [("'After", 'After')] LUH19170425-V09-17-page2.txt: [("'sterner", 'sterner')] LUH19170425-V09-17-page3.txt: [("'may", 'may')] LUH19170425-V09-17-page8.txt: [("'World's", 'Worlds'), ("'Systematic", 'Systematic'), ("'Manners", 'Manners')] LUH19170502-V09-18-page1.txt: [("'season", 'season')] LUH19170502-V09-18-page3.txt: [("'bear", 'bear'), ("'blood", 'blood')] LUH19170509-V09-19-page11.txt: [("'Adventist", 'Adventist')] LUH19170516-V09-20-page2.txt: [("'World", 'World')] LUH19170523-V09-21-page6.txt: [("'Learning", 'Learning'), ("'Special", 'Special')] LUH19170523-V09-21-page8.txt: [("'Comae", 'Comae'), ("'July", 'July')] LUH19170530-V09-22-page1.txt: [("'all", 'all')] LUH19170530-V09-22-page5.txt: [("'yet", 'yet')] LUH19170613-V09-24-page1.txt: [("'day", 'day')] LUH19170613-V09-24-page5.txt: [("'truth", 'truth')] LUH19170613-V09-24-page8.txt: [("'BR", 'BR')] LUH19170620-V09-25-page1.txt: [("'more", 'more'), ("'His", 'His'), ("'The", 'The')] LUH19170620-V09-25-page3.txt: [("'W.", 'W.')] LUH19170620-V09-25-page4.txt: [("'Two", 'Two'), ("'Yes'.", 'Yes.')] LUH19170620-V09-25-page5.txt: [("'I", 'I'), ("'Hitherto", 'Hitherto'), ("'hungering", 'hungering'), ("'began", 'began')] LUH19170620-V09-25-page6.txt: [("'Others", 'Others'), ("'can", 'can'), ("'or", 'or')] LUH19170627-V09-26-page1.txt: [("'will", 'will')] LUH19170627-V09-26-page2.txt: [("'UNION", 'UNION')] LUH19170627-V09-26-page3.txt: [("'in", 'in'), ("'for", 'for')] LUH19170627-V09-26-page4.txt: [("'Every", 'Every')] LUH19170627-V09-26-page6.txt: [("'Kaufman", 'Kaufman')] LUH19170627-V09-26-page8.txt: [("'Seventh-day", 'Seventh-day'), ("'Dear", 'Dear')] LUH19170704-V09-27-page2.txt: [("'weighed", 'weighed')] LUH19170704-V09-27-page3.txt: [("'works", 'works')] LUH19170704-V09-27-page5.txt: [("'vital", 'vital'), ("'World's", 'Worlds'), ("'World's", 'Worlds'), ("'I", 'I'), ("'The", 'The'), ("'The", 'The'), ("'Quite", 'Quite')] LUH19170704-V09-27-page6.txt: [("'I", 'I'), ("'World's", 'Worlds'), ("'temperance", 'temperance'), ("'The", 'The'), ("'World's", 'Worlds'), ("'I", 'I'), ("'All", 'All'), ("'World's", 'Worlds')] LUH19170711-V09-28-page1.txt: [("'SPRINGS", 'SPRINGS')] LUH19170711-V09-28-page2.txt: [("'Thiele", 'Thiele')] LUH19170711-V09-28-page5.txt: [("'the", 'the'), ("'I", 'I')] LUH19170711-V09-28-page6.txt: [("'patient", 'patient')] LUH19170711-V09-28-page7.txt: [("'BR", 'BR')] LUH19170718-V09-29-page10.txt: [("'old", 'old')] LUH19170718-V09-29-page5.txt: [("'World", 'World')] LUH19170718-V09-29-page8.txt: [("'I", 'I'), ("'to", 'to')] LUH19170725-V09-30-page2.txt: [("'Canvassing", 'Canvassing')] LUH19170725-V09-30-page8.txt: [("'t", 't')] LUH19170801-V09-31-page1.txt: [("'Seek", 'Seek')] LUH19170808-V09-32-page3.txt: [("'songs.", 'songs.')] LUH19170808-V09-32-page5.txt: [("'and", 'and')] LUH19170815-V09-33-page8.txt: [("'J.", 'J.')] LUH19170822-V09-34-page10.txt: [("'Courses", 'Courses')] LUH19170822-V09-34-page12.txt: [("'Present", 'Present')] LUH19170822-V09-34-page4.txt: [("'the", 'the')] LUH19170822-V09-34-page9.txt: [("'our", 'our')] LUH19170829-V09-35-page10.txt: [("'the", 'the')] LUH19170829-V09-35-page8.txt: [("'it", 'it')] LUH19170905-V09-36-page8.txt: [("'Entered", 'Entered')] LUH19170912-V09-37-page1.txt: [("'on", 'on')] LUH19170912-V09-37-page2.txt: [("'Master", 'Master'), ("'Lord", 'Lord')] LUH19170912-V09-37-page3.txt: [("'No", 'No'), ('\'"Go', '"Go')] LUH19170912-V09-37-page5.txt: [("'recently", 'recently'), ("'as", 'as')] LUH19170919-V09-38-page1.txt: [("'cannon", 'cannon')] LUH19170919-V09-38-page3.txt: [("'copy", 'copy')] LUH19170926-V09-39-page5.txt: [("'History", 'History')] LUH19170926-V09-39-page6.txt: [("'The", 'The')] LUH19171003-V09-40-page1.txt: [("'those", 'those')] LUH19171003-V09-40-page10.txt: [("'VOSS.", 'VOSS.')] LUH19171003-V09-40-page11.txt: [("'For", 'For'), ("'spoken", 'spoken')] LUH19171003-V09-40-page12.txt: [("'old", 'old'), ("'to", 'to')] LUH19171003-V09-40-page2.txt: [("'earnestness", 'earnestness')] LUH19171003-V09-40-page8.txt: [("'-St.", '-St.')] LUH19171010-V09-41-page2.txt: [("'noncombatant", 'noncombatant')] LUH19171010-V09-41-page3.txt: [("'This", 'This')] LUH19171010-V09-41-page4.txt: [("'quit", 'quit')] LUH19171010-V09-41-page5.txt: [("'on", 'on')] LUH19171010-V09-41-page7.txt: [("'fell", 'fell')] LUH19171010-V09-41-page8.txt: [("'Patton", 'Patton')] LUH19171017-V09-42-page1.txt: [("'is", 'is')] LUH19171017-V09-42-page2.txt: [("'I", 'I')] LUH19171017-V09-42-page3.txt: [("'Well", 'Well')] LUH19171024-V09-43-page11.txt: [("'away", 'away')] LUH19171024-V09-43-page2.txt: [("'No", 'No')] LUH19171024-V09-43-page4.txt: [("'I", 'I')] LUH19171024-V09-43-page5.txt: [("'Well", 'Well'), ("'Blithe", 'Blithe')] LUH19171024-V09-43-page6.txt: [("'liberal", 'liberal'), ("'rctal", 'rctal')] LUH19171024-V09-43-page8.txt: [("'do", 'do')] LUH19171024-V09-43-page9.txt: [("'twelve", 'twelve')] LUH19171031-V09-44-page1.txt: [("'I", 'I'), ("'Yes", 'Yes'), ("'Yes", 'Yes'), ("'Ask", 'Ask')] LUH19171031-V09-44-page3.txt: [("'UNION", 'UNION')] LUH19171031-V09-44-page4.txt: [("'Lundquist", 'Lundquist'), ("'had", 'had')] LUH19171031-V09-44-page7.txt: [("'kitchen", 'kitchen'), ("'we", 'we'), ("'They", 'They'), ("'enough", 'enough')] LUH19171031-V09-44-page8.txt: [("'PK", 'PK')] LUH19171107-V09-45-page5.txt: [("'Well", 'Well')] LUH19171107-V09-45-page7.txt: [("'to", 'to')] LUH19171114-V09-46-page1.txt: [("'secretaries", 'secretaries')] LUH19171114-V09-46-page2.txt: [("'t", 't'), ("'t.", 't.'), ("'t", 't'), ("'t.", 't.'), ("'t", 't')] LUH19171114-V09-46-page6.txt: [("'World", 'World')] LUH19171114-V09-46-page8.txt: [("'This", 'This'), ("'World", 'World')] LUH19171121-V09-47-page1.txt: [("'The", 'The')] LUH19171121-V09-47-page10.txt: [("'place", 'place')] LUH19171121-V09-47-page14.txt: [("'made", 'made')] LUH19171121-V09-47-page16.txt: [("'a", 'a'), ("'many", 'many')] LUH19171121-V09-47-page2.txt: [("'They", 'They'), ("'Oh", 'Oh'), ("'Are", 'Are'), ("'why", 'why')] LUH19171121-V09-47-page4.txt: [("'they", 'they')] LUH19171121-V09-47-page6.txt: [("'The", 'The'), ("'He", 'He')] LUH19171121-V09-47-page7.txt: [("'Why", 'Why'), ("'are", 'are')] LUH19171128-V09-48-page1.txt: [("'With", 'With')] LUH19171128-V09-48-page4.txt: [("'of", 'of')] LUH19171128-V09-48-page6.txt: [("'Bible", 'Bible')] LUH19171128-V09-48-page7.txt: [("'weeping", 'weeping'), ("'Patton", 'Patton')] LUH19171205-V09-49-page3.txt: [("'they", 'they')] LUH19171205-V09-49-page5.txt: [("'hanging", 'hanging')] LUH19171205-V09-49-page8.txt: [("'Patton", 'Patton')] LUH19171212-V09-50-page5.txt: [("'held", 'held')] LUH19171212-V09-50-page6.txt: [("'knows", 'knows')] LUH19171219-V09-51-page1.txt: [("'Each", 'Each'), ("'Tis", 'Tis'), ("'majority", 'majority')] LUH19171219-V09-51-page12.txt: [("'students", 'students'), ("'no", 'no')] LUH19171219-V09-51-page2.txt: [("'Q.", 'Q.')] LUH19171219-V09-51-page4.txt: [("'account", 'account'), ("'hope", 'hope')] LUH19171219-V09-51-page6.txt: [("'Bible", 'Bible')] LUH19171219-V09-51-page7.txt: [("'of", 'of')] LUH19171219-V09-51-page8.txt: [("'resident.", 'resident.')] LUH19171219-V09-51-page9.txt: [("'our", 'our')] LUH19180102-V10-01-page1.txt: [("'If", 'If')] LUH19180102-V10-01-page2.txt: [("'have", 'have')] LUH19180102-V10-01-page5.txt: [("'was", 'was')] LUH19180109-V10-02-page2.txt: [("'you", 'you')] LUH19180109-V10-02-page4.txt: [("'Too", 'Too'), ("'are", 'are')] LUH19180109-V10-02-page8.txt: [("'C.", 'C.')] LUH19180116-V10-03-page2.txt: [("'Total", 'Total')] LUH19180116-V10-03-page7.txt: [("'Naining", 'Naining')] LUH19180116-V10-03-page8.txt: [("'who", 'who')] LUH19180123-V10-04-page4.txt: [("'total", 'total')] LUH19180123-V10-04-page7.txt: [("'Jesus.", 'Jesus.')] LUH19180123-V10-04-page8.txt: [("'The", 'The'), ("'just", 'just')] LUH19180130-V10-05-page1.txt: [("'in", 'in')] LUH19180130-V10-05-page2.txt: [("'may", 'may'), ("'Well", 'Well')] LUH19180130-V10-05-page8.txt: [("'Testimonies", 'Testimonies'), ("'Mount", 'Mount'), ("'Steps", 'Steps')] LUH19180206-V10-06-page4.txt: [("'fourth", 'fourth')] LUH19180206-V10-06-page7.txt: [("'of", 'of')] LUH19180206-V10-06-page8.txt: [("'must", 'must')] LUH19180213-V10-07-page1.txt: [("'Berrien", 'Berrien'), ("'o", 'o')] LUH19180213-V10-07-page4.txt: [("'attend", 'attend')] LUH19180213-V10-07-page7.txt: [("'Go", 'Go')] LUH19180213-V10-07-page8.txt: [("'pending", 'pending')] LUH19180220-V10-08-page2.txt: [("'Every", 'Every')] LUH19180220-V10-08-page3.txt: [("'tis", 'tis')] LUH19180220-V10-08-page9.txt: [("'amount", 'amount')] LUH19180227-V10-09-page3.txt: [("'ring", 'ring')] LUH19180227-V10-09-page5.txt: [("'which", 'which')] LUH19180227-V10-09-page8.txt: [("'The", 'The'), ("'HERALD", 'HERALD')] LUH19180306-V10-10-page6.txt: [("'in", 'in')] LUH19180306-V10-10-page7.txt: [("'the", 'the')] LUH19180313-V10-11-page1.txt: [("'I", 'I')] LUH19180313-V10-11-page2.txt: [("'getting", 'getting')] LUH19180313-V10-11-page5.txt: [("'delegates", 'delegates')] LUH19180320-V10-12-page1.txt: [("'answer", 'answer')] LUH19180320-V10-12-page3.txt: [("'serving", 'serving')] LUH19180320-V10-12-page8.txt: [("'OD", 'OD')] LUH19180327-V10-13-page3.txt: [("'with", 'with')] LUH19180327-V10-13-page5.txt: [("'Heralds", 'Heralds'), ('\'"', '"'), ("'be", 'be'), ("'a", 'a'), ("'be", 'be')] LUH19180327-V10-13-page7.txt: [("'Patton", 'Patton')] LUH19180327-V10-13-page8.txt: [("'and", 'and')] LUH19180403-V10-14-page4.txt: [("'Oh", 'Oh')] LUH19180403-V10-14-page6.txt: [("'a", 'a')] LUH19180403-V10-14-page7.txt: [("'our", 'our')] LUH19180410-V10-15-page1.txt: [("'that", 'that'), ("'Sabbath", 'Sabbath')] LUH19180410-V10-15-page3.txt: [("'s", 's'), ("'s", 's')] LUH19180410-V10-15-page8.txt: [("'May.", 'May.')] LUH19180417-V10-16-page5.txt: [("'Elnora", 'Elnora')] LUH19180417-V10-16-page6.txt: [("'Son", 'Son')] LUH19180424-V10-17-page1.txt: [("'reach", 'reach')] LUH19180424-V10-17-page2.txt: [("'Plenty", 'Plenty')] LUH19180424-V10-17-page3.txt: [("'St.", 'St.')] LUH19180501-V10-18-page1.txt: [("'to", 'to')] LUH19180501-V10-18-page4.txt: [("'Total", 'Total')] LUH19180508-V10-19-page1.txt: [("'An", 'An')] LUH19180508-V10-19-page3.txt: [("'many", 'many')] LUH19180508-V10-19-page8.txt: [("'Patton", 'Patton')] LUH19180515-V10-20-page3.txt: [("'Are", 'Are'), ("'They", 'They'), ("'I", 'I'), ("'This", 'This')] LUH19180515-V10-20-page4.txt: [("'We", 'We'), ("'now", 'now')] LUH19180515-V10-20-page5.txt: [("'six", 'six'), ("'present", 'present'), ("'and", 'and')] LUH19180522-V10-21-page3.txt: [("'twenty", 'twenty')] LUH19180522-V10-21-page5.txt: [("'celebrated.", 'celebrated.')] LUH19180522-V10-21-page6.txt: [("'is", 'is'), ("'Secrelary", 'Secrelary')] LUH19180522-V10-21-page7.txt: [("'war", 'war')] LUH19180529-V10-22-page1.txt: [("'as", 'as')] LUH19180529-V10-22-page3.txt: [("'Well", 'Well'), ("'World", 'World'), ("'Christian", 'Christian'), ("'I", 'I')] LUH19180529-V10-22-page4.txt: [("'greatly", 'greatly'), ("'Carterville", 'Carterville')] LUH19180529-V10-22-page6.txt: [("'Andross", 'Andross')] LUH19180529-V10-22-page7.txt: [("'for", 'for')] LUH19180605-V10-23-page5.txt: [("'hard", 'hard')] LUH19180605-V10-23-page6.txt: [("'push", 'push')] LUH19180605-V10-23-page7.txt: [("'from", 'from')] LUH19180612-V10-24-page3.txt: [("'day.", 'day.')] LUH19180612-V10-24-page4.txt: [("'Bible", 'Bible'), ("'the", 'the'), ("'Bible", 'Bible'), ("'Our", 'Our'), ("'Our", 'Our'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Our", 'Our')] LUH19180612-V10-24-page6.txt: [("'than", 'than')] LUH19180619-V10-25-page1.txt: [("'Tis", 'Tis')] LUH19180619-V10-25-page5.txt: [("'new", 'new')] LUH19180626-V10-26-page4.txt: [("'That's", 'Thats')] LUH19180626-V10-26-page5.txt: [("'the", 'the')] LUH19180626-V10-26-page7.txt: [("'Myr", 'Myr')] LUH19180703-V10-27-page2.txt: [("'number", 'number')] LUH19180703-V10-27-page4.txt: [("'Since", 'Since')] LUH19180703-V10-27-page5.txt: [("'How", 'How'), ("'What", 'What'), ("'Our", 'Our'), ("'I", 'I'), ("'That", 'That')] LUH19180703-V10-27-page6.txt: [("'staying", 'staying'), ("'rime", 'rime'), ("'rime", 'rime')] LUH19180703-V10-27-page8.txt: [("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19180710-V10-28-page1.txt: [("'hid", 'hid'), ("'hid", 'hid')] LUH19180710-V10-28-page10.txt: [("'Tis", 'Tis')] LUH19180710-V10-28-page11.txt: [("'After", 'After'), ("'lessons", 'lessons')] LUH19180710-V10-28-page5.txt: [("'churches", 'churches')] LUH19180710-V10-28-page7.txt: [("'a", 'a')] LUH19180717-V10-29-page1.txt: [("'twere", 'twere')] LUH19180717-V10-29-page8.txt: [("'the", 'the')] LUH19180724-V10-30-page12.txt: [("'S", 'S')] LUH19180724-V10-30-page4.txt: [("'I", 'I')] LUH19180724-V10-30-page6.txt: [("'I", 'I'), ("'our", 'our')] LUH19180724-V10-30-page7.txt: [('\'"', '"')] LUH19180731-V10-31-page1.txt: [("'It", 'It'), ("'Look", 'Look'), ("'Thy", 'Thy'), ("'The", 'The'), ("'Thy", 'Thy'), ("'Twixt", 'Twixt'), ("'The", 'The')] LUH19180731-V10-31-page2.txt: [("'Sheets.", 'Sheets.')] LUH19180731-V10-31-page3.txt: [("'This", 'This'), ("'families", 'families')] LUH19180807-V10-32-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19180807-V10-32-page3.txt: [("'youth", 'youth'), ("'quite", 'quite')] LUH19180807-V10-32-page4.txt: [("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19180807-V10-32-page6.txt: [("'quarter", 'quarter'), ("'rolling", 'rolling'), ("'Bible", 'Bible'), ("'Best", 'Best')] LUH19180807-V10-32-page7.txt: [("'revised", 'revised')] LUH19180807-V10-32-page8.txt: [("'in", 'in'), ("'the", 'the')] LUH19180814-V10-33-page1.txt: [("'have", 'have'), ("'millions", 'millions')] LUH19180814-V10-33-page11.txt: [("'to", 'to')] LUH19180814-V10-33-page12.txt: [("'God", 'God'), ("'twenty-six", 'twenty-six')] LUH19180814-V10-33-page13.txt: [("'are", 'are'), ("'me", 'me'), ("'our", 'our')] LUH19180814-V10-33-page15.txt: [("'OD", 'OD'), ("'OD", 'OD')] LUH19180814-V10-33-page16.txt: [("'great", 'great')] LUH19180814-V10-33-page3.txt: [("'boarding", 'boarding')] LUH19180814-V10-33-page6.txt: [("'an", 'an'), ("'Thanks", 'Thanks')] LUH19180814-V10-33-page7.txt: [("'He", 'He'), ("'God", 'God'), ("'for", 'for'), ("'Guess", 'Guess')] LUH19180814-V10-33-page8.txt: [("'rest", 'rest'), ("'be", 'be'), ("'I", 'I'), ("'I've", 'Ive'), ("'I'll", 'Ill'), ("'Boys", 'Boys'), ("'Well", 'Well')] LUH19180814-V10-33-page9.txt: [("'We", 'We')] LUH19180821-V10-34-page1.txt: [("'Tis", 'Tis')] LUH19180821-V10-34-page3.txt: [("'took", 'took')] LUH19180821-V10-34-page5.txt: [("'churches", 'churches')] LUH19180821-V10-34-page6.txt: [("'L", 'L'), ("'Perre", 'Perre')] LUH19180821-V10-34-page7.txt: [("'Southern", 'Southern')] LUH19180821-V10-34-page8.txt: [("'meet", 'meet')] LUH19180828-V10-35-page1.txt: [("'but", 'but')] LUH19180828-V10-35-page2.txt: [("'every", 'every')] LUH19180828-V10-35-page3.txt: [("'a", 'a')] LUH19180828-V10-35-page4.txt: [("'roof", 'roof'), ("'World", 'World'), ("'Mr.", 'Mr.')] LUH19180828-V10-35-page5.txt: [("'Every", 'Every'), ("'that", 'that')] LUH19180828-V10-35-page6.txt: [("'building", 'building')] LUH19180828-V10-35-page7.txt: [("'Hicks", 'Hicks'), ("'and", 'and')] LUH19180828-V10-35-page8.txt: [("'not", 'not'), ("'August", 'August')] LUH19180904-V10-36-page3.txt: [("'that", 'that')] LUH19180904-V10-36-page7.txt: [("'good", 'good')] LUH19180904-V10-36-page8.txt: [("'reaches", 'reaches'), ("'conference", 'conference')] LUH19180911-V10-37-page1.txt: [("'end", 'end')] LUH19180911-V10-37-page12.txt: [("'cif", 'cif')] LUH19180911-V10-37-page2.txt: [("'no", 'no')] LUH19180911-V10-37-page3.txt: [("'La", 'La')] LUH19180911-V10-37-page4.txt: [("'Bible", 'Bible')] LUH19180911-V10-37-page5.txt: [("'few", 'few')] LUH19180911-V10-37-page6.txt: [("'and", 'and')] LUH19180911-V10-37-page8.txt: [("'young", 'young')] LUH19180918-V10-38-page1.txt: [("'we", 'we')] LUH19180918-V10-38-page3.txt: [("'received", 'received')] LUH19180918-V10-38-page4.txt: [("'nearly", 'nearly')] LUH19180918-V10-38-page5.txt: [("'at", 'at')] LUH19180918-V10-38-page6.txt: [("'or", 'or')] LUH19180918-V10-38-page7.txt: [("'and", 'and')] LUH19180918-V10-38-page8.txt: [("'by", 'by')] LUH19180925-V10-39-page3.txt: [("'us", 'us')] LUH19180925-V10-39-page4.txt: [("'Her", 'Her')] LUH19180925-V10-39-page7.txt: [("'all", 'all'), ("'forward", 'forward'), ("'cause", 'cause')] LUH19181002-V10-40-page10.txt: [("'wil", 'wil')] LUH19181002-V10-40-page15.txt: [("'for", 'for'), ("'work", 'work')] LUH19181002-V10-40-page16.txt: [("'Tis", 'Tis')] LUH19181009-V10-41-page1.txt: [("'word", 'word')] LUH19181009-V10-41-page2.txt: [("'Reese", 'Reese')] LUH19181009-V10-41-page3.txt: [("'Sabbath", 'Sabbath'), ("'conference", 'conference'), ("'services", 'services')] LUH19181009-V10-41-page6.txt: [("'the", 'the'), ("'Grace", 'Grace')] LUH19181009-V10-41-page7.txt: [("'Farmington", 'Farmington')] LUH19181016-V10-42-page1.txt: [("'Master", 'Master')] LUH19181016-V10-42-page2.txt: [("'the", 'the'), ("'theology", 'theology'), ("'the", 'the')] LUH19181016-V10-42-page5.txt: [("'in", 'in')] LUH19181016-V10-42-page7.txt: [("'Be", 'Be')] LUH19181016-V10-42-page9.txt: [("'school", 'school')] LUH19181023-V10-43-page3.txt: [("'and", 'and'), ("'week.", 'week.')] LUH19181023-V10-43-page4.txt: [("'I", 'I')] LUH19181023-V10-43-page5.txt: [("'writer.", 'writer.'), ("'out", 'out')] LUH19181023-V10-43-page7.txt: [("'Well", 'Well'), ("'Sabbath.", 'Sabbath.')] LUH19181030-V10-44-page7.txt: [("'Indiana", 'Indiana')] LUH19181106-V10-45-page1.txt: [("'and", 'and')] LUH19181106-V10-45-page2.txt: [("'I", 'I')] LUH19181106-V10-45-page5.txt: [("'want", 'want')] LUH19181106-V10-45-page6.txt: [("'though", 'though')] LUH19181106-V10-45-page8.txt: [("'school", 'school')] LUH19181113-V10-46-page2.txt: [("'Arise", 'Arise'), ("'Sell", 'Sell')] LUH19181113-V10-46-page3.txt: [("'carried", 'carried')] LUH19181113-V10-46-page4.txt: [("'mercy", 'mercy')] LUH19181113-V10-46-page5.txt: [("'a", 'a')] LUH19181113-V10-46-page6.txt: [("'that", 'that')] LUH19181113-V10-46-page7.txt: [("'school.", 'school.'), ("'for", 'for')] LUH19181113-V10-46-page8.txt: [("'and", 'and')] LUH19181120-V10-47-page1.txt: [("'a", 'a')] LUH19181120-V10-47-page11.txt: [("'Del", 'Del')] LUH19181120-V10-47-page5.txt: [("'God", 'God')] LUH19181120-V10-47-page8.txt: [("'book", 'book'), ("'That", 'That')] LUH19181127-V10-48-page3.txt: [("'your", 'your'), ("'A.", 'A.')] LUH19181127-V10-48-page4.txt: [("'Eleventh", 'Eleventh'), ("'believer", 'believer')] LUH19181127-V10-48-page5.txt: [("'innumerable", 'innumerable')] LUH19181127-V10-48-page6.txt: [("'member", 'member'), ("'Educational", 'Educational'), ("'do", 'do'), ("'be", 'be'), ("'swell", 'swell')] LUH19181127-V10-48-page7.txt: [("'County.", 'County.')] LUH19181204-V10-49-page10.txt: [("'Dotal", 'Dotal')] LUH19181204-V10-49-page11.txt: [("'urge", 'urge'), ("'His", 'His'), ("'many", 'many')] LUH19181204-V10-49-page3.txt: [("'turned", 'turned'), ("'open", 'open')] LUH19181204-V10-49-page4.txt: [("'ever", 'ever'), ("'But", 'But'), ("'the", 'the')] LUH19181204-V10-49-page5.txt: [("'of", 'of')] LUH19181204-V10-49-page8.txt: [("'HARRIS", 'HARRIS')] LUH19181204-V10-49-page9.txt: [("'tarries", 'tarries')] LUH19181211-V10-50-page3.txt: [("'of", 'of'), ("'office", 'office')] LUH19181211-V10-50-page5.txt: [("'I", 'I')] LUH19181211-V10-50-page6.txt: [("'other", 'other')] LUH19181211-V10-50-page7.txt: [("'Katherine", 'Katherine')] LUH19181218-V10-51-page1.txt: [("'neath", 'neath')] LUH19181218-V10-51-page3.txt: [("'them", 'them'), ("'together.", 'together.')] LUH19181218-V10-51-page4.txt: [("'Our", 'Our')] LUH19181218-V10-51-page5.txt: [("'Union", 'Union')] LUH19181218-V10-51-page7.txt: [("'S'hould", 'Should'), ("'aged", 'aged')] LUH19190101-V11-01-page1.txt: [("'twixt", 'twixt')] LUH19190101-V11-01-page2.txt: [('\'.cord."', '.cord."')] LUH19190101-V11-01-page4.txt: [("'New", 'New')] LUH19190101-V11-01-page5.txt: [("'to", 'to')] LUH19190108-V11-02-page2.txt: [("'Our", 'Our')] LUH19190108-V11-02-page3.txt: [("'Our", 'Our')] LUH19190108-V11-02-page5.txt: [("'s", 's')] LUH19190108-V11-02-page8.txt: [("'I", 'I'), ("'You", 'You')] LUH19190115-V11-03-page6.txt: [("'of", 'of')] LUH19190115-V11-03-page8.txt: [("'r", 'r')] LUH19190122-V11-04-page10.txt: [("'shut", 'shut')] LUH19190122-V11-04-page13.txt: [("'aggressive", 'aggressive')] LUH19190122-V11-04-page16.txt: [("'Our", 'Our')] LUH19190122-V11-04-page2.txt: [("'.", '.')] LUH19190122-V11-04-page3.txt: [("'Help", 'Help')] LUH19190122-V11-04-page4.txt: [("'united", 'united')] LUH19190122-V11-04-page7.txt: [("'more", 'more')] LUH19190122-V11-04-page8.txt: [("'their", 'their')] LUH19190129-V11-05-page2.txt: [("'That", 'That'), ("'days", 'days')] LUH19190129-V11-05-page3.txt: [("'the", 'the')] LUH19190129-V11-05-page5.txt: [("'The", 'The')] LUH19190129-V11-05-page6.txt: [("'And", 'And')] LUH19190129-V11-05-page7.txt: [("'What", 'What')] LUH19190129-V11-05-page8.txt: [("'News", 'News'), ("'We", 'We'), ("'Well", 'Well'), ("'The", 'The')] LUH19190205-V11-06-page2.txt: [("'the", 'the')] LUH19190205-V11-06-page3.txt: [("'the", 'the'), ("'remember", 'remember')] LUH19190205-V11-06-page4.txt: [("'UNION", 'UNION')] LUH19190205-V11-06-page6.txt: [("'Soul.", 'Soul.')] LUH19190205-V11-06-page7.txt: [("'farm", 'farm'), ("'Cedar", 'Cedar')] LUH19190212-V11-07-page1.txt: [("'Why", 'Why'), ("'what", 'what'), ("'Look", 'Look')] LUH19190212-V11-07-page11.txt: [("'pamphlets", 'pamphlets'), ("'Mr.", 'Mr.')] LUH19190212-V11-07-page2.txt: [("'Arise", 'Arise')] LUH19190212-V11-07-page3.txt: [("'going", 'going')] LUH19190212-V11-07-page4.txt: [("'UNION", 'UNION'), ("'this", 'this')] LUH19190212-V11-07-page5.txt: [("'looks", 'looks')] LUH19190212-V11-07-page6.txt: [("'is", 'is'), ("'have", 'have')] LUH19190212-V11-07-page7.txt: [("'telephoned", 'telephoned')] LUH19190212-V11-07-page8.txt: [("'enter", 'enter'), ("'rendered", 'rendered')] LUH19190212-V11-07-page9.txt: [("'At", 'At'), ("'us", 'us')] LUH19190219-V11-08-page11.txt: [("'arrived", 'arrived'), ("'Lord's", 'Lords')] LUH19190219-V11-08-page12.txt: [("'Lift", 'Lift'), ("'when", 'when')] LUH19190219-V11-08-page13.txt: [("'remarked", 'remarked'), ("'and", 'and'), ("'became", 'became'), ("'This", 'This')] LUH19190219-V11-08-page14.txt: [("'A", 'A'), ("'What", 'What'), ("'Giving", 'Giving'), ("'is", 'is'), ("'In", 'In')] LUH19190219-V11-08-page16.txt: [("'The", 'The'), ("'The", 'The'), ("'A", 'A')] LUH19190219-V11-08-page4.txt: [("'In", 'In'), ("'.That", '.That'), ("'Otir", 'Otir')] LUH19190219-V11-08-page7.txt: [("'truth", 'truth'), ("'The", 'The')] LUH19190219-V11-08-page8.txt: [("'Bout", 'Bout')] LUH19190219-V11-08-page9.txt: [("'offer", 'offer'), ("'The", 'The')] LUH19190226-V11-09-page1.txt: [("'fields.", 'fields.'), ("'Counsel", 'Counsel')] LUH19190226-V11-09-page12.txt: [("'i", 'i')] LUH19190226-V11-09-page2.txt: [("'band", 'band')] LUH19190226-V11-09-page6.txt: [("'presented", 'presented'), ("'attention.", 'attention.')] LUH19190226-V11-09-page7.txt: [("'we", 'we')] LUH19190226-V11-09-page9.txt: [("'are", 'are')] LUH19190305-V11-10-page7.txt: [("'sermon", 'sermon')] LUH19190305-V11-10-page8.txt: [("'He", 'He')] LUH19190312-V11-11-page10.txt: [("'to", 'to')] LUH19190312-V11-11-page12.txt: [("'Milton", 'Milton'), ("'organizing.", 'organizing.')] LUH19190312-V11-11-page13.txt: [("'Bible", 'Bible'), ("'If", 'If')] LUH19190312-V11-11-page15.txt: [("'where", 'where')] LUH19190312-V11-11-page3.txt: [("'the", 'the'), ("'Perfection", 'Perfection')] LUH19190312-V11-11-page4.txt: [("'I", 'I')] LUH19190312-V11-11-page5.txt: [("'good", 'good')] LUH19190312-V11-11-page7.txt: [("'grieved", 'grieved'), ("'from", 'from')] LUH19190312-V11-11-page8.txt: [("'he", 'he')] LUH19190312-V11-11-page9.txt: [("'Behold", 'Behold')] LUH19190319-V11-12-page10.txt: [("'of", 'of'), ("'World", 'World'), ("'Practical", 'Practical')] LUH19190319-V11-12-page12.txt: [("'caring", 'caring')] LUH19190319-V11-12-page2.txt: [("'Come", 'Come'), ("'Go", 'Go'), ("'tis", 'tis'), ("'Asst.", 'Asst.')] LUH19190319-V11-12-page3.txt: [("'can", 'can'), ("'the", 'the'), ("'alloW", 'alloW'), ("'very", 'very'), ("'Christ.", 'Christ.'), ("'.", '.'), ("'have", 'have')] LUH19190319-V11-12-page5.txt: [("'these", 'these')] LUH19190319-V11-12-page6.txt: [("'farm", 'farm'), ("'we", 'we'), ('\'ConStitutiori."', 'ConStitutiori."'), ("'bill.", 'bill.')] LUH19190319-V11-12-page7.txt: [("'made", 'made'), ("'Colporteurs", 'Colporteurs')] LUH19190326-V11-13-page10.txt: [("'to", 'to')] LUH19190326-V11-13-page11.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19190326-V11-13-page2.txt: [("'The", 'The')] LUH19190326-V11-13-page3.txt: [("'finds", 'finds')] LUH19190326-V11-13-page4.txt: [("'do", 'do'), ("'the", 'the'), ("'conference", 'conference'), ("'number", 'number'), ("'the", 'the'), ("'the", 'the'), ("'also", 'also'), ("'a", 'a'), ("'a", 'a'), ("'and", 'and'), ("'several", 'several'), ("'of.", 'of.'), ("'more", 'more'), ("'we", 'we'), ("'One", 'One'), ("'We", 'We'), ("'extent", 'extent'), ("'training", 'training')] LUH19190326-V11-13-page5.txt: [("'head", 'head'), ("'be", 'be'), ("'When", 'When'), ("'room", 'room'), ("'school", 'school'), ("'Of", 'Of'), ("'Say", 'Say'), ("'Fourteen", 'Fourteen'), ("'Of", 'Of'), ("'wortietes", 'wortietes'), ("'where", 'where'), ("'ffie", 'ffie'), ("'a", 'a'), ("'before", 'before'), ("'days", 'days'), ("'the", 'the'), ("'more", 'more'), ("'rooms", 'rooms')] LUH19190326-V11-13-page7.txt: [("'question", 'question')] LUH19190326-V11-13-page8.txt: [("'distributing", 'distributing'), ("'Albert", 'Albert'), ("'Superior.", 'Superior.'), ("'est", 'est')] LUH19190326-V11-13-page9.txt: [("'We", 'We'), ("'Swedish", 'Swedish'), ("'and", 'and'), ("'few", 'few'), ("'faculty", 'faculty'), ("'training", 'training'), ("'full", 'full'), ("'a", 'a')] LUH19190402-V11-14-page12.txt: [("'achievements", 'achievements')] LUH19190402-V11-14-page13.txt: [("'tithe", 'tithe')] LUH19190402-V11-14-page14.txt: [("'.", '.')] LUH19190402-V11-14-page4.txt: [("'our", 'our'), ("'conditions", 'conditions')] LUH19190402-V11-14-page6.txt: [("'Miss", 'Miss')] LUH19190402-V11-14-page7.txt: [("'Tis", 'Tis')] LUH19190409-V11-15-page10.txt: [("'MisS.Ktose", 'MisS.Ktose'), ("'Please", 'Please')] LUH19190409-V11-15-page3.txt: [("'turning", 'turning'), ("'All", 'All')] LUH19190409-V11-15-page4.txt: [("'I", 'I'), ("'Come", 'Come')] LUH19190409-V11-15-page7.txt: [("'papers", 'papers')] LUH19190409-V11-15-page8.txt: [("'of", 'of'), ("'learned", 'learned'), ("'to", 'to')] LUH19190409-V11-15-page9.txt: [("'and", 'and')] LUH19190416-V11-16-page10.txt: [("'Lord", 'Lord'), ("'Coming", 'Coming')] LUH19190416-V11-16-page4.txt: [("'does", 'does'), ("'Why", 'Why'), ("'may", 'may')] LUH19190416-V11-16-page5.txt: [("'the", 'the'), ("'has", 'has')] LUH19190416-V11-16-page7.txt: [("'other", 'other'), ("'of", 'of'), ("'Student", 'Student'), ("'comes", 'comes')] LUH19190416-V11-16-page8.txt: [("'institute.", 'institute.')] LUH19190416-V11-16-page9.txt: [("''Prophets", 'Prophets'), ("'the", 'the')] LUH19190423-V11-17-page10.txt: [("'From", 'From')] LUH19190423-V11-17-page12.txt: [("'.", '.')] LUH19190423-V11-17-page16.txt: [("'Master", 'Master'), ("'whole", 'whole'), ("'You", 'You'), ("'Yes", 'Yes'), ("'And", 'And'), ("'Oh", 'Oh'), ("'Well", 'Well'), ("'Well", 'Well'), ("'Yes", 'Yes'), ("'what", 'what'), ("'Gabriel", 'Gabriel'), ("'read", 'read')] LUH19190423-V11-17-page2.txt: [("'ample", 'ample'), ("'Come", 'Come')] LUH19190423-V11-17-page6.txt: [("'accomplished", 'accomplished')] LUH19190423-V11-17-page7.txt: [("'ourselves", 'ourselves'), ("'were", 'were')] LUH19190423-V11-17-page8.txt: [("'church", 'church'), ("'formerly", 'formerly')] LUH19190430-V11-18-page1.txt: [("'Surely", 'Surely')] LUH19190430-V11-18-page2.txt: [("'were", 'were'), ("'the", 'the')] LUH19190430-V11-18-page4.txt: [("'prayer", 'prayer'), ("'finished", 'finished')] LUH19190430-V11-18-page7.txt: [("'World", 'World')] LUH19190507-V11-19-page12.txt: [("''A", 'A'), ("'the", 'the')] LUH19190507-V11-19-page2.txt: [("'the", 'the')] LUH19190507-V11-19-page5.txt: [("'getting", 'getting')] LUH19190507-V11-19-page8.txt: [("'Our", 'Our')] LUH19190514-V11-20-page3.txt: [("'Could", 'Could'), ("'Bible", 'Bible'), ("'About", 'About'), ("'Our", 'Our'), ("'Bible", 'Bible'), ("'Well", 'Well'), ("'Well", 'Well')] LUH19190514-V11-20-page5.txt: [("'UNION", 'UNION')] LUH19190514-V11-20-page6.txt: [("'Academy", 'Academy')] LUH19190521-V11-21-page3.txt: [('\'"Daniel', '"Daniel')] LUH19190521-V11-21-page5.txt: [("'they", 'they'), ("'her", 'her'), ("'Mt.", 'Mt.')] LUH19190521-V11-21-page8.txt: [("'Past", 'Past')] LUH19190528-V11-22-page1.txt: [("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'six", 'six')] LUH19190528-V11-22-page11.txt: [("'Signs", 'Signs'), ("'You", 'You')] LUH19190528-V11-22-page2.txt: [("'and", 'and'), ("'things", 'things')] LUH19190528-V11-22-page3.txt: [("'Saved", 'Saved'), ("'life.", 'life.'), ("'Is", 'Is'), ("'thousands", 'thousands')] LUH19190528-V11-22-page4.txt: [("'waiting", 'waiting'), ("'Many", 'Many')] LUH19190528-V11-22-page5.txt: [('\'large."', 'large."'), ("'their", 'their')] LUH19190528-V11-22-page6.txt: [("'UNION", 'UNION'), ("'Bible", 'Bible'), ("'World", 'World')] LUH19190604-V11-23-page11.txt: [("'meeting.", 'meeting.'), ("'I'll", 'Ill'), ("'I", 'I')] LUH19190604-V11-23-page3.txt: [("'What", 'What'), ("'a", 'a')] LUH19190604-V11-23-page4.txt: [("'for", 'for'), ("'by", 'by')] LUH19190604-V11-23-page8.txt: [("'World", 'World'), ("'Medical", 'Medical'), ("'represented", 'represented')] LUH19190604-V11-23-page9.txt: [("'e", 'e')] LUH19190611-V11-24-page1.txt: [("'Twixt", 'Twixt')] LUH19190611-V11-24-page11.txt: [("'On", 'On')] LUH19190611-V11-24-page2.txt: [("'Ed.", 'Ed.'), ("'look", 'look')] LUH19190611-V11-24-page3.txt: [("'Second", 'Second'), ("'told", 'told'), ("'Third", 'Third'), ("'Fourth", 'Fourth'), ("'Fifth", 'Fifth'), ("'Brethren", 'Brethren'), ("'Oh", 'Oh'), ("'All", 'All'), ("'I", 'I'), ("'Spell", 'Spell'), ("'Well", 'Well'), ("'First", 'First'), ("'I", 'I'), ("'stand", 'stand')] LUH19190611-V11-24-page4.txt: [("'of", 'of'), ("'His", 'His')] LUH19190611-V11-24-page6.txt: [("'I", 'I'), ("'Well", 'Well')] LUH19190611-V11-24-page9.txt: [("'will", 'will'), ("'will", 'will')] LUH19190618-V11-25-page10.txt: [("'observed", 'observed'), ("'should", 'should')] LUH19190618-V11-25-page11.txt: [("'LAKE", 'LAKE'), ("'UNION", 'UNION')] LUH19190618-V11-25-page12.txt: [("'Prepared", 'Prepared')] LUH19190618-V11-25-page3.txt: [("'has", 'has'), ("'therefore", 'therefore'), ("'I", 'I')] LUH19190618-V11-25-page4.txt: [("'Are", 'Are'), ("'into", 'into'), ("'that", 'that'), ("'Sabbath", 'Sabbath'), ("'interesting", 'interesting'), ("'the", 'the'), ("'for", 'for'), ("'the", 'the')] LUH19190618-V11-25-page5.txt: [("'including", 'including'), ("'held", 'held')] LUH19190618-V11-25-page6.txt: [("'plans", 'plans')] LUH19190618-V11-25-page7.txt: [("'per", 'per'), ("'carried", 'carried')] LUH19190618-V11-25-page8.txt: [("'World", 'World'), ("'Workers", 'Workers')] LUH19190618-V11-25-page9.txt: [("'for", 'for'), ("'message.", 'message.'), ("'Chicago", 'Chicago'), ("'Neenah", 'Neenah')] LUH19190625-V11-26-page5.txt: [("'the", 'the')] LUH19190625-V11-26-page6.txt: [("'Practical", 'Practical')] LUH19190625-V11-26-page7.txt: [("'investigating", 'investigating')] LUH19190625-V11-26-page8.txt: [("'service.", 'service.')] LUH19190702-V11-27-page1.txt: [("'the", 'the'), ("'on", 'on'), ("'acres", 'acres'), ("'Liberty", 'Liberty'), ("'do", 'do')] LUH19190702-V11-27-page4.txt: [("'of", 'of')] LUH19190702-V11-27-page5.txt: [("'will", 'will'), ("'conference", 'conference')] LUH19190702-V11-27-page6.txt: [("'He", 'He')] LUH19190702-V11-27-page8.txt: [("'The", 'The')] LUH19190709-V11-28-page3.txt: [("'But", 'But'), ("'the", 'the'), ("'us", 'us')] LUH19190709-V11-28-page5.txt: [("'.'the", '.the')] LUH19190709-V11-28-page6.txt: [("'Great", 'Great')] LUH19190709-V11-28-page7.txt: [("'lady", 'lady')] LUH19190709-V11-28-page8.txt: [("'em", 'em'), ("'o", 'o'), ("'em", 'em'), ("'one", 'one')] LUH19190716-V11-29-page4.txt: [("'But", 'But')] LUH19190716-V11-29-page5.txt: [("'forgetting", 'forgetting'), ("'defeated", 'defeated')] LUH19190723-V11-30-page1.txt: [("'Twixt", 'Twixt')] LUH19190723-V11-30-page10.txt: [("'thus", 'thus'), ("'small", 'small'), ("'Imlay", 'Imlay')] LUH19190723-V11-30-page12.txt: [("'Come", 'Come')] LUH19190723-V11-30-page13.txt: [("'Freely", 'Freely')] LUH19190723-V11-30-page14.txt: [("'I", 'I'), ("'Yes", 'Yes')] LUH19190723-V11-30-page8.txt: [("'n", 'n'), ("'Pithe", 'Pithe'), ("'boys", 'boys')] LUH19190730-V11-31-page1.txt: [("'Whatsoever", 'Whatsoever')] LUH19190730-V11-31-page2.txt: [("'second-class", 'second-class'), ("'members", 'members')] LUH19190730-V11-31-page6.txt: [("'no", 'no'), ("'Knapp", 'Knapp')] LUH19190730-V11-31-page7.txt: [("'held", 'held'), ("'haVe", 'haVe')] LUH19190730-V11-31-page9.txt: [("'s", 's')] LUH19190806-V11-32-page10.txt: [("'BR", 'BR')] LUH19190806-V11-32-page11.txt: [("'over", 'over'), ("'anxious", 'anxious'), ("'God", 'God')] LUH19190806-V11-32-page12.txt: [("'with", 'with')] LUH19190806-V11-32-page2.txt: [("'enjoy", 'enjoy'), ("'a", 'a')] LUH19190806-V11-32-page3.txt: [("'wagons", 'wagons')] LUH19190806-V11-32-page7.txt: [("'A", 'A'), ("'although", 'although')] LUH19190813-V11-33-page1.txt: [("'a", 'a'), ("'d", 'd'), ("''p", 'p')] LUH19190813-V11-33-page11.txt: [("'good", 'good'), ("'Winter.", 'Winter.'), ("'OD", 'OD')] LUH19190813-V11-33-page2.txt: [("'Lake", 'Lake'), ("'Seventh", 'Seventh'), ("'done", 'done'), ("'an", 'an'), ("'take.", 'take.'), ("'A", 'A'), ("'Rooms", 'Rooms'), ("'for", 'for')] LUH19190813-V11-33-page3.txt: [("'this", 'this')] LUH19190813-V11-33-page4.txt: [("'in", 'in'), ("'hours", 'hours')] LUH19190813-V11-33-page6.txt: [("'of", 'of')] LUH19190820-V11-34-page12.txt: [("'Jorgenson", 'Jorgenson')] LUH19190820-V11-34-page13.txt: [("'Russian", 'Russian')] LUH19190820-V11-34-page2.txt: [("'Elder", 'Elder'), ("'providing", 'providing')] LUH19190820-V11-34-page4.txt: [("'more", 'more')] LUH19190820-V11-34-page6.txt: [("'when", 'when')] LUH19190820-V11-34-page8.txt: [("'meeting", 'meeting')] LUH19190827-V11-35-page10.txt: [("'opportunity", 'opportunity')] LUH19190827-V11-35-page15.txt: [("'I", 'I')] LUH19190827-V11-35-page3.txt: [("'I", 'I'), ("'following", 'following')] LUH19190827-V11-35-page4.txt: [("'arrange", 'arrange'), ("'Of", 'Of'), ("'the", 'the'), ("'may", 'may'), ("'In", 'In')] LUH19190827-V11-35-page5.txt: [("'thousand", 'thousand')] LUH19190827-V11-35-page9.txt: [("'Have", 'Have'), ("'You", 'You')] LUH19190903-V11-36-page1.txt: [("'gig", 'gig'), ("'think", 'think')] LUH19190903-V11-36-page10.txt: [("'Appeal", 'Appeal'), ("'out", 'out')] LUH19190903-V11-36-page13.txt: [("'new", 'new')] LUH19190903-V11-36-page15.txt: [("'and", 'and')] LUH19190903-V11-36-page4.txt: [("'thousand", 'thousand')] LUH19190903-V11-36-page6.txt: [("'may", 'may')] LUH19190903-V11-36-page7.txt: [("'and", 'and')] LUH19190910-V11-37-page12.txt: [("'the", 'the'), ("'Tell", 'Tell')] LUH19190910-V11-37-page2.txt: [("'be", 'be'), ("'and", 'and')] LUH19190910-V11-37-page3.txt: [("'our", 'our')] LUH19190910-V11-37-page4.txt: [("'One", 'One'), ("'How", 'How'), ("'As", 'As')] LUH19190910-V11-37-page6.txt: [("'Thy", 'Thy')] LUH19190917-V11-38-page11.txt: [("'will", 'will')] LUH19190917-V11-38-page7.txt: [("'a", 'a')] LUH19190917-V11-38-page8.txt: [("'give", 'give'), ("'reading", 'reading'), ("'Daniel", 'Daniel')] LUH19190917-V11-38-page9.txt: [("'The", 'The')] LUH19190924-V11-39-page10.txt: [("'Associatibn", 'Associatibn')] LUH19190924-V11-39-page2.txt: [("'You", 'You')] LUH19190924-V11-39-page3.txt: [("'Your", 'Your'), ("'Yes", 'Yes'), ("'Yes", 'Yes')] LUH19190924-V11-39-page4.txt: [("'It's", 'Its'), ("'No", 'No'), ("'I", 'I')] LUH19190924-V11-39-page8.txt: [("'first", 'first')] LUH19190924-V11-39-page9.txt: [("'into", 'into'), ("'Where", 'Where')] LUH19191001-V11-40-page3.txt: [("'a", 'a'), ("'Sabbath", 'Sabbath'), ("'the", 'the')] LUH19191001-V11-40-page5.txt: [("'to", 'to'), ("'but", 'but')] LUH19191001-V11-40-page6.txt: [("'the", 'the')] LUH19191001-V11-40-page7.txt: [("'per", 'per')] LUH19191001-V11-40-page8.txt: [("'twill", 'twill')] LUH19191008-V11-41-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] LUH19191008-V11-41-page2.txt: [("'to", 'to'), ("'saving.", 'saving.')] LUH19191008-V11-41-page3.txt: [("'cent", 'cent')] LUH19191008-V11-41-page4.txt: [("'a", 'a'), ("'tent", 'tent'), ("'Brother", 'Brother')] LUH19191008-V11-41-page6.txt: [("'often", 'often'), ("'I", 'I'), ("'Go", 'Go')] LUH19191008-V11-41-page7.txt: [("'Why", 'Why'), ("'eek", 'eek')] LUH19191008-V11-41-page8.txt: [("'like", 'like'), ("'fiery", 'fiery')] LUH19191015-V11-42-page10.txt: [("'Tis", 'Tis')] LUH19191015-V11-42-page12.txt: [("'in", 'in'), ("'have", 'have'), ("'Word", 'Word'), ("'stating", 'stating'), ("'conference", 'conference'), ("'a", 'a'), ("'papers", 'papers'), ("'now", 'now'), ("'dictating", 'dictating'), ("'that", 'that'), ("'provide", 'provide'), ("'young", 'young')] LUH19191015-V11-42-page13.txt: [("'fellowship", 'fellowship')] LUH19191015-V11-42-page15.txt: [("'BR", 'BR')] LUH19191015-V11-42-page16.txt: [("'specifically", 'specifically')] LUH19191015-V11-42-page2.txt: [("'erly", 'erly')] LUH19191015-V11-42-page4.txt: [("'work", 'work')] LUH19191015-V11-42-page5.txt: [("'grass", 'grass'), ("'carry", 'carry')] LUH19191015-V11-42-page8.txt: [("'does", 'does')] LUH19191015-V11-42-page9.txt: [("'ago", 'ago'), ("'I", 'I')] LUH19191022-V11-43-page1.txt: [("'neath", 'neath')] LUH19191022-V11-43-page10.txt: [("'Our", 'Our'), ("'free", 'free'), ("'God", 'God')] LUH19191022-V11-43-page11.txt: [("'Well", 'Well')] LUH19191022-V11-43-page12.txt: [("'of", 'of'), ("'has", 'has')] LUH19191022-V11-43-page13.txt: [("'prayers", 'prayers'), ("'amount", 'amount'), ("'a", 'a'), ("'ses", 'ses')] LUH19191022-V11-43-page15.txt: [("'canvassers", 'canvassers')] LUH19191022-V11-43-page2.txt: [("'but", 'but')] LUH19191022-V11-43-page20.txt: [("'married", 'married'), ("'Again", 'Again')] LUH19191022-V11-43-page21.txt: [("'good", 'good'), ("'book", 'book')] LUH19191022-V11-43-page23.txt: [("'Mich.", 'Mich.'), ("'months", 'months')] LUH19191022-V11-43-page3.txt: [("'to", 'to'), ("'counseled", 'counseled'), ("'such", 'such'), ("'soliciting", 'soliciting')] LUH19191022-V11-43-page4.txt: [("'in", 'in'), ("'report", 'report'), ("'than", 'than'), ("'and", 'and'), ("'this", 'this'), ("'the", 'the'), ("'in", 'in'), ("'it", 'it'), ("'to", 'to'), ("'here", 'here'), ("'toward", 'toward'), ("'Theiractions", 'Theiractions'), ("'The", 'The'), ("'September", 'September'), ("'Missionary", 'Missionary'), ("'who", 'who'), ("'isn't", 'isnt'), ("'struggle", 'struggle'), ("'being", 'being'), ("'doing", 'doing'), ("'Paul.", 'Paul.'), ("'Missionary", 'Missionary'), ("'local", 'local')] LUH19191022-V11-43-page5.txt: [("'address", 'address'), ("'large", 'large')] LUH19191022-V11-43-page6.txt: [("'goal", 'goal')] LUH19191029-V11-44-page1.txt: [("'Life's.", 'Lifes.'), ("'today", 'today'), ("'I", 'I')] LUH19191029-V11-44-page11.txt: [("'Conference", 'Conference')] LUH19191029-V11-44-page12.txt: [("'Nations", 'Nations'), ("'Thy", 'Thy'), ("'The", 'The')] LUH19191029-V11-44-page4.txt: [("'are", 'are')] LUH19191029-V11-44-page6.txt: [("'Underhill", 'Underhill')] LUH19191029-V11-44-page7.txt: [("'week", 'week')] LUH19191029-V11-44-page8.txt: [("'hall", 'hall'), ("'Dearborn", 'Dearborn')] LUH19191105-V11-45-page10.txt: [("'of", 'of')] LUH19191105-V11-45-page11.txt: [("'Ten", 'Ten'), ("'in", 'in'), ("'the", 'the'), ("'causes", 'causes')] LUH19191105-V11-45-page13.txt: [("'Franksville", 'Franksville'), ("'of", 'of'), ("'it", 'it')] LUH19191105-V11-45-page15.txt: [("'explanation", 'explanation')] LUH19191105-V11-45-page16.txt: [("'The", 'The')] LUH19191105-V11-45-page3.txt: [("'a", 'a'), ("'and", 'and'), ("'sixty", 'sixty'), ("'We", 'We')] LUH19191105-V11-45-page4.txt: [("'own", 'own')] LUH19191105-V11-45-page5.txt: [("'course", 'course'), ("'be", 'be'), ("'comes.", 'comes.'), ("'are.living", 'are.living'), ("'conferences", 'conferences'), ("'us", 'us'), ("'diligently", 'diligently'), ("'HOIDEN", 'HOIDEN'), ("'Lake", 'Lake'), ("'to", 'to'), ("'longing", 'longing'), ("'we", 'we'), ("'The", 'The'), ("'are", 'are'), ("'our", 'our'), ("'home", 'home')] LUH19191105-V11-45-page6.txt: [("'we", 'we'), ("'to", 'to'), ("'together", 'together'), ("'list.", 'list.'), ("'we", 'we'), ("'only", 'only')] LUH19191105-V11-45-page7.txt: [("'consecration", 'consecration'), ("'grace.", 'grace.'), ("'we", 'we')] LUH19191105-V11-45-page8.txt: [("'but", 'but'), ("'ning", 'ning'), ("'After", 'After')] LUH19191105-V11-45-page9.txt: [("'had", 'had'), ("'Miss", 'Miss'), ("'place", 'place'), ("'A", 'A'), ("'ters", 'ters'), ("'potato", 'potato')] LUH19191112-V11-46-page1.txt: [("'this", 'this')] LUH19191112-V11-46-page10.txt: [("'operation.", 'operation.')] LUH19191112-V11-46-page11.txt: [("'ill", 'ill'), ("'year", 'year')] LUH19191112-V11-46-page12.txt: [("'The", 'The'), ("'The", 'The')] LUH19191112-V11-46-page3.txt: [("'siege", 'siege'), ("'this", 'this')] LUH19191112-V11-46-page4.txt: [("'pleased", 'pleased')] LUH19191112-V11-46-page5.txt: [("'Bible", 'Bible'), ("'Practical", 'Practical'), ("'Bible", 'Bible'), ("'Bible", 'Bible')] LUH19191112-V11-46-page7.txt: [("'Missionary", 'Missionary')] LUH19191112-V11-46-page9.txt: [("'do", 'do')] LUH19191119-V11-47-page3.txt: [("'Ingathering", 'Ingathering')] LUH19191119-V11-47-page5.txt: [("'Noble", 'Noble')] LUH19191119-V11-47-page8.txt: [("'Ford", 'Ford')] LUH19191126-V11-48-page6.txt: [("'You", 'You')] LUH19191126-V11-48-page9.txt: [("'and", 'and')] LUH19191203-V11-49-page10.txt: [("''Spirit", 'Spirit')] LUH19191203-V11-49-page2.txt: [("'of", 'of'), ("'the", 'the'), ("'to", 'to'), ("'the", 'the')] LUH19191203-V11-49-page5.txt: [("'Remember", 'Remember'), ("'Thoughts", 'Thoughts'), ("'Great", 'Great'), ("'Great", 'Great'), ("'Daniel", 'Daniel'), ("'Why", 'Why')] LUH19191203-V11-49-page9.txt: [("'to", 'to')] LUH19191210-V11-50-page1.txt: [("'schools", 'schools')] LUH19191210-V11-50-page15.txt: [("'Decision", 'Decision')] LUH19191210-V11-50-page2.txt: [("'en.", 'en.'), ("'Iv", 'Iv')] LUH19191210-V11-50-page4.txt: [("'that", 'that')] LUH19191217-V11-51-page1.txt: [("'while", 'while')] LUH19191217-V11-51-page3.txt: [("'Hazel", 'Hazel'), ("'girls", 'girls')] LUH19191217-V11-51-page6.txt: [("'but", 'but'), ("'This", 'This'), ('\'cents."', 'cents."'), ("'Thursday.", 'Thursday.')] LUH19191224-V11-52-page11.txt: [("'lots", 'lots')] LUH19191224-V11-52-page12.txt: [("'a", 'a')] LUH19191224-V11-52-page4.txt: [("'Come", 'Come')] LUH19191224-V11-52-page6.txt: [("'Practical", 'Practical')] LUH19191224-V11-52-page7.txt: [("'Origin", 'Origin'), ("'That's", 'Thats'), ("'If", 'If'), ("'Our", 'Our'), ("'I", 'I'), ("'Our", 'Our'), ("'ook", 'ook'), ("'Prentice", 'Prentice')] LUH19200107-V12-01-page10.txt: [("'The", 'The')] LUH19200107-V12-01-page11.txt: [("'over", 'over')] LUH19200107-V12-01s1-page1.txt: [("'mighty", 'mighty')] LUH19200107-V12-01s1-page10.txt: [("'has", 'has')] LUH19200107-V12-01s1-page13.txt: [("'Illinois", 'Illinois')] LUH19200107-V12-01s1-page14.txt: [("'I", 'I')] LUH19200107-V12-01s1-page5.txt: [("'Why", 'Why'), ("'If.", 'If.'), ("'Lord", 'Lord'), ("'I", 'I')] LUH19200107-V12-01s1-page6.txt: [("'We", 'We')] LUH19200107-V12-01s1-page9.txt: [("'schools", 'schools'), ("'College", 'College')] LUH19200114-V12-02-page4.txt: [("'We", 'We')] LUH19200114-V12-02-page8.txt: [("'God", 'God'), ("'God", 'God'), ("'tween", 'tween')] LUH19200114-V12-02s2-page16.txt: [("'Sir", 'Sir')] LUH19200121-V12-03-page1.txt: [("'Union", 'Union')] LUH19200121-V12-03-page11.txt: [("'Pay", 'Pay')] LUH19200121-V12-03-page13.txt: [("'Great", 'Great'), ("'Protector", 'Protector'), ("'Merciful", 'Merciful'), ("'You", 'You'), ("'Yes", 'Yes'), ("'Aren't", 'Arent'), ("'I", 'I'), ("'I", 'I'), ("'Speak", 'Speak')] LUH19200121-V12-03-page14.txt: [("'Please", 'Please'), ("'I", 'I')] LUH19200121-V12-03-page15.txt: [("'Air", 'Air')] LUH19200121-V12-03-page16.txt: [("'till", 'till')] LUH19200121-V12-03-page6.txt: [("'still", 'still')] LUH19200121-V12-03-page8.txt: [("'Practical", 'Practical')] LUH19200121-V12-03-page9.txt: [("'The", 'The')] LUH19200128-V12-04-page3.txt: [("'Paulina", 'Paulina'), ("'about", 'about')] LUH19200128-V12-04-page7.txt: [("'Ye", 'Ye'), ("'I", 'I')] LUH19200204-V12-05-page1.txt: [("'new", 'new'), ("'many", 'many'), ("'neat", 'neat'), ("'hundred", 'hundred')] LUH19200204-V12-05-page10.txt: [("'Bible", 'Bible')] LUH19200204-V12-05-page9.txt: [("'The", 'The'), ("'and", 'and')] LUH19200211-V12-06-page11.txt: [("'Three", 'Three')] LUH19200211-V12-06-page6.txt: [("'that", 'that')] LUH19200211-V12-06-page7.txt: [("'are", 'are')] LUH19200218-V12-07-page1.txt: [("'twas", 'twas')] LUH19200218-V12-07-page2.txt: [("'bringing", 'bringing')] LUH19200218-V12-07-page3.txt: [("'chapel", 'chapel')] LUH19200218-V12-07-page4.txt: [("'Follow", 'Follow')] LUH19200218-V12-07-page5.txt: [("'Come", 'Come')] LUH19200218-V12-07-page6.txt: [("'I", 'I'), ("'Our", 'Our')] LUH19200218-V12-07-page8.txt: [("'long", 'long')] LUH19200225-V12-08-page10.txt: [("'Bible", 'Bible'), ("'four", 'four'), ("'General", 'General'), ("'I", 'I'), ("'In", 'In'), ("'Pray", 'Pray')] LUH19200225-V12-08-page11.txt: [("'Week", 'Week'), ("'preferred.", 'preferred.')] LUH19200225-V12-08-page3.txt: [("'This", 'This')] LUH19200225-V12-08-page5.txt: [("'of", 'of')] LUH19200225-V12-08-page9.txt: [("'died", 'died')] LUH19200303-V12-09-page1.txt: [("'Tis", 'Tis')] LUH19200303-V12-09-page12.txt: [("'visit", 'visit')] LUH19200303-V12-09-page13.txt: [("'Organization", 'Organization'), ("'Personal", 'Personal'), ("'Our", 'Our'), ("'Were", 'Were')] LUH19200303-V12-09-page14.txt: [("'f.", 'f.')] LUH19200303-V12-09-page5.txt: [("'that", 'that')] LUH19200303-V12-09-page9.txt: [("'So", 'So'), ("'Not", 'Not'), ("'I", 'I'), ("'I", 'I'), ("'I", 'I'), ("'Coming", 'Coming')] LUH19200310-V12-10-page12.txt: [("'the", 'the')] LUH19200310-V12-10-page16.txt: [("'February", 'February')] LUH19200310-V12-10-page6.txt: [("'Tis", 'Tis')] LUH19200310-V12-10-page7.txt: [("'Tis", 'Tis'), ("'Wilson", 'Wilson')] LUH19200310-V12-10-page9.txt: [("'The", 'The')] LUH19200317-V12-11-page10.txt: [("'Twas", 'Twas')] LUH19200317-V12-11-page4.txt: [("'you", 'you')] LUH19200317-V12-11-page8.txt: [("'Our", 'Our'), ("'Our", 'Our'), ("'Our", 'Our')] LUH19200317-V12-11-page9.txt: [("'her", 'her'), ("'visitor", 'visitor')] LUH19200324-V12-12-page2.txt: [("'the", 'the')] LUH19200324-V12-12-page3.txt: [("'will", 'will'), ("'when", 'when')] LUH19200324-V12-12-page4.txt: [("'as", 'as')] LUH19200324-V12-12-page6.txt: [("'Evans", 'Evans')] LUH19200324-V12-12-page9.txt: [("'rejoicing", 'rejoicing')] LUH19200331-V12-13-page1.txt: [("'I'm", 'Im')] LUH19200331-V12-13-page12.txt: [("'wages.", 'wages.')] LUH19200331-V12-13-page2.txt: [("'the", 'the')] LUH19200331-V12-13-page3.txt: [("'that", 'that')] LUH19200331-V12-13-page4.txt: [("'when", 'when')] LUH19200331-V12-13-page5.txt: [("'few", 'few'), ('\'do."', 'do."')] LUH19200331-V12-13-page8.txt: [("'deep", 'deep')] LUH19200331-V12-13-page9.txt: [("''earnest", 'earnest'), ("'and", 'and')] LUH19200407-V12-14-page15.txt: [("'Tis", 'Tis'), ("'I'm", 'Im'), ("'rooms", 'rooms')] LUH19200407-V12-14-page4.txt: [("'I", 'I')] LUH19200407-V12-14-page5.txt: [("'As", 'As'), ("'Brother", 'Brother'), ("'Buddy", 'Buddy'), ("'Brother", 'Brother'), ("'Amazing", 'Amazing'), ("'It", 'It')] LUH19200414-V12-15-page1.txt: [("'eat", 'eat')] LUH19200414-V12-15-page10.txt: [("'Him.", 'Him.'), ("'attendance", 'attendance')] LUH19200414-V12-15-page11.txt: [("'mornby", 'mornby')] LUH19200414-V12-15-page5.txt: [("'price", 'price'), ("'Great", 'Great'), ("'That", 'That'), ("'Our", 'Our'), ("'Practical", 'Practical'), ("'try", 'try')] LUH19200421-V12-16-page10.txt: [("'Traverse", 'Traverse')] LUH19200421-V12-16-page12.txt: [("'the", 'the')] LUH19200421-V12-16-page14.txt: [("'Tis", 'Tis')] LUH19200421-V12-16-page2.txt: [("'gospel", 'gospel')] LUH19200428-V12-17-page1.txt: [("'llollege", 'llollege')] LUH19200428-V12-17-page14.txt: [("'her", 'her')] LUH19200428-V12-17-page15.txt: [("'since", 'since')] LUH19200428-V12-17-page16.txt: [("'to", 'to')] LUH19200428-V12-17-page4.txt: [("'All", 'All')] LUH19200428-V12-17-page8.txt: [("'We", 'We')] LUH19200505-V12-18-page13.txt: [("'rri.City", 'rri.City')] LUH19200505-V12-18-page14.txt: [("'were", 'were')] LUH19200505-V12-18-page16.txt: [("'three", 'three')] LUH19200505-V12-18-page4.txt: [("'Johnny", 'Johnny'), ("'Johnny", 'Johnny')] LUH19200505-V12-18-page5.txt: [("'deprived", 'deprived')] LUH19200505-V12-18-page7.txt: [("'go", 'go')] LUH19200505-V12-18-page8.txt: [("'What", 'What')] LUH19200512-V12-19-page11.txt: [("'There", 'There'), ("'Here", 'Here')] LUH19200512-V12-19-page12.txt: [("'I", 'I'), ("'without", 'without'), ("'Follow", 'Follow')] LUH19200512-V12-19-page3.txt: [("'It", 'It'), ("'Twill", 'Twill'), ("'I", 'I'), ("'Twas", 'Twas')] LUH19200512-V12-19-page7.txt: [("'half", 'half')] LUH19200519-V12-20-page14.txt: [("'World", 'World')] LUH19200519-V12-20-page2.txt: [("''Shelbyville", 'Shelbyville')] LUH19200526-V12-21-page4.txt: [("'go", 'go'), ("'I", 'I'), ("'They", 'They')] LUH19200526-V12-21-page5.txt: [("'together", 'together')] LUH19200526-V12-21-page7.txt: [("'to", 'to')] LUH19200526-V12-21-page9.txt: [("'believe", 'believe')] LUH19200609-V12-23-page1.txt: [("'prominent", 'prominent')] LUH19200609-V12-23-page5.txt: [("'rake", 'rake')] LUH19200616-V12-24-page12.txt: [("'at", 'at')] LUH19200616-V12-24-page2.txt: [("'side", 'side'), ("'the", 'the')] LUH19200616-V12-24-page3.txt: [("'Sister", 'Sister')] LUH19200616-V12-24-page6.txt: [("'attended", 'attended')] LUH19200616-V12-24-page9.txt: [("'Are", 'Are'), ("'I", 'I')] LUH19200623-V12-25-page3.txt: [("'to", 'to')] LUH19200623-V12-25-page4.txt: [("'We", 'We')] LUH19200623-V12-25-page5.txt: [("'needs", 'needs')] LUH19200623-V12-25-page6.txt: [("'Plain", 'Plain')] LUH19200630-V12-26-page1.txt: [("'speech", 'speech'), ("'I", 'I'), ("'The", 'The')] LUH19200630-V12-26-page2.txt: [("'Religion", 'Religion'), ("'of", 'of'), ("'lawfully", 'lawfully'), ("'of", 'of'), ("'Tis", 'Tis')] LUH19200630-V12-26-page4.txt: [("'HERALD", 'HERALD')] LUH19200630-V12-26-page5.txt: [("'The", 'The'), ("'city.", 'city.'), ("'be", 'be')] LUH19200630-V12-26-page8.txt: [("'Academy", 'Academy'), ("'Ill.", 'Ill.')] LUH19200630-V12-26-page9.txt: [("'Harvest", 'Harvest'), ("'for", 'for'), ("'courage", 'courage')] LUH19200707-V12-27-page1.txt: [("'efforts", 'efforts')] LUH19200707-V12-27-page2.txt: [("'all", 'all'), ("'adversity", 'adversity'), ("'Daniel", 'Daniel'), ("'Daniel", 'Daniel'), ("'Origin", 'Origin'), ("'keep", 'keep')] LUH19200707-V12-27-page3.txt: [("'whom", 'whom')] LUH19200707-V12-27-page4.txt: [("'How", 'How'), ("'Best", 'Best')] LUH19200707-V12-27-page5.txt: [("'rest.", 'rest.'), ("'Especially", 'Especially')] LUH19200707-V12-27-page7.txt: [("'Croon", 'Croon')] LUH19200707-V12-27-page8.txt: [("'the", 'the'), ("'that", 'that')] LUH19200714-V12-28-page1.txt: [("'crease", 'crease')] LUH19200714-V12-28-page2.txt: [("'for", 'for')] LUH19200714-V12-28-page3.txt: [("'only", 'only')] LUH19200714-V12-28-page5.txt: [("'among", 'among'), ("'thirty", 'thirty')] LUH19200714-V12-28-page7.txt: [("'DR", 'DR')] LUH19200721-V12-29-page2.txt: [("'service", 'service'), ("'of", 'of'), ("'girls", 'girls'), ("'that", 'that')] LUH19200721-V12-29-page3.txt: [("'openingof", 'openingof'), ("'arid", 'arid'), ("'through", 'through'), ("'sympathy", 'sympathy'), ("'strong", 'strong'), ("'truth", 'truth'), ("'itW", 'itW'), ("'Ioseith", 'Ioseith'), ("'the", 'the'), ("'the", 'the'), ("'necessary", 'necessary'), ("'fields", 'fields'), ("'than", 'than')] LUH19200721-V12-29-page5.txt: [("'a", 'a')] LUH19200721-V12-29-page6.txt: [("'heir", 'heir')] LUH19200721-V12-29-page7.txt: [("'renew", 'renew'), ("'services", 'services'), ("'in", 'in'), ("'filled", 'filled')] LUH19200721-V12-29-page8.txt: [("'made", 'made'), ("'He", 'He'), ("'He", 'He')] LUH19200728-V12-30-page1.txt: [("'V", 'V'), ("'shameful", 'shameful')] LUH19200728-V12-30-page11.txt: [("'Woodman", 'Woodman')] LUH19200728-V12-30-page6.txt: [("'over", 'over'), ("'But", 'But'), ("'This", 'This'), ("'has", 'has'), ("'It", 'It'), ("'Well", 'Well')] LUH19200728-V12-30-page7.txt: [("'word", 'word')] LUH19200728-V12-30-page9.txt: [("'Brother", 'Brother'), ("'Times.", 'Times.')] LUH19200804-V12-31-page10.txt: [("'manifested", 'manifested')] LUH19200804-V12-31-page11.txt: [("'credits", 'credits'), ("'he", 'he'), ("'Hall", 'Hall'), ("'brewer", 'brewer'), ("'H.", 'H.'), ("'t", 't')] LUH19200804-V12-31-page12.txt: [("'the", 'the'), ("'the", 'the'), ("'Fund", 'Fund')] LUH19200804-V12-31-page2.txt: [("'.", '.'), ("'will", 'will'), ("'academic", 'academic'), ("'e", 'e')] LUH19200804-V12-31-page4.txt: [("'This", 'This')] LUH19200804-V12-31-page7.txt: [("'Heralds", 'Heralds'), ("'Heralds", 'Heralds')] LUH19200804-V12-31-page8.txt: [("'Heralds", 'Heralds')] LUH19200811-V12-32-page4.txt: [("'Hold", 'Hold'), ("'Why", 'Why'), ("'If", 'If'), ('\'"', '"'), ("'arise", 'arise'), ("'I", 'I'), ("'Well", 'Well'), ("'May", 'May'), ("'I", 'I'), ("'I", 'I'), ("'If", 'If'), ("'Well", 'Well'), ("'we", 'we'), ("'Hold", 'Hold'), ("'You", 'You'), ("'Don't", 'Dont'), ("'Do", 'Do'), ("'Yes", 'Yes'), ("'And", 'And'), ("'Yes", 'Yes'), ("'You", 'You'), ("'a", 'a'), ("'Ordinarily", 'Ordinarily'), ("'Were", 'Were'), ("'My", 'My')] LUH19200811-V12-32-page7.txt: [("'greatness", 'greatness')] LUH19200818-V12-33-page1.txt: [("'Tis", 'Tis')] LUH19200818-V12-33-page2.txt: [("'the", 'the')] LUH19200818-V12-33-page3.txt: [("'can", 'can')] LUH19200818-V12-33-page6.txt: [("'I", 'I'), ("'Yes", 'Yes'), ("'Of", 'Of'), ("'You", 'You'), ("'Bible", 'Bible'), ("'I", 'I'), ("'Bible", 'Bible'), ("'Latter", 'Latter'), ("'No", 'No'), ("'I", 'I'), ("'attempt", 'attempt')] LUH19200825-V12-34-page1.txt: [("'Ministerial", 'Ministerial')] LUH19200825-V12-34-page10.txt: [("'Hartford", 'Hartford'), ("'round", 'round')] LUH19200825-V12-34-page12.txt: [("'reports", 'reports'), ("'Mr.", 'Mr.'), ("'of", 'of')] LUH19200825-V12-34-page4.txt: [("'The", 'The'), ("'for", 'for')] LUH19200825-V12-34-page5.txt: [("'a", 'a'), ("'counties.", 'counties.')] LUH19200901-V12-35-page1.txt: [("'Twill", 'Twill'), ("'began", 'began'), ("'Twill", 'Twill')] LUH19200901-V12-35-page2.txt: [("'a", 'a')] LUH19200901-V12-35-page5.txt: [("'in", 'in'), ("'held", 'held'), ("'Joseph", 'Joseph')] LUH19200901-V12-35-page6.txt: [("'con", 'con')] LUH19200901-V12-35-page8.txt: [("'very", 'very')] LUH19200908-V12-36-page10.txt: [("'Six", 'Six')] LUH19200908-V12-36-page11.txt: [("'.", '.')] LUH19200908-V12-36-page12.txt: [("'taking", 'taking'), ("'The", 'The'), ("'The", 'The'), ("'Just", 'Just')] LUH19200908-V12-36-page2.txt: [("'I", 'I'), ("'have.", 'have.')] LUH19200908-V12-36-page4.txt: [("'aggressive", 'aggressive')] LUH19200908-V12-36-page6.txt: [("'a", 'a')] LUH19200908-V12-36-page7.txt: [("'a", 'a'), ("'of", 'of'), ("'part", 'part')] LUH19200908-V12-36-page8.txt: [("'Practical", 'Practical')] LUH19200915-V12-37-page1.txt: [("'anent", 'anent')] LUH19200915-V12-37-page2.txt: [("'that", 'that')] LUH19200915-V12-37-page4.txt: [("'a", 'a'), ("'sufficient", 'sufficient'), ("'fora", 'fora')] LUH19200915-V12-37-page5.txt: [("'have", 'have')] LUH19200915-V12-37-page6.txt: [("'em", 'em'), ("'em", 'em'), ("'em", 'em')] LUH19200915-V12-37-page7.txt: [("'worker", 'worker'), ("'united", 'united'), ("'..", '..')] LUH19200915-V12-37-page8.txt: [("'the", 'the')] LUH19200922-V12-38-page1.txt: [("'Illinois", 'Illinois'), ("'wise", 'wise')] LUH19200922-V12-38-page10.txt: [("'We", 'We'), ("'ID", 'ID'), ("'in", 'in')] LUH19200922-V12-38-page11.txt: [("'good", 'good')] LUH19200922-V12-38-page12.txt: [("'in", 'in'), ("'beast", 'beast'), ("'mark", 'mark')] LUH19200922-V12-38-page2.txt: [("'as", 'as'), ("'scarcity", 'scarcity'), ("'in", 'in'), ("'will", 'will'), ("'few", 'few'), ("'view", 'view')] LUH19200922-V12-38-page3.txt: [("'its", 'its'), ("'the", 'the')] LUH19200922-V12-38-page4.txt: [("'introduce", 'introduce'), ("'I", 'I'), ("'I", 'I')] LUH19200922-V12-38-page5.txt: [("'this", 'this'), ("'Bring", 'Bring'), ("'mornings", 'mornings')] LUH19200922-V12-38-page6.txt: [("'the", 'the'), ("'sure", 'sure'), ("'with", 'with')] LUH19200922-V12-38-page7.txt: [("'the", 'the'), ("'done", 'done'), ("'A", 'A'), ("'Milwaukee", 'Milwaukee'), ("'our", 'our')] LUH19200922-V12-38-page9.txt: [("'Ingathering", 'Ingathering'), ("'or", 'or'), ("'missions", 'missions')] LUH19200929-V12-39-page1.txt: [("'Make", 'Make'), ("'I", 'I'), ("'When", 'When')] LUH19200929-V12-39-page3.txt: [("'ten", 'ten'), ("'Fox", 'Fox'), ("'asked", 'asked')] LUH19200929-V12-39-page4.txt: [("'ones", 'ones')] LUH19200929-V12-39-page5.txt: [("'We", 'We'), ("'last", 'last')] LUH19200929-V12-39-page6.txt: [("'endeavored", 'endeavored'), ("'Cartago", 'Cartago'), ("'except", 'except')] LUH19201006-V12-40-page1.txt: [("'.", '.'), ("''ri.", 'ri.'), ("'T", 'T')] LUH19201006-V12-40-page10.txt: [("'found", 'found'), ("'of", 'of')] LUH19201006-V12-40-page11.txt: [("'Elder", 'Elder')] LUH19201006-V12-40-page12.txt: [("'the", 'the')] LUH19201006-V12-40-page14.txt: [("'on", 'on'), ("'business", 'business'), ("'they", 'they')] LUH19201006-V12-40-page15.txt: [("'For", 'For'), ("'North", 'North')] LUH19201006-V12-40-page16.txt: [("'but", 'but'), ("'Home", 'Home')] LUH19201006-V12-40-page2.txt: [("'Confer", 'Confer'), ("'reader", 'reader'), ("'adopted", 'adopted'), ("'Missionary", 'Missionary'), ("'days", 'days')] LUH19201006-V12-40-page3.txt: [("'eat", 'eat'), ("'to", 'to'), ("'a", 'a')] LUH19201006-V12-40-page4.txt: [("'short", 'short'), ("'make", 'make'), ("'and", 'and')] LUH19201006-V12-40-page5.txt: [("'representative", 'representative')] LUH19201006-V12-40-page6.txt: [("'At", 'At'), ("'There", 'There'), ("'years", 'years')] LUH19201006-V12-40-page7.txt: [("'and", 'and')] LUH19201006-V12-40-page8.txt: [("'on", 'on'), ("'nights", 'nights')] LUH19201006-V12-40-page9.txt: [("'I", 'I'), ("'owing", 'owing'), ("'Gunderson", 'Gunderson')] LUH19201013-V12-41-page10.txt: [("'Facing", 'Facing'), ("'Well", 'Well')] LUH19201013-V12-41-page11.txt: [("'I.", 'I.'), ("'Two", 'Two'), ("'another", 'another')] LUH19201013-V12-41-page12.txt: [("'the", 'the'), ("'that", 'that')] LUH19201013-V12-41-page3.txt: [("'one", 'one'), ("'as", 'as'), ("'heavenly", 'heavenly')] LUH19201013-V12-41-page4.txt: [("'teach", 'teach')] LUH19201013-V12-41-page5.txt: [("'and", 'and'), ("'Come", 'Come')] LUH19201013-V12-41-page6.txt: [("'receive", 'receive'), ("'for", 'for')] LUH19201013-V12-41-page7.txt: [("'do", 'do')] LUH19201013-V12-41-page8.txt: [("'get", 'get'), ("'than", 'than'), ("'spirit", 'spirit')] LUH19201020-V12-42-page1.txt: [("'program", 'program'), ("'Guthrie", 'Guthrie')] LUH19201020-V12-42-page10.txt: [("'old", 'old'), ("'is", 'is')] LUH19201020-V12-42-page11.txt: [("'A", 'A'), ("'what", 'what')] LUH19201020-V12-42-page12.txt: [("'He", 'He'), ("'the", 'the'), ("'have", 'have')] LUH19201020-V12-42-page2.txt: [("'Union", 'Union')] LUH19201020-V12-42-page3.txt: [("'day", 'day'), ("'camp", 'camp')] LUH19201020-V12-42-page4.txt: [("'Sabbath.day", 'Sabbath.day'), ("'and", 'and'), ("'a", 'a')] LUH19201020-V12-42-page6.txt: [("'she", 'she')] LUH19201020-V12-42-page7.txt: [("'Echo", 'Echo'), ("'the", 'the'), ("'large", 'large'), ("'office", 'office'), ("'mean", 'mean'), ("'have", 'have')] LUH19201020-V12-42-page8.txt: [("'Bible", 'Bible'), ("'themselves", 'themselves'), ("'time", 'time')] LUH19201020-V12-42-page9.txt: [("'in", 'in')] LUH19201027-V12-43-page11.txt: [("'but", 'but'), ("'of", 'of'), ("'the", 'the'), ("'our", 'our'), ("'neath", 'neath')] LUH19201027-V12-43-page13.txt: [("'power.", 'power.')] LUH19201027-V12-43-page15.txt: [("'formative", 'formative')] LUH19201027-V12-43-page2.txt: [("'as", 'as')] LUH19201027-V12-43-page3.txt: [("'There", 'There'), ("'the", 'the')] LUH19201027-V12-43-page4.txt: [("'Mich.", 'Mich.'), ("'able", 'able')] LUH19201103-V12-44-page1.txt: [("'mong", 'mong'), ("'not", 'not'), ("'in", 'in')] LUH19201103-V12-44-page10.txt: [("'been", 'been'), ("'has", 'has'), ("'UNION", 'UNION')] LUH19201103-V12-44-page11.txt: [("'a", 'a')] LUH19201103-V12-44-page12.txt: [("'Indianapolis", 'Indianapolis')] LUH19201103-V12-44-page3.txt: [("'to", 'to'), ("'from", 'from'), ("'I", 'I'), ("'I", 'I'), ("'of", 'of')] LUH19201103-V12-44-page6.txt: [("'tracts.", 'tracts.'), ("'Yoii", 'Yoii')] LUH19201103-V12-44-page7.txt: [("'Twixt", 'Twixt'), ("'the", 'the'), ("'man", 'man'), ("'cannot", 'cannot')] LUH19201103-V12-44-page8.txt: [("'tis", 'tis'), ("'Mr.", 'Mr.')] LUH19201103-V12-44-page9.txt: [("'GUSTAFSON", 'GUSTAFSON'), ("'energy", 'energy'), ("'and", 'and')] LUH19201110-V12-45-page1.txt: [("'of", 'of')] LUH19201110-V12-45-page10.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'work", 'work')] LUH19201110-V12-45-page11.txt: [("'results", 'results'), ("'finished.", 'finished.')] LUH19201110-V12-45-page12.txt: [("'students", 'students'), ("'church", 'church')] LUH19201110-V12-45-page13.txt: [("'their", 'their'), ("'tidy", 'tidy'), ("'What", 'What'), ("'Bible", 'Bible'), ("'Our", 'Our'), ("'It", 'It'), ("'volumes.", 'volumes.')] LUH19201110-V12-45-page14.txt: [("'has", 'has')] LUH19201110-V12-45-page15.txt: [("'.", '.'), ("'BR", 'BR')] LUH19201110-V12-45-page4.txt: [("'gone.", 'gone.')] LUH19201110-V12-45-page5.txt: [("'pleasure", 'pleasure')] LUH19201110-V12-45-page6.txt: [("'several", 'several')] LUH19201110-V12-45-page7.txt: [("'of", 'of'), ("'been", 'been')] LUH19201110-V12-45-page8.txt: [("'Continents", 'Continents'), ("'a", 'a'), ("'that", 'that'), ("'to", 'to')] LUH19201110-V12-45-page9.txt: [("'connected", 'connected')] LUH19201117-V12-46-page1.txt: [("'The", 'The')] LUH19201117-V12-46-page11.txt: [("'but", 'but')] LUH19201117-V12-46-page12.txt: [("'I", 'I'), ("'Our", 'Our'), ("'I", 'I')] LUH19201117-V12-46-page16.txt: [("'responsible", 'responsible')] LUH19201117-V12-46-page2.txt: [("'No.", 'No.'), ("'I", 'I')] LUH19201117-V12-46-page3.txt: [("'the", 'the')] LUH19201117-V12-46-page4.txt: [("'we", 'we'), ("'No", 'No')] LUH19201117-V12-46-page6.txt: [("'We", 'We')] LUH19201117-V12-46-page7.txt: [("'it", 'it'), ("'the", 'the'), ("'of", 'of'), ("'the", 'the')] LUH19201117-V12-46-page9.txt: [("'everyone", 'everyone')] LUH19201124-V12-47-page1.txt: [("'wistful", 'wistful')] LUH19201124-V12-47-page10.txt: [("'sanitarium.", 'sanitarium.')] LUH19201124-V12-47-page12.txt: [("'of", 'of')] LUH19201124-V12-47-page13.txt: [("'ford", 'ford'), ("'when", 'when'), ("'with", 'with'), ("'Twas", 'Twas'), ("'tis", 'tis'), ("'but", 'but')] LUH19201124-V12-47-page2.txt: [("'piece", 'piece')] LUH19201124-V12-47-page3.txt: [("'I", 'I'), ("'not", 'not')] LUH19201124-V12-47-page4.txt: [("'for", 'for'), ("'that", 'that'), ("'to", 'to')] LUH19201124-V12-47-page5.txt: [("'are", 'are'), ("'Illinois", 'Illinois')] LUH19201124-V12-47-page6.txt: [("'begin", 'begin')] LUH19201124-V12-47-page7.txt: [("'The", 'The'), ("'secured", 'secured'), ("'They", 'They')] LUH19201124-V12-47-page8.txt: [("'an", 'an')] LUH19201124-V12-47-page9.txt: [("'Thursday", 'Thursday'), ("'Two", 'Two')] LUH19201201-V12-48-page1.txt: [("'don", 'don')] LUH19201201-V12-48-page11.txt: [("'thousand", 'thousand'), ("'Missionary", 'Missionary'), ("'this", 'this'), ("'be", 'be')] LUH19201201-V12-48-page2.txt: [("'the", 'the')] LUH19201201-V12-48-page4.txt: [("'next", 'next'), ("'Next", 'Next'), ("'Where", 'Where'), ("'lovers", 'lovers'), ("'Bunny", 'Bunny'), ("'Shimmy", 'Shimmy'), ("'Miss", 'Miss'), ("'Miss", 'Miss'), ("'Next", 'Next'), ("'next", 'next')] LUH19201201-V12-48-page5.txt: [("'few", 'few')] LUH19201201-V12-48-page6.txt: [("'at", 'at')] LUH19201201-V12-48-page7.txt: [("'the", 'the')] LUH19201201-V12-48-page9.txt: [("'Bible", 'Bible'), ("'I", 'I'), ("'Surely", 'Surely'), ("'Say", 'Say')] LUH19201208-V12-49-page1.txt: [("'clue", 'clue'), ("'blue", 'blue')] LUH19201208-V12-49-page10.txt: [('\'"Do', '"Do'), ("'and", 'and'), ("'and", 'and'), ("'to", 'to')] LUH19201208-V12-49-page13.txt: [("'near", 'near'), ("'the", 'the'), ("'we", 'we'), ("'literary", 'literary')] LUH19201208-V12-49-page15.txt: [("'of", 'of')] LUH19201208-V12-49-page2.txt: [("'the", 'the'), ("'other", 'other')] LUH19201208-V12-49-page3.txt: [("'and", 'and'), ("'a", 'a'), ("'Many", 'Many')] LUH19201208-V12-49-page5.txt: [("'committed", 'committed')] LUH19201208-V12-49-page8.txt: [("'will", 'will')] LUH19201215-V12-50-page1.txt: [("'I", 'I')] LUH19201215-V12-50-page10.txt: [('\'"Bible', '"Bible'), ("'endeavoring", 'endeavoring'), ("'name", 'name'), ("'Don't", 'Dont')] LUH19201215-V12-50-page11.txt: [("'No", 'No'), ("'is", 'is'), ("'week.", 'week.'), ("'we", 'we'), ("'need", 'need')] LUH19201215-V12-50-page12.txt: [("'to", 'to'), ("'Eureka", 'Eureka')] LUH19201215-V12-50-page13.txt: [("'St.", 'St.')] LUH19201215-V12-50-page15.txt: [("'Tracy", 'Tracy')] LUH19201215-V12-50-page16.txt: [("'The", 'The')] LUH19201215-V12-50-page2.txt: [("'citizenry", 'citizenry')] LUH19201215-V12-50-page3.txt: [("'offerings", 'offerings'), ("'for", 'for'), ("'it", 'it'), ("'conference", 'conference')] LUH19201215-V12-50-page4.txt: [("'and", 'and'), ("'blue", 'blue')] LUH19201215-V12-50-page5.txt: [("'be", 'be')] LUH19201215-V12-50-page6.txt: [("'day", 'day')] LUH19201215-V12-50-page7.txt: [("'have", 'have'), ("'these", 'these')] LUH19201215-V12-50-page8.txt: [("'the", 'the')] LUH19201215-V12-50-page9.txt: [("'India", 'India'), ("'everywhere", 'everywhere')] LUH19201222-V12-51-page1.txt: [("'hall", 'hall'), ("'the", 'the'), ("'SantOs", 'SantOs'), ("'are", 'are')] LUH19201222-V12-51-page10.txt: [("'d", 'd')] LUH19201222-V12-51-page11.txt: [("'unique", 'unique'), ("'training", 'training'), ("'Always", 'Always')] LUH19201222-V12-51-page12.txt: [("'Lora", 'Lora'), ("'A", 'A')] LUH19201222-V12-51-page2.txt: [("'shall", 'shall')] LUH19201222-V12-51-page3.txt: [("'at", 'at'), ("'there", 'there'), ("'the", 'the'), ("'as", 'as')] LUH19201222-V12-51-page4.txt: [("'of", 'of')] LUH19201222-V12-51-page5.txt: [("'world", 'world')] LUH19201222-V12-51-page6.txt: [("'condemning", 'condemning'), ("'blue", 'blue')] LUH19201222-V12-51-page7.txt: [("'Blue", 'Blue'), ("'Blue", 'Blue'), ("'followed", 'followed')]
In [23]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction4 Average verified rate: 0.9705030998940217 Average of error rates: 0.032654637436762224 Total token count: 5745519
In [24]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[24]:
[('e', 15519), ('w', 12256), ('m', 9266), ('r', 8971), ('br', 8467), ('g', 7887), ('f', 7809), ('d', 6800), ("'", 3621), ('n', 3589), ('od', 3522), ('gc', 3062), ('k', 2722), ('wm', 2525), ('t', 2165), ('th', 1736), ("canvassers'", 1191), ('pg', 1116), ('co', 1026), ('bf', 911), ('mt', 895), ('ck', 768), ('hm', 732), ('u', 578), ('ords', 470), ('drury', 452), ('x', 423), ('suda', 358), ("elders'", 338), ('kimberlin', 264), ('lb', 244), ('plake', 241), ("sec'y-treas", 241), ("colporteurs'", 238), ('mitzelfelt', 215), ('two-per-cent', 203), ('erald', 201), ("soldiers'", 201), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('pengelly', 166), ('es', 160), ('kittleson', 152), ('pp', 151), ('mc', 150), ('tatton', 149), ('palmiter', 148), ('herrington', 145), ('ch', 144)]
Correction 5 -- Rejoin Burst Words¶
In [25]:
# %load shared_elements/rejoin_burst_words.py
prev = cycle
cycle = "correction5"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
pattern = re.compile("(\s(\w{1,2}\s){5,})")
replacements = []
clean.check_splits(pattern, spelling_dictionary, content, replacements)
if len(replacements) > 0:
print('{}: {}'.format(filename, replacements))
for replacement in replacements:
content = clean.replace_pair(replacement, content)
else:
pass
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
LUH19081104-V01-01-page5.txt: [('So', 'So')] LUH19081125-V01-04-page7.txt: [('Is', 'Is')] LUH19090922-V01-47-page8.txt: [('Of', 'Of')] LUH19091013-V01-50-page1.txt: [(' S P R IN G S ', 'SPRINGS')] LUH19100309-V02-10-page4.txt: [('If', 'If')] LUH19100907-V02-36-page2.txt: [('He', 'He')] LUH19101102-V02-44-page4.txt: [('To', 'To')] LUH19101116-V02-46-page5.txt: [('To', 'To')] LUH19101221-V02-51-page9.txt: [('If', 'If')] LUH19110419-V03-16-page6.txt: [('It', 'It')] LUH19110517-V03-20-page1.txt: [('It', 'It')] LUH19110719-V03-29-page3.txt: [('We', 'We')] LUH19110823-V03-34-page8.txt: [('On', 'On')] LUH19110830-V03-35-page7.txt: [('St', 'St')] LUH19110913-V03-37-page3.txt: [('La', 'La')] LUH19111122-V03-47-page4.txt: [('He', 'He')] LUH19120124-V04-04-page5.txt: [('St', 'St')] LUH19120221-V04-08s-page1.txt: [('St', 'St')] LUH19120501-V04-18-page16.txt: [('El', 'El')] LUH19120626-V04-26-page4.txt: [('At', 'At')] LUH19120710-V04-28-page6.txt: [('If', 'If'), ('We', 'We')] LUH19120814-V04-33-page5.txt: [('To', 'To'), ('Be', 'Be')] LUH19120828-V04-35-page4.txt: [('It', 'It')] LUH19120904-V04-36-page6.txt: [('Du', 'Du')] LUH19130326-V05-12-page8.txt: [('He', 'He'), ('On', 'On')] LUH19130423-V05-16-page4.txt: [('At', 'At')] LUH19130507-V05-18-page5.txt: [('We', 'We')] LUH19130514-V05-19-page7.txt: [('We', 'We')] LUH19130521-V05-20-page6.txt: [('Is', 'Is')] LUH19130611-V05-23-page7.txt: [('On', 'On')] LUH19131015-V05-41-page14.txt: [('We', 'We')] LUH19131015-V05-41-page6.txt: [('An', 'An')] LUH19131119-V05-46-page2.txt: [('No', 'No')] LUH19131127-V05-47-page8.txt: [('Is', 'Is'), ('On', 'On')] LUH19131217-V05-50-page14.txt: [('My', 'My')] LUH19140107-V06-01-page7.txt: [('We', 'We')] LUH19140121-V06-03-page6.txt: [('Du', 'Du')] LUH19140211-V06-06-page6.txt: [('To', 'To')] LUH19140218-V06-07-page4.txt: [('We', 'We')] LUH19140218-V06-07-page5.txt: [('At', 'At')] LUH19140318-V06-11-page5.txt: [('Du', 'Du')] LUH19140325-V06-12-page7.txt: [('Of', 'Of')] LUH19140422-V06-16-page7.txt: [('On', 'On')] LUH19140429-V06-17-page15.txt: [('We', 'We')] LUH19140603-V06-22-page8.txt: [('He', 'He')] LUH19140805-V06-31-page14.txt: [('La', 'La')] LUH19141022-V06-42-page5.txt: [('Of', 'Of')] LUH19150303-V07-09-page6.txt: [('To', 'To')] LUH19150317-V07-11-page8.txt: [('We', 'We')] LUH19150602-V07-22-page3.txt: [('He', 'He')] LUH19150623-V07-25-page5.txt: [('He', 'He')] LUH19150721-V07-29-page3.txt: [('Du', 'Du')] LUH19150818-V07-33-page8.txt: [('At', 'At')] LUH19150908-V07-36-page7.txt: [('It', 'It')] LUH19151117-V07-46-page7.txt: [('If', 'If')] LUH19151208-V07-49-page6.txt: [('La', 'La')] LUH19160209-V08-06-page1.txt: [('It', 'It')] LUH19160517-V08-20-page3.txt: [('We', 'We')] LUH19160628-V08-26-page7.txt: [('We', 'We')] LUH19160705-V08-27-page6.txt: [('We', 'We')] LUH19161004-V08-40-page8.txt: [('If', 'If')] LUH19161101-V08-44-page6.txt: [('It', 'It'), ('It', 'It')] LUH19161115-V08-46-page6.txt: [('We', 'We')] LUH19161213-V08-50-page8.txt: [('La', 'La')] LUH19170110-V09-02-page5.txt: [('Ii', 'Ii')] LUH19170328-V09-13-page4.txt: [('Du', 'Du')] LUH19170418-V09-16-page5.txt: [('Du', 'Du')] LUH19170620-V09-25-page6.txt: [('Du', 'Du')] LUH19170718-V09-29-page11.txt: [('We', 'We')] LUH19170926-V09-39-page5.txt: [('If', 'If')] LUH19171024-V09-43-page11.txt: [('Us', 'Us')] LUH19171031-V09-44-page3.txt: [('In', 'In')] LUH19171121-V09-47-page14.txt: [('It', 'It'), ('It', 'It')] LUH19171121-V09-47-page4.txt: [('If', 'If')] LUH19180123-V10-04-page6.txt: [('We', 'We')] LUH19180327-V10-13-page2.txt: [('On', 'On')] LUH19180417-V10-16-page5.txt: [('Do', 'Do')] LUH19180515-V10-20-page3.txt: [('He', 'He')] LUH19180612-V10-24-page5.txt: [('We', 'We')] LUH19180731-V10-31-page7.txt: [('It', 'It')] LUH19180821-V10-34-page7.txt: [('On', 'On')] LUH19180904-V10-36-page7.txt: [('Ar', 'Ar')] LUH19181204-V10-49-page10.txt: [('Is', 'Is')] LUH19190108-V11-02-page1.txt: [('It', 'It')] LUH19190709-V11-28-page4.txt: [(' d u ri n g ', 'during')] LUH19191112-V11-46-page1.txt: [('If', 'If')] LUH19200225-V12-08-page6.txt: [('Hi', 'Hi')] LUH19200428-V12-17-page15.txt: [('Of', 'Of')] LUH19200519-V12-20-page8.txt: [('We', 'We')] LUH19200609-V12-23-page3.txt: [('To', 'To')] LUH19200616-V12-24-page5.txt: [('We', 'We')] LUH19200630-V12-26-page11.txt: [('De', 'De')] LUH19200714-V12-28-page7.txt: [('De', 'De')] LUH19200721-V12-29-page1.txt: [('On', 'On')] LUH19200804-V12-31-page8.txt: [('In', 'In')] LUH19201020-V12-42-page11.txt: [('In', 'In')] LUH19201027-V12-43-page1.txt: [('El', 'El'), ('On', 'On')] LUH19201201-V12-48-page11.txt: [('Ii', 'Ii')]
In [26]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction5 Average verified rate: 0.9704898128895234 Average of error rates: 0.032669139966273186 Total token count: 5745643
In [27]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[27]:
[('e', 15520), ('w', 12256), ('m', 9266), ('r', 8970), ('br', 8467), ('g', 7885), ('f', 7809), ('d', 6800), ("'", 3621), ('n', 3588), ('od', 3522), ('gc', 3062), ('k', 2722), ('wm', 2525), ('t', 2165), ('th', 1736), ("canvassers'", 1191), ('pg', 1116), ('co', 1026), ('bf', 911), ('mt', 895), ('ck', 768), ('hm', 732), ('u', 577), ('ords', 470), ('drury', 452), ('x', 423), ('suda', 358), ("elders'", 338), ('kimberlin', 264), ('lb', 244), ('plake', 241), ("sec'y-treas", 241), ("colporteurs'", 238), ('mitzelfelt', 215), ('two-per-cent', 203), ('erald', 201), ("soldiers'", 201), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('pengelly', 166), ('es', 160), ('kittleson', 152), ('pp', 151), ('mc', 150), ('tatton', 149), ('palmiter', 148), ('ch', 144), ('herrington', 144)]
Correction 6 -- Rejoin Split Words¶
In [28]:
# %load shared_elements/rejoin_split_words.py
prev = cycle
cycle = "correction5"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
text = re.sub(r"[0-9,!?$:;&]", " ", content)
tokens = utilities.tokenize_text(text)
errors = reports.identify_errors(tokens, spelling_dictionary)
replacements = clean.check_if_stem(errors, spelling_dictionary, tokens, get_prior=False)
if len(replacements) > 0:
print('{}: {}'.format(filename, replacements))
for replacement in replacements:
content = clean.replace_split_words(replacement, content)
else:
pass
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
LUH19081104-V01-01-page3.txt: [('th', 'in')] LUH19081104-V01-01-page6.txt: [('zo', 'o')] LUH19081111-V01-02-page2.txt: [('re', 'conversion')] LUH19081111-V01-02-page3.txt: [('donat', 'e')] LUH19081111-V01-02-page4.txt: [('re', 'studying')] LUH19081111-V01-02-page5.txt: [('mis', 'spent')] LUH19081119-V01-03-page7.txt: [('Mi', 'ch')] LUH19081125-V01-04-page1.txt: [('co', 'laborers')] LUH19081125-V01-04-page4.txt: [('co', 'operation')] LUH19081125-V01-04-page5.txt: [('oppo', 'rtunity')] LUH19081125-V01-04-page7.txt: [('zo', 'o')] LUH19081202-V01-05-page7.txt: [('mis', 'does')] LUH19081209-V01-06-page5.txt: [('Re', 'X')] LUH19081216-V01-07-page8.txt: [('SEV', 'ENTH-DAY')] LUH19081223-V01-08-page3.txt: [('th', 'at')] LUH19081223-V01-08-page4.txt: [('obe', 'dience')] LUH19081223-V01-08-page6.txt: [('Novem', 'ber')] LUH19081223-V01-08-page7.txt: [('co', 'operation')] LUH19081223-V01-08-page8.txt: [('SEV', 'ENTH')] LUH19081230-V01-09-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090106-V01-10-page3.txt: [('re', 'X')] LUH19090106-V01-10-page6.txt: [('M.', '')] LUH19090106-V01-10-page8.txt: [('SEV', 'ENTH')] LUH19090113-V01-11-page2.txt: [('purpos', 'e')] LUH19090113-V01-11-page7.txt: [('Mc', 'Mahan')] LUH19090113-V01-11-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090120-V01-12-page7.txt: [('Truf', 'ant')] LUH19090120-V01-12-page8.txt: [('SEV', 'ENTH')] LUH19090127-V01-13-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090203-V01-14-page2.txt: [('EXECU', 'TIVE')] LUH19090203-V01-14-page6.txt: [('pag', 'e')] LUH19090203-V01-14-page8.txt: [('SEV', 'ENTH')] LUH19090210-V01-15-page2.txt: [('re', 'elected')] LUH19090210-V01-15-page7.txt: [('Volu', 'nteer')] LUH19090210-V01-15-page8.txt: [('SEV', 'ENTH')] LUH19090217-V01-16-page8.txt: [('SEV', 'ENTH')] LUH19090224-V01-17-page1.txt: [('suppli', 'cate')] LUH19090224-V01-17-page7.txt: [('Po', 'tterville')] LUH19090224-V01-17-page8.txt: [('SEV', 'ENTH')] LUH19090303-V01-18-page2.txt: [('se', 'men'), ('choo', 'se'), ('co', 'operating')] LUH19090303-V01-18-page8.txt: [('SEV', 'ENTH')] LUH19090310-V01-19-page3.txt: [('co', 'operate')] LUH19090310-V01-19-page7.txt: [('co', 'operation')] LUH19090310-V01-19-page8.txt: [('SEV', 'ENTH')] LUH19090317-V01-20-page4.txt: [('re', 'echoed')] LUH19090317-V01-20-page7.txt: [('Truf', 'ant')] LUH19090317-V01-20-page8.txt: [('indi', 'vidual'), ('SEV', 'ENTH')] LUH19090324-V01-21-page3.txt: [('ex', 'pected')] LUH19090324-V01-21-page5.txt: [('pre', 'eminence')] LUH19090324-V01-21-page6.txt: [('mis', 'take')] LUH19090324-V01-21-page8.txt: [('SEV', 'ENTH')] LUH19090331-V01-22-page7.txt: [('re', 'read')] LUH19090331-V01-22-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090407-V01-23-page8.txt: [('SEV', 'ENTH')] LUH19090414-V01-24-page7.txt: [('inqui', 'ries')] LUH19090414-V01-24-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090421-V01-25-page3.txt: [('UN', 'ION')] LUH19090421-V01-25-page7.txt: [('Truf', 'ant')] LUH19090421-V01-25-page8.txt: [('SEV', 'ENTH'), ('th', 'e')] LUH19090428-V01-26-page2.txt: [('co', 'operation')] LUH19090428-V01-26-page8.txt: [('SEV', 'ENTH')] LUH19090505-V01-27-page2.txt: [('yo', 'ur')] LUH19090505-V01-27-page5.txt: [('re', 'garded')] LUH19090505-V01-27-page7.txt: [('Standis', 'h')] LUH19090505-V01-27-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090512-V01-28-page8.txt: [('SEV', 'ENTH-DAY')] LUH19090519-V01-29-page8.txt: [('Truf', 'ant'), ('SEV', 'ENTH-DAY')] LUH19090526-V01-30-page11.txt: [('co', 'operation')] LUH19090526-V01-30-page14.txt: [('frui', 't'), ('worn-ou', 't')] LUH19090526-V01-30-page16.txt: [('SEV', 'ENTH')] LUH19090526-V01-30-page8.txt: [('SEV', 'ENTH')] LUH19090602-V01-31-page3.txt: [('co', 'operation')] LUH19090602-V01-31-page8.txt: [('SEV', 'ENTH')] LUH19090609-V01-32-page8.txt: [('SEV', 'ENTH')] LUH19090616-V01-33-page2.txt: [('experien', 'ce')] LUH19090616-V01-33-page8.txt: [('SEV', 'ENTH')] LUH19090623-V01-34-page8.txt: [('SEV', 'ENTH')] LUH19090630-V01-35-page5.txt: [('VOLUN', 'TEERS')] LUH19090630-V01-35-page8.txt: [('SEV', 'ENTH')] LUH19090707-V01-36-page8.txt: [('SEV', 'ENTH')] LUH19090714-V01-37-page6.txt: [('co', 'operate')] LUH19090714-V01-37-page8.txt: [('SEV', 'ENTH'), ('BERRI', 'EN')] LUH19090721-V01-38-page5.txt: [('AP', 'P'), ('co', 'operating')] LUH19090721-V01-38-page8.txt: [('SEV', 'ENTH')] LUH19090728-V01-39-page8.txt: [('SEV', 'ENTH')] LUH19090804-V01-40-page8.txt: [('SEV', 'ENTH')] LUH19090811-V01-41-page3.txt: [('co', 'workers')] LUH19090811-V01-41-page6.txt: [('Daniell', 's')] LUH19090811-V01-41-page8.txt: [('SEV', 'ENTH')] LUH19090818-V01-42-page4.txt: [('shor', 't')] LUH19090818-V01-42-page6.txt: [('messag', 'e')] LUH19090818-V01-42-page8.txt: [('SEV', 'ENTH')] LUH19090825-V01-43-page7.txt: [('te', 'ta')] LUH19090825-V01-43-page8.txt: [('co', 'operation')] LUH19090901-V01-44-page6.txt: [('sho', 'wing')] LUH19090901-V01-44-page8.txt: [('SEV', 'ENTH')] LUH19090908-V01-45-page1.txt: [('ac', 'quaintance')] LUH19090908-V01-45-page3.txt: [('senti', 'ments'), ('co', 'py')] LUH19090908-V01-45-page8.txt: [('SEV', 'ENTH')] LUH19090915-V01-46-page6.txt: [('co', 'operate')] LUH19090915-V01-46-page7.txt: [('co', 'operate')] LUH19090915-V01-46-page8.txt: [('SEV', 'ENTH')] LUH19090922-V01-47-page7.txt: [('se', 'ries')] LUH19090922-V01-47-page8.txt: [('Truf', 'ant'), ('SEV', 'ENTH-DAY')] LUH19090929-V01-48-page6.txt: [('leavi', 'ng')] LUH19090929-V01-48-page8.txt: [('SEV', 'ENTH'), ('Milwau', 'kee')] LUH19091006-V01-49-page2.txt: [('da', 'rkness')] LUH19091006-V01-49-page8.txt: [('thereaf', 'ter'), ('SEV', 'ENTH')] LUH19091013-V01-50-page8.txt: [('SEV', 'ENTH-DAY')] LUH19091020-V01-51-page5.txt: [('co', 'operation')] LUH19091020-V01-51-page8.txt: [('SEV', 'ENTH'), ('Aca', 'demy'), ('th', 'a')] LUH19091027-V01-52-page3.txt: [('Inas', 'much')] LUH19091027-V01-52-page8.txt: [('SEV', 'ENTH'), ('re', 'baptized')] LUH19091103-V01-53-page6.txt: [('Mc', 'Reynolds')] LUH19091103-V01-53-page8.txt: [('SEV', 'ENTH')] LUH19091110-V01-54-page4.txt: [('MEE', 'TING')] LUH19091110-V01-54-page5.txt: [('co', 'operate')] LUH19091110-V01-54-page6.txt: [('al', 'i'), ('re', 'al')] LUH19091110-V01-54-page8.txt: [('pers', 'is'), ('EA', 'R'), ('da', 'to'), ('co', 'operation')] LUH19091117-V01-55-page8.txt: [('SEV', 'ENTH')] LUH19091124-V01-56-page8.txt: [('SEV', 'ENTH'), ('MICHIG', 'AN'), ('co', 'workers')] LUH19091201-V01-57-page8.txt: [('SEV', 'ENTH')] LUH19091208-V01-58-page3.txt: [('un', 'Cleanness'), ('criti', 'ciSm')] LUH19091208-V01-58-page8.txt: [('SEV', 'ENTH')] LUH19091215-V01-59-page8.txt: [('SEV', 'ENTH')] LUH19091222-V01-60-page5.txt: [('re', 'P')] LUH19091222-V01-60-page6.txt: [('co', 'operate')] LUH19091222-V01-60-page8.txt: [('SEV', 'ENTH')] LUH19100105-V02-01-page8.txt: [('SEV', 'ENTH'), ('M.', '')] LUH19100112-V02-02-page5.txt: [('co', 'operation')] LUH19100112-V02-02-page8.txt: [('SEV', 'ENTH')] LUH19100119-V02-03-page3.txt: [('M.', '')] LUH19100119-V02-03-page4.txt: [('co', 'operate')] LUH19100119-V02-03-page8.txt: [('SEV', 'ENTH')] LUH19100126-V02-04-page6.txt: [('co', 'operate')] LUH19100126-V02-04-page7.txt: [('Mc', 'Mahan')] LUH19100126-V02-04-page8.txt: [('SEV', 'ENTH')] LUH19100202-V02-05-page8.txt: [('SEV', 'ENTH')] LUH19100209-V02-06-page1.txt: [('vari', 'ous')] LUH19100209-V02-06-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100216-V02-07-page11.txt: [('th', 'e')] LUH19100216-V02-07-page12.txt: [('grea', 't')] LUH19100216-V02-07-page6.txt: [('encourag', 'ing')] LUH19100216-V02-07-page8.txt: [('alwa', 'ys')] LUH19100223-V02-08-page13.txt: [('co', 'operated')] LUH19100223-V02-08-page15.txt: [('Wiscon', 'sin')] LUH19100223-V02-08-page16.txt: [('SEV', 'ENTH')] LUH19100223-V02-08-page9.txt: [('Ses', 'sion')] LUH19100302-V02-09-page11.txt: [('Mc', 'Reynolds'), ('re', 'read')] LUH19100302-V02-09-page12.txt: [('re', 'read')] LUH19100302-V02-09-page15.txt: [('th', 'at')] LUH19100302-V02-09-page16.txt: [('SEV', 'ENTH-DAY')] LUH19100302-V02-09-page6.txt: [('Mc', 'Reynolds')] LUH19100302-V02-09-page9.txt: [('respec', 'tfully')] LUH19100309-V02-10-page11.txt: [('re', 'read')] LUH19100309-V02-10-page15.txt: [('th', 'e')] LUH19100309-V02-10-page16.txt: [('SEV', 'ENTH-DAY')] LUH19100309-V02-10-page2.txt: [('co', 'operation')] LUH19100309-V02-10-page5.txt: [('co', 'operation'), ('suc', 'cess')] LUH19100309-V02-10-page8.txt: [('intereste', 'd')] LUH19100323-V02-12-page6.txt: [('th', 'in')] LUH19100323-V02-12-page7.txt: [('co', 'operation')] LUH19100323-V02-12-page8.txt: [('SEV', 'ENTH')] LUH19100330-V02-13-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100406-V02-14-page1.txt: [('re', 'established')] LUH19100406-V02-14-page2.txt: [('repres', 'entatives')] LUH19100406-V02-14-page5.txt: [('ZI', 'a')] LUH19100406-V02-14-page6.txt: [('co', 'operation')] LUH19100406-V02-14-page8.txt: [('SEV', 'ENTH')] LUH19100413-V02-15-page4.txt: [('Licen', 'ses')] LUH19100413-V02-15-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100420-V02-16-page8.txt: [('SEV', 'ENTH')] LUH19100427-V02-17-page2.txt: [('co', 'operate')] LUH19100427-V02-17-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100504-V02-18-page2.txt: [('co', 'operating')] LUH19100504-V02-18-page3.txt: [('co', 'operation')] LUH19100504-V02-18-page8.txt: [('SEV', 'ENTH')] LUH19100511-V02-19-page1.txt: [('G.', '')] LUH19100511-V02-19-page8.txt: [('Mc', 'Reynolds'), ('SEV', 'ENTH')] LUH19100518-V02-20-page7.txt: [('se', 'vere')] LUH19100518-V02-20-page8.txt: [('SEV', 'ENTH')] LUH19100525-V02-21-page3.txt: [('co', 'operation')] LUH19100525-V02-21-page5.txt: [('ex', 'ceptions'), ('re', 'marks')] LUH19100525-V02-21-page6.txt: [('th', 'in')] LUH19100525-V02-21-page8.txt: [('th', 'at')] LUH19100601-V02-22-page3.txt: [('repre', 'senting')] LUH19100601-V02-22-page7.txt: [('subscrib', 'ers')] LUH19100601-V02-22-page8.txt: [('SEV', 'ENTH')] LUH19100608-V02-23-page4.txt: [('Truf', 'ant')] LUH19100608-V02-23-page6.txt: [('G.', '')] LUH19100608-V02-23-page8.txt: [('SEV', 'ENTH-DAY'), ('th', 'at')] LUH19100615-V02-24-page5.txt: [('co', 'workers')] LUH19100615-V02-24-page6.txt: [('Truf', 'ant'), ('G.', '')] LUH19100615-V02-24-page7.txt: [('th', 'in')] LUH19100615-V02-24-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100622-V02-25-page2.txt: [('co', 'operation')] LUH19100622-V02-25-page6.txt: [('Frankli', 'n')] LUH19100622-V02-25-page7.txt: [('Mc', 'Reynolds')] LUH19100622-V02-25-page8.txt: [('SEV', 'ENTH'), ('re', 'elected')] LUH19100629-V02-26-page12.txt: [('SEV', 'ENTH')] LUH19100629-V02-26-page2.txt: [('pre', 'existence')] LUH19100629-V02-26-page4.txt: [('Truf', 'ant')] LUH19100706-V02-27-page10.txt: [('SEV', 'ENTH')] LUH19100713-V02-28-page2.txt: [('co', 'operate')] LUH19100713-V02-28-page3.txt: [('Id', 'aville'), ('co', 'workers'), ('Walkerto', 'n')] LUH19100713-V02-28-page7.txt: [("L'", 'Anse')] LUH19100713-V02-28-page8.txt: [('ap', 'pear'), ('SEV', 'ENTH'), ('ma', 'rriage')] LUH19100720-V02-29-page1.txt: [('Mc', 'REYNOLDS'), ('re', 'reading')] LUH19100720-V02-29-page10.txt: [('th', 'at')] LUH19100720-V02-29-page12.txt: [('SEV', 'ENTH')] LUH19100720-V02-29-page3.txt: [('co', 'operate')] LUH19100720-V02-29-page5.txt: [('oc', 'casion')] LUH19100727-V02-30-page1.txt: [('co', 'operate')] LUH19100727-V02-30-page3.txt: [('pu', 'ng')] LUH19100727-V02-30-page7.txt: [("L'", 'Anse'), ('re', 'incorporation')] LUH19100727-V02-30-page8.txt: [('SEV', 'ENTH')] LUH19100803-V02-31-page5.txt: [('coun', 'try'), ('co', 'laborers'), ('G.', '')] LUH19100803-V02-31-page8.txt: [('SEV', 'ENTH')] LUH19100810-V02-32-page11.txt: [('co', 'operation')] LUH19100810-V02-32-page12.txt: [('SEV', 'ENTH'), ('Presi', 'dent')] LUH19100810-V02-32-page4.txt: [('Id', 'aville'), ('Walkerto', 'n')] LUH19100810-V02-32-page7.txt: [('Ee', 'L')] LUH19100810-V02-32-page9.txt: [('op', 'portunity'), ('th', 'at')] LUH19100817-V02-33-page8.txt: [('SEV', 'ENTH')] LUH19100824-V02-34-page3.txt: [('afternoo', 'n')] LUH19100824-V02-34-page4.txt: [('expres', 'sions'), ('Walkerto', 'n')] LUH19100824-V02-34-page7.txt: [('Deca', 'tur')] LUH19100824-V02-34-page8.txt: [('SEV', 'ENTH')] LUH19100831-V02-35-page2.txt: [('co', 'operate')] LUH19100831-V02-35-page3.txt: [('co', 'operation')] LUH19100831-V02-35-page4.txt: [('co', 'laborers')] LUH19100831-V02-35-page6.txt: [('th', 'a')] LUH19100831-V02-35-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100907-V02-36-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100914-V02-37-page4.txt: [('co', 'operate'), ('re', 'elected')] LUH19100914-V02-37-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100921-V02-38-page1.txt: [('Vo', 'L')] LUH19100921-V02-38-page2.txt: [('co', 'operation')] LUH19100921-V02-38-page3.txt: [('co', 'operate'), ('confe', 'rences')] LUH19100921-V02-38-page8.txt: [('SEV', 'ENTH-DAY')] LUH19100928-V02-39-page1.txt: [('Vo', 'L')] LUH19100928-V02-39-page4.txt: [('Walkerto', 'n')] LUH19100928-V02-39-page5.txt: [('Truf', 'ant')] LUH19100928-V02-39-page6.txt: [('re', 'organized')] LUH19100928-V02-39-page7.txt: [('Mc', 'Eachern')] LUH19100928-V02-39-page8.txt: [('SEV', 'ENTH-DAY')] LUH19101005-V02-40-page12.txt: [('SEV', 'ENTH'), ('fa', 'Vor')] LUH19101005-V02-40-page6.txt: [('co', 'operate')] LUH19101005-V02-40-page9.txt: [('co', 'operate')] LUH19101012-V02-41-page12.txt: [('SUPERINTEN', 'DENTS'), ('SEV', 'ENTH-DAY')] LUH19101012-V02-41-page3.txt: [('Id', 'aville'), ('co', 'operation')] LUH19101012-V02-41-page7.txt: [('Truf', 'ant')] LUH19101012-V02-41-page9.txt: [('AMA', 'DON')] LUH19101019-V02-42-page5.txt: [('co', 'operation')] LUH19101019-V02-42-page8.txt: [('SEV', 'ENTH'), ('Re', 'view')] LUH19101026-V02-43-page6.txt: [('co', 'operate')] LUH19101026-V02-43-page8.txt: [('SEV', 'ENTH')] LUH19101102-V02-44-page5.txt: [('Sae', 'ther')] LUH19101102-V02-44-page8.txt: [('postp', 'aid'), ('EDITO', 'R'), ('SEV', 'ENTH-DAY')] LUH19101109-V02-45-page8.txt: [('SEV', 'ENTH-DAY')] LUH19101116-V02-46-page5.txt: [('ta', 'W')] LUH19101116-V02-46-page8.txt: [('SEV', 'ENTH'), ('co', 'operation')] LUH19101123-V02-47-page3.txt: [('Mc', 'Mahan')] LUH19101123-V02-47-page6.txt: [('Kala', 'mazoo'), ('confe', 'rence')] LUH19101123-V02-47-page8.txt: [('EDITO', 'R'), ('SEV', 'ENTH')] LUH19101130-V02-48-page8.txt: [('SEV', 'ENTH'), ('Al', 'E')] LUH19101207-V02-49-page12.txt: [('Truf', 'ant')] LUH19101207-V02-49-page5.txt: [('th', 'a')] LUH19101207-V02-49-page6.txt: [('Richa', 'rdson'), ('co', 'operated')] LUH19101207-V02-49-page8.txt: [('SEV', 'ENTH-DAY')] LUH19101214-V02-50-page1.txt: [('Ca', 'n')] LUH19101214-V02-50-page8.txt: [('SEV', 'ENTH-DAY')] LUH19101221-V02-51-page12.txt: [('SEV', 'ENTH')] LUH19101221-V02-51-page7.txt: [('Truf', 'ant')] LUH19110111-V03-02-page8.txt: [('oth', 'er'), ('th', 'at')] LUH19110118-V03-03-page1.txt: [('re', 'election')] LUH19110118-V03-03-page5.txt: [('re', 'entered')] LUH19110118-V03-03-page6.txt: [('Id', 'aville')] LUH19110118-V03-03-page8.txt: [('th', 'at')] LUH19110125-V03-04-page2.txt: [('prepar', 'ing')] LUH19110201-V03-05-page1.txt: [('re', 'study')] LUH19110215-V03-07-page7.txt: [('OU', 'R')] LUH19110301-V03-09-page6.txt: [('co', 'operate')] LUH19110315-V03-11-page8.txt: [('lec', 'ture')] LUH19110322-V03-12-page13.txt: [('Truf', 'ant')] LUH19110322-V03-12-page14.txt: [('Mc', 'Connell')] LUH19110322-V03-12-page15.txt: [('G.', '')] LUH19110322-V03-12-page3.txt: [('co', 'operation')] LUH19110329-V03-13-page2.txt: [('co', 'operate')] LUH19110405-V03-14-page3.txt: [('co', 'operation')] LUH19110405-V03-14-page8.txt: [('Mis', 'C')] LUH19110412-V03-15-page7.txt: [('Truf', 'ant'), ('co', 'operate'), ('G.', '')] LUH19110419-V03-16-page1.txt: [('co', 'operate')] LUH19110419-V03-16-page6.txt: [('Wautom', 'a')] LUH19110426-V03-17-page3.txt: [('Hof', 'stra'), ('co', 'operating')] LUH19110426-V03-17-page8.txt: [('ou', 'r')] LUH19110503-V03-18-page5.txt: [('co', 'operate')] LUH19110510-V03-19-page2.txt: [('co', 'operation')] LUH19110517-V03-20-page1.txt: [('re', 'ceive')] LUH19110517-V03-20-page7.txt: [('Truf', 'ant')] LUH19110524-V03-21-page2.txt: [('Ingathe', 'ring')] LUH19110531-V03-22-page4.txt: [('Experi', 'ence'), ('wa', 'l')] LUH19110531-V03-22-page7.txt: [('CO', 'D')] LUH19110531-V03-22-page8.txt: [('co', 'operation')] LUH19110607-V03-23-page1.txt: [('pa', 'in')] LUH19110607-V03-23-page4.txt: [('thi', 's')] LUH19110607-V03-23-page5.txt: [('co', 'operation')] LUH19110607-V03-23-page6.txt: [('Ingath', 'ering')] LUH19110607-V03-23-page7.txt: [('CO', 'G')] LUH19110614-V03-24-page5.txt: [('reme', 'mbered'), ('co', 'workers')] LUH19110614-V03-24-page7.txt: [('Truf', 'ant')] LUH19110614-V03-24-page8.txt: [('G.', '')] LUH19110621-V03-25-page2.txt: [('co', 'operate')] LUH19110621-V03-25-page6.txt: [('al', 'low'), ('Si', 'g')] LUH19110621-V03-25-page8.txt: [('CO', 'G')] LUH19110628-V03-26-page7.txt: [('re', 'mains')] LUH19110712-V03-28-page2.txt: [('Truf', 'ant')] LUH19110712-V03-28-page3.txt: [('MCEACHER', 'N')] LUH19110712-V03-28-page6.txt: [('M.', '')] LUH19110719-V03-29-page2.txt: [('th', 'at')] LUH19110719-V03-29-page8.txt: [('Mc', 'Dill')] LUH19110726-V03-30-page3.txt: [('co', 'operating')] LUH19110726-V03-30-page6.txt: [('tra', 'in')] LUH19110726-V03-30-page8.txt: [('Hein', 'E')] LUH19110802-V03-31-page8.txt: [('Hein', 'E'), ('insertio', 'n')] LUH19110809-V03-32-page12.txt: [('Hein', 'E'), ('th', 'rough')] LUH19110809-V03-32-page3.txt: [('believ', 'ers'), ('wa', 'W')] LUH19110809-V03-32-page8.txt: [('STUREM', 'AN')] LUH19110816-V03-33-page8.txt: [('Hein', 'E')] LUH19110823-V03-34-page5.txt: [('UNIO', 'N')] LUH19110823-V03-34-page8.txt: [('Hein', 'E'), ('CO', 'G'), ('G.', '')] LUH19110830-V03-35-page3.txt: [('th', 'a')] LUH19110830-V03-35-page4.txt: [('th', 'e'), ('re', 'siding')] LUH19110830-V03-35-page8.txt: [('Hein', 'E')] LUH19110906-V03-36-page3.txt: [('re', 'locate')] LUH19110906-V03-36-page8.txt: [('Hein', 'E')] LUH19110913-V03-37-page2.txt: [('handi', 'work')] LUH19110913-V03-37-page3.txt: [('tw', 'o')] LUH19110913-V03-37-page6.txt: [('Disb', 'ursements')] LUH19110913-V03-37-page7.txt: [('Truf', 'ant')] LUH19110913-V03-37-page8.txt: [('Hein', 'E'), ('scho', 'ol')] LUH19110920-V03-38-page7.txt: [('co', 'operation')] LUH19110927-V03-39-page3.txt: [('Mc', 'CLELLAN')] LUH19111011-V03-41-page5.txt: [('Truf', 'ant')] LUH19111018-V03-42-page4.txt: [('imme', 'diate')] LUH19111101-V03-44-page8.txt: [('CO', 'R'), ('G.', '')] LUH19111108-V03-45-page2.txt: [('av', 'erage')] LUH19111108-V03-45-page4.txt: [('Mc', 'Crillis')] LUH19111108-V03-45-page8.txt: [('CO', 'P')] LUH19111115-V03-46-page7.txt: [('Truf', 'ant'), ('Po', 'tterville'), ('Kinderh', 'ook'), ('inte', 'rest')] LUH19111117-V03-46e-page3.txt: [('breth', 'ren')] LUH19111122-V03-47-page6.txt: [('ma', 'chines')] LUH19111122-V03-47-page7.txt: [('re', 'decorated')] LUH19111129-V03-48-page11.txt: [('re', 'elected')] LUH19111129-V03-48-page13.txt: [('th', 'in')] LUH19111129-V03-48-page15.txt: [('Shep', 'ard'), ('esti', 'mated')] LUH19111213-V03-50-page7.txt: [('th', 'or')] LUH19111220-V03-51-page6.txt: [('Truf', 'ant')] LUH19120103-V04-01-page5.txt: [('Novem', 'ber')] LUH19120109-V04-02-page2.txt: [('LEWSA', 'DDER')] LUH19120124-V04-04-page4.txt: [('Truf', 'ant')] LUH19120131-V04-05-page7.txt: [('Mc', 'Dill')] LUH19120221-V04-08-page3.txt: [('th', 'at')] LUH19120221-V04-08-page4.txt: [('representa', 'tive')] LUH19120221-V04-08s-page1.txt: [('Mc', 'Mahan')] LUH19120228-V04-09-page6.txt: [('th', 'in')] LUH19120306-V04-10-page3.txt: [('ti', 'e')] LUH19120313-V04-11-page4.txt: [('IL', 'E')] LUH19120320-V04-12-page7.txt: [('Mc', 'Coy'), ('th', 'U')] LUH19120327-V04-13-page6.txt: [('Bri', 'stol')] LUH19120403-V04-14-page3.txt: [('confere', 'nce')] LUH19120403-V04-14-page6.txt: [('reci', 'tations')] LUH19120410-V04-15-page8.txt: [('th', 'or')] LUH19120501-V04-18-page13.txt: [('re', 'consecrated')] LUH19120501-V04-18-page7.txt: [('re', 'organizations')] LUH19120501-V04-18-page9.txt: [('BU', 'R')] LUH19120508-V04-19-page4.txt: [('es', 'pecially')] LUH19120508-V04-19-page6.txt: [('gradu', 'ating')] LUH19120515-V04-20-page4.txt: [('re', 'port')] LUH19120515-V04-20-page5.txt: [('re', 'reading')] LUH19120515-V04-20-page7.txt: [('Truf', 'ant')] LUH19120522-V04-21-page1.txt: [('M.', '')] LUH19120522-V04-21-page7.txt: [('th', 'is')] LUH19120529-V04-22-page3.txt: [('Mc', 'Mahan'), ('MC', 'MAHAN')] LUH19120529-V04-22-page7.txt: [('Mc', 'Vagh')] LUH19120529-V04-22-page8.txt: [('bi', 'weekly')] LUH19120605-V04-23-page4.txt: [('Mc', 'Chesney')] LUH19120619-V04-25-page2.txt: [('Truf', 'ant')] LUH19120619-V04-25-page5.txt: [('Mc', 'Mahan')] LUH19120619-V04-25-page6.txt: [('UNIO', 'N')] LUH19120626-V04-26-page1.txt: [('Mc', 'Eachern')] LUH19120626-V04-26-page5.txt: [('SHEPA', 'RD')] LUH19120626-V04-26-page8.txt: [('CO', 'r')] LUH19120710-V04-28-page3.txt: [('fl', 'it')] LUH19120710-V04-28-page4.txt: [('se', 'cured')] LUH19120710-V04-28-page5.txt: [('BURKHOL', 'DER')] LUH19120717-V04-29-page3.txt: [('re', 'organize')] LUH19120717-V04-29-page7.txt: [('Luding', 'ton')] LUH19120724-V04-30-page12.txt: [('Truf', 'ant')] LUH19120724-V04-30-page15.txt: [('re', 'arranged')] LUH19120724-V04-30-page6.txt: [('LANGD', 'ON')] LUH19120724-V04-30-page7.txt: [('peo', 'ple')] LUH19120731-V04-31-page5.txt: [('LANGD', 'ON')] LUH19120731-V04-31-page6.txt: [('LANGD', 'ON')] LUH19120807-V04-32-page4.txt: [('circum', 'stances')] LUH19120814-V04-33-page1.txt: [('Mc', 'Reynolds')] LUH19120814-V04-33-page4.txt: [('Fos', 'sen'), ('Mc', 'VAGH')] LUH19120814-V04-33-page8.txt: [('Mc', 'VAGH'), ('MC', 'VAGH')] LUH19120821-V04-34-page5.txt: [('wor', "d's"), ('th', 'at')] LUH19120821-V04-34-page8.txt: [('Mc', 'VAGH')] LUH19120828-V04-35-page8.txt: [('Mc', 'VAGH')] LUH19120904-V04-36-page5.txt: [('MC', 'VAGH')] LUH19120904-V04-36-page7.txt: [('WEL', 'L'), ('co', 'workers')] LUH19120911-V04-37-page2.txt: [('Truf', 'ant')] LUH19120918-V04-38-page4.txt: [('re', 'introduced')] LUH19120918-V04-38-page7.txt: [('Illino', 'is')] LUH19120925-V04-39-page4.txt: [('Mc', 'Vagh')] LUH19120925-V04-39-page6.txt: [('urg', 'e')] LUH19121002-V04-40-page3.txt: [("Sec'", 'y'), ('possi', 'E')] LUH19121009-V04-41-page6.txt: [('Mc', 'Dill')] LUH19121016-V04-42-page2.txt: [('pre', 'paratory')] LUH19121016-V04-42-page4.txt: [('Sabba', 'th')] LUH19121016-V04-42-page6.txt: [('Mc', 'Reynolds')] LUH19121016-V04-42-page7.txt: [('Mc', 'Vagh')] LUH19121023-V04-43-page2.txt: [('mis', 'print')] LUH19121030-V04-44-page2.txt: [('mis', 'sion')] LUH19121030-V04-44-page4.txt: [('secre', 'tary')] LUH19121030-V04-44-page5.txt: [('congre', 'gation')] LUH19121030-V04-44-page6.txt: [('Truf', 'ant')] LUH19121030-V04-44-page7.txt: [('BO', 'No'), ('re', 'organized')] LUH19121106-V04-45-page4.txt: [('MC', 'VAGH')] LUH19121106-V04-45-page6.txt: [('ti', 'lt')] LUH19121106-V04-45-page8.txt: [('Balke', 'R')] LUH19121113-V04-46-page5.txt: [('acknowl', 'edged')] LUH19121120-V04-47-page1.txt: [('re', 'member')] LUH19121120-V04-47-page3.txt: [('Mc', 'VAGH')] LUH19121120-V04-47-page5.txt: [('Hu', 'gh')] LUH19121127-V04-48-page4.txt: [('farmin', 'g')] LUH19121127-V04-48-page5.txt: [('Mc', 'Vagh')] LUH19121127-V04-48-page6.txt: [('th', 'at')] LUH19121204-V04-49-page3.txt: [('pre', 'eminently')] LUH19121204-V04-49-page5.txt: [('possi', 'ble')] LUH19121204-V04-49-page7.txt: [('Colleg', 'e')] LUH19121204-V04-49-page8.txt: [('Mc', 'Henry')] LUH19121211-V04-50-page4.txt: [('Mc', 'Vagh')] LUH19121218-V04-51-page4.txt: [('Mc', 'Vagh')] LUH19121218-V04-51-page5.txt: [('M.', ''), ('na', 'v'), ('Freel', 'and'), ('Mc', 'Gee')] LUH19121225-V04-52-page7.txt: [('MC', 'VAGH')] LUH19121225-V04-52-page8.txt: [('Ea', 't')] LUH19130108-V05-01-page3.txt: [('organiza', 'tion'), ('Mc', 'Intyre')] LUH19130108-V05-01-page5.txt: [('MC', 'MAHAN')] LUH19130115-V05-02-page3.txt: [('Agen', 't')] LUH19130115-V05-02-page7.txt: [('forti', 'tude')] LUH19130122-V05-03-page8.txt: [('Re', 'fined')] LUH19130129-V05-04-page5.txt: [('Truf', 'ant'), ('Agen', 't')] LUH19130205-V05-05-page6.txt: [('Jolie', 't')] LUH19130205-V05-05-page7.txt: [('M.', '')] LUH19130205-V05-05-page8.txt: [('te', 'ed'), ('re', 'turns')] LUH19130219-V05-07-page6.txt: [('Mc', 'Vagh')] LUH19130219-V05-07-page7.txt: [('Mc', 'Vagh')] LUH19130226-V05-08-page1.txt: [('neces', 'sary')] LUH19130305-V05-09-page8.txt: [('Mc', 'Vagh')] LUH19130312-V05-10-page1.txt: [('Mc', 'Reynolds'), ('MC', 'REYNOLDS')] LUH19130312-V05-10-page3.txt: [('Truf', 'ant')] LUH19130312-V05-10-page7.txt: [('Kellm', 'an')] LUH19130319-V05-11-page2.txt: [('th', 'a')] LUH19130319-V05-11-page5.txt: [('Mc', 'Reynolds')] LUH19130319-V05-11-page7.txt: [('Po', 's')] LUH19130326-V05-12-page5.txt: [('Freel', 'and')] LUH19130326-V05-12-page8.txt: [('Truf', 'ant')] LUH19130326-V05-12-page9.txt: [('th', 'at')] LUH19130402-V05-13-page3.txt: [('CO', 'LABORERS')] LUH19130402-V05-13-page6.txt: [('Mc', 'CLURE')] LUH19130409-V05-14-page3.txt: [('unwil', 'ling')] LUH19130430-V05-17-page4.txt: [('Id', 'aville')] LUH19130528-V05-21-page4.txt: [('th', 'in')] LUH19130528-V05-21-page5.txt: [('re', 'enter')] LUH19130604-V05-22-page5.txt: [('pleasa', 'nt')] LUH19130611-V05-23-page2.txt: [('th', 'under')] LUH19130618-V05-24-page6.txt: [('th', 'in')] LUH19130618-V05-24-page7.txt: [('DA', 'M')] LUH19130625-V05-25-page6.txt: [('Truf', 'ant')] LUH19130625-V05-25-page8.txt: [('Mc', 'Cormick')] LUH19130716-V05-28-page5.txt: [('notwith', 'standing')] LUH19130716-V05-28-page8.txt: [('BR', 'No')] LUH19130723-V05-29-page3.txt: [('th', 'at'), ('Bluf', 'ord')] LUH19130723-V05-29-page6.txt: [('Truf', 'ant'), ('th', 'in')] LUH19130730-V05-30-page1.txt: [('facul', 'ty')] LUH19130730-V05-30-page6.txt: [('ex', 'hortations')] LUH19130730-V05-30-page8.txt: [('STURE', 'MAN')] LUH19130730-V05-30-page9.txt: [('Orde', 'rs')] LUH19130813-V05-32-page6.txt: [('Truf', 'ant'), ('M.', '')] LUH19130820-V05-33-page4.txt: [('pa', 'in')] LUH19130827-V05-34-page3.txt: [('th', 'or')] LUH19130903-V05-35-page7.txt: [('ac', 'cepted')] LUH19130903-V05-35-page8.txt: [('Adventis', 'ts')] LUH19130910-V05-36-page2.txt: [('sanc', 'tifying')] LUH19130910-V05-36-page8.txt: [('th', 'e')] LUH19130924-V05-38-page6.txt: [('ti', 'ti'), ('Re', 'ceived')] LUH19131001-V05-39-page6.txt: [('th', 'in')] LUH19131001-V05-39-page8.txt: [('IL', 'L')] LUH19131008-V05-40-page7.txt: [('BR', 'East')] LUH19131015-V05-41-page16.txt: [('IL', 'a'), ('PP', 'F')] LUH19131015-V05-41-page8.txt: [('Sabba', 'th')] LUH19131022-V05-42-page6.txt: [('th', 'at')] LUH19131022-V05-42-page7.txt: [('Presiden', 't')] LUH19131022-V05-42-page8.txt: [('BR', 'East')] LUH19131029-V05-43-page2.txt: [('th', 'at')] LUH19131029-V05-43-page5.txt: [('Mc', 'Vagh')] LUH19131029-V05-43-page8.txt: [('BR', 'East'), ('Balke', 'R'), ('PP', 'F')] LUH19131105-V05-44-page13.txt: [('Truf', 'ant')] LUH19131105-V05-44-page3.txt: [('Mc', 'Vagh')] LUH19131105-V05-44-page4.txt: [('co', 'operation')] LUH19131112-V05-45-page8.txt: [('PP', 'F')] LUH19131119-V05-46-page4.txt: [('th', 'a'), ('ordin', 'ances')] LUH19131119-V05-46-page5.txt: [('Oc', 'tober'), ('th', 'in'), ('ra', 'se')] LUH19131210-V05-49-page2.txt: [('th', 'at')] LUH19131210-V05-49-page3.txt: [('Truf', 'ant')] LUH19131210-V05-49-page8.txt: [('th', 'or')] LUH19131217-V05-50-page1.txt: [('th', 'at')] LUH19131217-V05-50-page12.txt: [('ch', 'at'), ('co', 'Partners')] LUH19131217-V05-50-page2.txt: [('askin', 'g')] LUH19131217-V05-50-page3.txt: [('enterp', 'rises')] LUH19131217-V05-50-page6.txt: [('Mc', 'Vagh')] LUH19131224-V05-51-page6.txt: [('UNIO', 'N')] LUH19140107-V06-01-page2.txt: [('th', 'A')] LUH19140114-V06-02-page7.txt: [('Balke', 'R')] LUH19140204-V06-05-page4.txt: [('PP', 'F')] LUH19140211-V06-06-page2.txt: [('Truf', 'ant')] LUH19140218-V06-07-page4.txt: [('M.', '')] LUH19140218-V06-07-page8.txt: [('M.', ''), ('HITC', 'HCOCK')] LUH19140225-V06-08-page3.txt: [('un', 'expired'), ('sustenta', 'tion')] LUH19140304-V06-09-page2.txt: [('Id', 'aville')] LUH19140311-V06-10-page3.txt: [('th', 'at')] LUH19140311-V06-10-page4.txt: [('BI', 'LL')] LUH19140318-V06-11-page3.txt: [('M.', '')] LUH19140325-V06-12-page5.txt: [('Truf', 'ant'), ('re', 'echoed')] LUH19140325-V06-12-page7.txt: [('BR', 'R')] LUH19140401-V06-13-page6.txt: [('Pr', 'ice')] LUH19140408-V06-14-page2.txt: [('th', 'a')] LUH19140422-V06-16-page10.txt: [('Hazelt', 'on')] LUH19140422-V06-16-page13.txt: [('PP', 'F')] LUH19140422-V06-16-page14.txt: [('PP', 'F')] LUH19140422-V06-16-page9.txt: [('Truf', 'ant')] LUH19140506-V06-18-page3.txt: [('re', 'affirm')] LUH19140513-V06-19-page10.txt: [('aro', 'using')] LUH19140513-V06-19-page4.txt: [('fai', 'th')] LUH19140527-V06-21-page2.txt: [('Truf', 'ant'), ('Po', 'tterville'), ('Id', 'aville')] LUH19140527-V06-21-page4.txt: [('M.', '')] LUH19140527-V06-21-page5.txt: [('th', 'at')] LUH19140603-V06-22-page6.txt: [('Mc', 'Intyre')] LUH19140617-V06-24-page7.txt: [('BR', 'East')] LUH19140624-V06-25-page1.txt: [('BERRI', 'EN')] LUH19140624-V06-25-page8.txt: [('Mc', 'Laughlin')] LUH19140701-V06-26-page4.txt: [('Truf', 'ant')] LUH19140701-V06-26-page7.txt: [('BR', 'R')] LUH19140708-V06-27-page7.txt: [('Ruf', 'E')] LUH19140715-V06-28-page6.txt: [('Mc', 'Vagh')] LUH19140715-V06-28-page7.txt: [('UNIO', 'N')] LUH19140722-V06-29-page2.txt: [('Mc', 'Vagh')] LUH19140722-V06-29-page7.txt: [('SP', 'ARKS')] LUH19140729-V06-30-page1.txt: [('Conver', 'sions')] LUH19140805-V06-31-page4.txt: [('UNIO', 'N')] LUH19140812-V06-32-page2.txt: [('Ameri', 'can')] LUH19140812-V06-32-page5.txt: [('Mc', 'Vagh')] LUH19140819-V06-33-page4.txt: [('re', 'christening')] LUH19140923-V06-38-page2.txt: [('th', 'in')] LUH19140923-V06-38-page4.txt: [('Soo', 'the')] LUH19140930-V06-39-page6.txt: [('UNIO', 'N')] LUH19141022-V06-42-page11.txt: [('Truf', 'ant'), ('Mc', 'Vagh')] LUH19141104-V06-44-page6.txt: [('Mc', 'VAGH')] LUH19141104-V06-44-page7.txt: [('Si', 'L')] LUH19141118-V06-46-page10.txt: [('Co', 'To'), ('WA', 'NTED'), ('Bo', 'dy')] LUH19141202-V06-48-page5.txt: [('UN', 'ION')] LUH19141216-V06-50-page3.txt: [('Truf', 'ant')] LUH19141216-V06-50-page7.txt: [('Mc', 'Leod')] LUH19150106-V07-01-page1.txt: [('re', 'ship')] LUH19150120-V07-03-page3.txt: [('sympa', 'thetic')] LUH19150127-V07-04-page8.txt: [('th', 'in')] LUH19150224-V07-08-page7.txt: [('WA', 'NTED')] LUH19150310-V07-10-page6.txt: [('Certifi', 'cates')] LUH19150317-V07-11-page3.txt: [('Mc', 'VAGH')] LUH19150317-V07-11-page6.txt: [('M.', '')] LUH19150324-V07-12-page16.txt: [('Ea', 'r')] LUH19150324-V07-12-page9.txt: [('Truf', 'ant')] LUH19150407-V07-14-page8.txt: [('Heini', 'g')] LUH19150414-V07-15-page3.txt: [('Id', 'aville')] LUH19150414-V07-15-page4.txt: [('M.', '')] LUH19150421-V07-16-page3.txt: [('Truf', 'ant')] LUH19150421-V07-16-page5.txt: [('representatio', 'n')] LUH19150421-V07-16-page6.txt: [('th', 'A')] LUH19150428-V07-17-page7.txt: [('ro', 'C')] LUH19150512-V07-19-page5.txt: [('M.', '')] LUH19150512-V07-19-page7.txt: [('DA', 'RT')] LUH19150519-V07-20-page5.txt: [('Truf', 'ant'), ('re', 'dedication')] LUH19150519-V07-20-page8.txt: [('BR', 'East')] LUH19150526-V07-21-page3.txt: [('Id', 'aville')] LUH19150526-V07-21-page7.txt: [('BR', 'R')] LUH19150602-V07-22-page1.txt: [('PA', 'W'), ('WO', 'nt')] LUH19150602-V07-22-page5.txt: [('Ve', 'rsus')] LUH19150609-V07-23-page7.txt: [('M.', '')] LUH19150609-V07-23-page8.txt: [('Wa', 'r')] LUH19150616-V07-24-page3.txt: [('Truf', 'ant')] LUH19150616-V07-24-page5.txt: [('Id', 'aville')] LUH19150616-V07-24-page6.txt: [('UNIO', 'N'), ('th', 'at')] LUH19150623-V07-25-page4.txt: [('appendi', 'citis')] LUH19150630-V07-26-page6.txt: [('BR', 'R')] LUH19150714-V07-28-page3.txt: [('ba', 'the')] LUH19150714-V07-28-page7.txt: [('BR', 'A')] LUH19150721-V07-29-page3.txt: [('UNIO', 'N')] LUH19150721-V07-29-page7.txt: [('BR', 'Anton')] LUH19150728-V07-30-page7.txt: [('BR', 'R'), ('M.', '')] LUH19150804-V07-31-page3.txt: [('Mc', 'Chesney')] LUH19150804-V07-31-page7.txt: [('BR', 'East'), ('Alf', 'reda')] LUH19150811-V07-32-page14.txt: [('estab', 'lished')] LUH19150811-V07-32-page15.txt: [('OC', 'H')] LUH19150811-V07-32-page6.txt: [('re', 'christening')] LUH19150818-V07-33-page14.txt: [('BR', 'East'), ('UN', 'ION')] LUH19150818-V07-33-page16.txt: [('Mc', 'Allister')] LUH19150818-V07-33-page4.txt: [('mak', 'ing')] LUH19150818-V07-33-page5.txt: [('th', 'at')] LUH19150825-V07-34-page7.txt: [('M.', '')] LUH19150901-V07-35-page3.txt: [('Mc', 'VAGH')] LUH19150901-V07-35-page7.txt: [('BR', 'A')] LUH19150908-V07-36-page3.txt: [('Mc', 'VAGH')] LUH19150908-V07-36-page4.txt: [('Mc', 'Kee')] LUH19150908-V07-36-page8.txt: [("summer'", 's')] LUH19150915-V07-37-page6.txt: [('UNIO', 'N')] LUH19150922-V07-38-page7.txt: [('BR', 'Ead'), ('Truf', 'ant')] LUH19150929-V07-39-page1.txt: [('Wes', 'tworth')] LUH19150929-V07-39-page4.txt: [('UNIO', 'N'), ('Id', 'aville')] LUH19150929-V07-39-page7.txt: [('BR', 'A')] LUH19151006-V07-40-page7.txt: [('Alf', 'reda')] LUH19151013-V07-41-page1.txt: [('re', 'L')] LUH19151103-V07-44-page5.txt: [('Id', 'aville'), ('M.', '')] LUH19151110-V07-45-page4.txt: [('Truf', 'ant')] LUH19151110-V07-45-page7.txt: [('BR', 'East')] LUH19151124-V07-47-page7.txt: [('BR', 'East')] LUH19151201-V07-48-page7.txt: [('BR', 'East')] LUH19151222-V07-51-page7.txt: [('Truf', 'ant')] LUH19160105-V08-01-page7.txt: [('BR', 'and')] LUH19160112-V08-02-page2.txt: [('accus', 'tomed')] LUH19160112-V08-02-page7.txt: [('BR', 'R'), ('UNIO', 'N')] LUH19160119-V08-03-page4.txt: [('Truf', 'ant'), ('M.', '')] LUH19160202-V08-05-page7.txt: [('BR', 'East')] LUH19160209-V08-06-page4.txt: [('Kellm', 'an')] LUH19160216-V08-07-page1.txt: [('rp', 't')] LUH19160216-V08-07-page6.txt: [('UNIO', 'N')] LUH19160223-V08-08-page11.txt: [('BR', 'R')] LUH19160308-V08-10-page14.txt: [('CONFE', 'RENCE')] LUH19160308-V08-10-page17.txt: [('M.', ''), ('Re', 'A')] LUH19160308-V08-10-page6.txt: [('re', 'located')] LUH19160315-V08-11-page11.txt: [('co', 'operation')] LUH19160315-V08-11-page16.txt: [('exper', 'ience'), ('th', 'e')] LUH19160315-V08-11-page2.txt: [('co', 'operation')] LUH19160315-V08-11-page9.txt: [("God'", 's')] LUH19160322-V08-12-page14.txt: [('re', 'made')] LUH19160322-V08-12-page19.txt: [('Mc', 'Farland')] LUH19160322-V08-12-page2.txt: [('Hof', 'stra')] LUH19160322-V08-12-page25.txt: [('Mc', 'Vagh')] LUH19160322-V08-12-page3.txt: [('G.', '')] LUH19160322-V08-12-page30.txt: [('th', 'a')] LUH19160322-V08-12-page32.txt: [('re', 'read')] LUH19160322-V08-12-page37.txt: [('M.', ''), ('re', 'read')] LUH19160322-V08-12-page4.txt: [('M.', '')] LUH19160322-V08-12-page43.txt: [('co', 'operation')] LUH19160329-V08-13-page4.txt: [('Truf', 'ant')] LUH19160412-V08-15-page4.txt: [('ex', 'pect')] LUH19160412-V08-15-page7.txt: [('BR', 'East')] LUH19160419-V08-16-page1.txt: [('Wes', 'tworth')] LUH19160419-V08-16-page6.txt: [('M.', '')] LUH19160426-V08-17-page4.txt: [('Hof', 'stra')] LUH19160503-V08-18-page2.txt: [('co', 'operation')] LUH19160510-V08-19-page2.txt: [('partic', 'ular')] LUH19160510-V08-19-page7.txt: [('MadiSo', 'n')] LUH19160517-V08-20-page6.txt: [('UNIO', 'N')] LUH19160524-V08-21-page1.txt: [('ex', 'cellent')] LUH19160524-V08-21-page7.txt: [('BR', 'East')] LUH19160531-V08-22-page11.txt: [('ap', 'Plauded'), ('re', 'ceived')] LUH19160531-V08-22-page6.txt: [('th', 'a')] LUH19160607-V08-23-page4.txt: [('improv', 'e')] LUH19160614-V08-24-page1.txt: [('re', 'L')] LUH19160614-V08-24-page6.txt: [("don'", 't')] LUH19160614-V08-24-page7.txt: [('un', 'usually')] LUH19160614-V08-24-page8.txt: [('BR', 'R')] LUH19160628-V08-26-page5.txt: [('Truf', 'ant')] LUH19160628-V08-26-page7.txt: [('Mc', 'BRIDE')] LUH19160712-V08-28-page3.txt: [('Mc', 'Kee')] LUH19160726-V08-30-page6.txt: [('Sev', 'ener')] LUH19160726-V08-30-page7.txt: [('BR', 'R')] LUH19160802-V08-31-page12.txt: [('Birnam', 'wood')] LUH19160802-V08-31-page16.txt: [('BR', 'A')] LUH19160802-V08-31-page3.txt: [('Li', 'es')] LUH19160802-V08-31-page8.txt: [('re', 'dedicate')] LUH19160816-V08-33-page8.txt: [('BR', 'R')] LUH19160830-V08-35-page8.txt: [('BR', 'East')] LUH19160913-V08-37-page3.txt: [('tri', 'umphantly')] LUH19160913-V08-37-page7.txt: [('Alf', 'reda')] LUH19160920-V08-38-page7.txt: [('BR', 'A')] LUH19160920-V08-38-page8.txt: [('Mc', 'Bride')] LUH19160927-V08-39-page7.txt: [('BR', 'East')] LUH19161004-V08-40-page8.txt: [('BR', 'R')] LUH19161011-V08-41-page5.txt: [('re', 'decorated')] LUH19161011-V08-41-page6.txt: [('Al', 'e')] LUH19161011-V08-41-page8.txt: [('BR', 'A')] LUH19161018-V08-42-page4.txt: [('re', 'canvass')] LUH19161018-V08-42-page5.txt: [('Truf', 'ant'), ('M.', '')] LUH19161025-V08-43-page8.txt: [('Da', 'y')] LUH19161101-V08-44-page5.txt: [('ex', 'pressed')] LUH19161101-V08-44-page8.txt: [('BR', 'Ea'), ('ri', 'v')] LUH19161108-V08-45-page3.txt: [("treasurer'", 's')] LUH19161115-V08-46-page1.txt: [('sa', 'm')] LUH19161115-V08-46-page5.txt: [('Truf', 'ant'), ('th', 'a')] LUH19161122-V08-47-page3.txt: [('moun', 'tain')] LUH19161122-V08-47-page7.txt: [('Graha', 'm'), ('ri', 'v')] LUH19161129-V08-48-page3.txt: [('Truf', 'ant')] LUH19161206-V08-49-page8.txt: [('Ea', 't')] LUH19161213-V08-50-page11.txt: [('BR', 'a'), ('Balke', 'R')] LUH19161220-V08-51-page2.txt: [('M.', '')] LUH19161220-V08-51-page4.txt: [('th', 'in')] LUH19170103-V09-01-page7.txt: [('th', 'at')] LUH19170110-V09-02-page5.txt: [('BR', 'Ea')] LUH19170124-V09-04-page3.txt: [('Id', 'aville')] LUH19170124-V09-04-page7.txt: [('BR', 'Ea')] LUH19170131-V09-05-page3.txt: [('Ea', 'ton')] LUH19170131-V09-05-page4.txt: [('recup', 'erate')] LUH19170131-V09-05-page5.txt: [('ca', 'n')] LUH19170131-V09-05-page6.txt: [('Wes', 'tworth')] LUH19170131-V09-05-page7.txt: [('Balke', 'R')] LUH19170307-V09-10-page5.txt: [('Truf', 'ant')] LUH19170307-V09-10-page6.txt: [('th', 'at')] LUH19170307-V09-10-page7.txt: [('BR', 'Ea'), ('Ea', 't')] LUH19170314-V09-11-page6.txt: [('LAI', 'E')] LUH19170314-V09-11-page7.txt: [('BR', 'Ea'), ('fo', 'P')] LUH19170321-V09-12-page9.txt: [('Truf', 'ant')] LUH19170328-V09-13-page2.txt: [('clo', 'sed')] LUH19170328-V09-13-page7.txt: [('BR', 'R')] LUH19170404-V09-14-page5.txt: [('UNIO', 'N')] LUH19170418-V09-16-page2.txt: [('re', 'trying')] LUH19170425-V09-17-page12.txt: [('Alf', 'red')] LUH19170425-V09-17-page15.txt: [('BR', 'A')] LUH19170502-V09-18-page2.txt: [('al', 'ways')] LUH19170509-V09-19-page11.txt: [('BR', 'Est')] LUH19170516-V09-20-page4.txt: [('BR', 'East')] LUH19170523-V09-21-page4.txt: [('Co', 'p')] LUH19170523-V09-21-page7.txt: [('BR', 'an')] LUH19170530-V09-22-page1.txt: [('fai', 't')] LUH19170530-V09-22-page7.txt: [('Po', 's')] LUH19170606-V09-23-page3.txt: [('Truf', 'ant')] LUH19170606-V09-23-page7.txt: [('BR', 'A')] LUH19170613-V09-24-page5.txt: [('th', 'is')] LUH19170613-V09-24-page6.txt: [('ti', 'The')] LUH19170613-V09-24-page8.txt: [('Po', 's'), ('Ea', 't')] LUH19170620-V09-25-page7.txt: [('BR', 'A')] LUH19170627-V09-26-page2.txt: [('Orva', 'L')] LUH19170627-V09-26-page6.txt: [('th', 'at')] LUH19170627-V09-26-page7.txt: [('Mc', 'Dill')] LUH19170704-V09-27-page8.txt: [('inspira', 'tion')] LUH19170711-V09-28-page7.txt: [('HM', 'M')] LUH19170711-V09-28-page8.txt: [('Mc', 'Dowell')] LUH19170718-V09-29-page11.txt: [('ry', 'A')] LUH19170718-V09-29-page3.txt: [('Truf', 'ant')] LUH19170718-V09-29-page9.txt: [('M.', '')] LUH19170725-V09-30-page8.txt: [('Ea', 't'), ('Duca', 'L')] LUH19170801-V09-31-page7.txt: [('Kimberlin', 'G'), ('GC', 'S')] LUH19170801-V09-31-page8.txt: [('HM', 'M')] LUH19170808-V09-32-page5.txt: [('Johan', 'ne')] LUH19170815-V09-33-page7.txt: [('pa', 'triotism')] LUH19170822-V09-34-page2.txt: [('Re', 'read')] LUH19170829-V09-35-page1.txt: [('Direc', 'tory')] LUH19170829-V09-35-page11.txt: [('Presbyte', 'rian'), ('th', 'at')] LUH19170905-V09-36-page3.txt: [('ca', 'me')] LUH19170905-V09-36-page7.txt: [('BR', 'East')] LUH19170912-V09-37-page3.txt: [('objec', 'tion')] LUH19170912-V09-37-page6.txt: [('M.', '')] LUH19170912-V09-37-page8.txt: [('BR', 'A')] LUH19170919-V09-38-page7.txt: [('BR', 'Ea'), ('Ea', 't')] LUH19170926-V09-39-page3.txt: [('Id', 'aville'), ('M.', '')] LUH19170926-V09-39-page5.txt: [('appro', 'priate')] LUH19171003-V09-40-page6.txt: [('Orva', 'L')] LUH19171003-V09-40-page7.txt: [('co', 'operation')] LUH19171017-V09-42-page4.txt: [('UNIO', 'N')] LUH19171024-V09-43-page5.txt: [('Truf', 'ant')] LUH19171031-V09-44-page2.txt: [('wa', 'g')] LUH19171031-V09-44-page3.txt: [('al', 'a')] LUH19171031-V09-44-page6.txt: [('Si', 'ft')] LUH19171031-V09-44-page8.txt: [('BR', 'EaSt')] LUH19171107-V09-45-page4.txt: [('solic', 'iting'), ('commun', 'ion')] LUH19171107-V09-45-page7.txt: [('Co', 'p')] LUH19171114-V09-46-page11.txt: [('BR', 'R'), ('Ea', 't')] LUH19171114-V09-46-page2.txt: [('Mond', 'ay')] LUH19171114-V09-46-page8.txt: [('Co', 'p')] LUH19171121-V09-47-page15.txt: [('BR', 'EaSt')] LUH19171121-V09-47-page7.txt: [('ni', 'ght')] LUH19171128-V09-48-page5.txt: [('ti', 'the')] LUH19171205-V09-49-page3.txt: [('Truf', 'ant')] LUH19171205-V09-49-page8.txt: [('BR', 'East')] LUH19171212-V09-50-page3.txt: [('pre', 'eminently')] LUH19171212-V09-50-page5.txt: [('co', 'operation')] LUH19171219-V09-51-page10.txt: [('answe', 'rs')] LUH19171219-V09-51-page4.txt: [('th', 'at')] LUH19171219-V09-51-page8.txt: [('succee', 'd')] LUH19171219-V09-51-page9.txt: [('Truf', 'ant')] LUH19180102-V10-01-page3.txt: [('Id', 'aville')] LUH19180102-V10-01-page6.txt: [('colpor', 'teurs')] LUH19180116-V10-03-page6.txt: [('co', 'operation')] LUH19180130-V10-05-page1.txt: [('M.', '')] LUH19180130-V10-05-page4.txt: [('Ruf', 'F')] LUH19180206-V10-06-page2.txt: [('co', 'operating')] LUH19180206-V10-06-page5.txt: [('Mc', 'Cormick')] LUH19180206-V10-06-page7.txt: [('Mc', 'Curdy'), ('Otta', 'va'), ('Orva', 'L')] LUH19180213-V10-07-page8.txt: [('BR', 'A')] LUH19180220-V10-08-page1.txt: [('co', 'laborers')] LUH19180220-V10-08-page10.txt: [('dum', 'dum')] LUH19180220-V10-08-page9.txt: [('re', 'united')] LUH19180227-V10-09-page1.txt: [('Mc', 'Elhany')] LUH19180227-V10-09-page3.txt: [('Ti', 'the')] LUH19180306-V10-10-page4.txt: [('co', 'operate')] LUH19180306-V10-10-page8.txt: [('OD', 'D')] LUH19180313-V10-11-page12.txt: [('BR', 'R')] LUH19180313-V10-11-page2.txt: [("I'", 'm')] LUH19180313-V10-11-page5.txt: [('aban', 'doned')] LUH19180320-V10-12-page3.txt: [('Ma', 'Ser')] LUH19180320-V10-12-page5.txt: [('SC', 'H'), ('M.', '')] LUH19180403-V10-14-page8.txt: [('Bulle', 'tins')] LUH19180410-V10-15-page7.txt: [('Kimberlin', 'G')] LUH19180508-V10-19-page4.txt: [('co', 'operation')] LUH19180515-V10-20-page5.txt: [('co', 'operation')] LUH19180515-V10-20-page7.txt: [('marrie', 'd')] LUH19180522-V10-21-page3.txt: [('Mc', 'Guire')] LUH19180522-V10-21-page4.txt: [('Milwau', 'kee')] LUH19180529-V10-22-page2.txt: [('Truf', 'ant')] LUH19180529-V10-22-page6.txt: [('Associ', 'ation')] LUH19180605-V10-23-page3.txt: [('Associ', 'ation')] LUH19180605-V10-23-page8.txt: [('Kimberlin', 'G')] LUH19180612-V10-24-page5.txt: [('Truf', 'ant')] LUH19180619-V10-25-page5.txt: [('th', 'at')] LUH19180626-V10-26-page7.txt: [('OD', 'ES'), ('Anders', 'on')] LUH19180703-V10-27-page2.txt: [('Mc', 'CONAUGHEY')] LUH19180703-V10-27-page3.txt: [('individu', 'al')] LUH19180703-V10-27-page7.txt: [('WW', 'W')] LUH19180703-V10-27-page8.txt: [('Maga', 'zine')] LUH19180710-V10-28-page11.txt: [('BR', 'Ea'), ('Ea', 't')] LUH19180710-V10-28-page5.txt: [('co', 'workers')] LUH19180710-V10-28-page7.txt: [('Mc', 'Eachern'), ('th', 'a')] LUH19180717-V10-29-page7.txt: [('OD', 'Ea')] LUH19180724-V10-30-page11.txt: [('CO', 'S')] LUH19180731-V10-31-page5.txt: [('sug', 'gested')] LUH19180731-V10-31-page7.txt: [('OD', 'D')] LUH19180731-V10-31-page8.txt: [('TH', 'E')] LUH19180807-V10-32-page7.txt: [('OD', 'E'), ('BR', 'A')] LUH19180814-V10-33-page10.txt: [('co', 'workers')] LUH19180814-V10-33-page11.txt: [('Truf', 'ant')] LUH19180814-V10-33-page15.txt: [('OD', 'E')] LUH19180814-V10-33-page7.txt: [('Ma', 'Ser')] LUH19180814-V10-33-page9.txt: [('class-', 'rooms')] LUH19180821-V10-34-page2.txt: [('ac', 'company')] LUH19180821-V10-34-page3.txt: [('pa', 'tients'), ('Ameri', 'can')] LUH19180821-V10-34-page6.txt: [('M.', '')] LUH19180821-V10-34-page7.txt: [('OD', 'On'), ('CI', 'D'), ('M.', ''), ('Bo', 'o')] LUH19180828-V10-35-page3.txt: [('campa', 'ign')] LUH19180828-V10-35-page4.txt: [('Wik', 'ander')] LUH19180828-V10-35-page6.txt: [('Colpo', 'rteurs')] LUH19180828-V10-35-page7.txt: [('HM', 'M')] LUH19180911-V10-37-page10.txt: [('subscriptio', 'ns')] LUH19180911-V10-37-page3.txt: [('th', 'is')] LUH19180911-V10-37-page5.txt: [('Wes', 'tworth')] LUH19180918-V10-38-page5.txt: [('M.', '')] LUH19180918-V10-38-page7.txt: [('OD', 'ES')] LUH19180925-V10-39-page3.txt: [('Truf', 'ant')] LUH19181009-V10-41-page3.txt: [('Mc', 'Conaughey')] LUH19181009-V10-41-page7.txt: [('OD', 'Ea'), ('Ea', 't')] LUH19181016-V10-42-page5.txt: [('Mc', 'Bride')] LUH19181016-V10-42-page8.txt: [('M.', '')] LUH19181016-V10-42-page9.txt: [('Truf', 'ant'), ('M.', '')] LUH19181023-V10-43-page6.txt: [('M.', '')] LUH19181023-V10-43-page7.txt: [('BR', 'East')] LUH19181120-V10-47-page3.txt: [('co', 'operation')] LUH19181127-V10-48-page3.txt: [('co', 'laborers'), ('tem', 'poral')] LUH19181127-V10-48-page8.txt: [('examinati', 'on')] LUH19181211-V10-50-page2.txt: [('edu', 'cation')] LUH19181211-V10-50-page8.txt: [('co', 'laborers')] LUH19181218-V10-51-page5.txt: [('Truf', 'ant')] LUH19190101-V11-01-page3.txt: [('wo', 'rk')] LUH19190108-V11-02-page5.txt: [('WW', 'W')] LUH19190115-V11-03-page3.txt: [('op', 'portunities')] LUH19190115-V11-03-page8.txt: [('op', 'portunity')] LUH19190122-V11-04-page14.txt: [('successf', 'ul')] LUH19190122-V11-04-page6.txt: [('VA', 'L')] LUH19190205-V11-06-page5.txt: [('neces', 'sary')] LUH19190212-V11-07-page5.txt: [('ri', 'a')] LUH19190212-V11-07-page7.txt: [('Anti-', 'Tobacco')] LUH19190212-V11-07-page9.txt: [('Truf', 'ant')] LUH19190219-V11-08-page14.txt: [('nomi', 'nal')] LUH19190219-V11-08-page4.txt: [('co', 'operation')] LUH19190219-V11-08-page6.txt: [('sa', 'loonist')] LUH19190226-V11-09-page4.txt: [('M.', '')] LUH19190312-V11-11-page14.txt: [('Ti', 'the')] LUH19190312-V11-11-page7.txt: [('bea', 'r')] LUH19190319-V11-12-page6.txt: [('citi', 'zens'), ('repre', 'sented')] LUH19190326-V11-13-page11.txt: [('BR', 'East')] LUH19190326-V11-13-page4.txt: [('Te', 'a')] LUH19190326-V11-13-page8.txt: [('corres', 'pondence')] LUH19190402-V11-14-page10.txt: [('suc', 'cess')] LUH19190402-V11-14-page6.txt: [('al', 'ways')] LUH19190416-V11-16-page10.txt: [('Truf', 'ant')] LUH19190423-V11-17-page14.txt: [('th', 'is')] LUH19190430-V11-18-page11.txt: [('BR', 'A'), ('Chica', 'go')] LUH19190430-V11-18-page2.txt: [('Treasur', 'er')] LUH19190430-V11-18-page6.txt: [('educa', 'tional')] LUH19190430-V11-18-page8.txt: [('Sa', 'bbath')] LUH19190521-V11-21-page7.txt: [('OD', 'D')] LUH19190528-V11-22-page1.txt: [('devasta', 'ting')] LUH19190604-V11-23-page11.txt: [('Br', 'other')] LUH19190604-V11-23-page12.txt: [('cour', 'tesies')] LUH19190604-V11-23-page9.txt: [('pa', 'r')] LUH19190618-V11-25-page10.txt: [('defi', 'nitely')] LUH19190618-V11-25-page11.txt: [('Kimberlin', 'G')] LUH19190618-V11-25-page3.txt: [('mAjori', 'ty')] LUH19190618-V11-25-page6.txt: [('Truf', 'ant'), ('M.', '')] LUH19190618-V11-25-page7.txt: [('M.', '')] LUH19190702-V11-27-page4.txt: [('afte', 'rnoon')] LUH19190702-V11-27-page7.txt: [('Hof', 'stra')] LUH19190709-V11-28-page7.txt: [('OD', 'D')] LUH19190716-V11-29-page7.txt: [('BR', 'East')] LUH19190716-V11-29-page8.txt: [('re', 'in')] LUH19190723-V11-30-page15.txt: [('BR', 'East')] LUH19190723-V11-30-page2.txt: [('re', 'ign')] LUH19190730-V11-31-page10.txt: [('interme', 'diate')] LUH19190730-V11-31-page11.txt: [('stra', 'W'), ('Hof', 'stra')] LUH19190806-V11-32-page10.txt: [('BR', 'East')] LUH19190806-V11-32-page9.txt: [('superinten', 'dent')] LUH19190813-V11-33-page1.txt: [('co', 'in')] LUH19190813-V11-33-page2.txt: [('founda', 'tion'), ('Septem', 'ber')] LUH19190820-V11-34-page1.txt: [('Vo', 'L')] LUH19190820-V11-34-page4.txt: [('litera', 'ture')] LUH19190820-V11-34-page5.txt: [('hav', 'e')] LUH19190827-V11-35-page12.txt: [('scho', 'ol')] LUH19190827-V11-35-page13.txt: [('M.', '')] LUH19190827-V11-35-page15.txt: [('stra', 'W'), ('Hof', 'stra')] LUH19190827-V11-35-page9.txt: [('Wau', 'kesha')] LUH19190903-V11-36-page3.txt: [('Countenan', 'ces')] LUH19190903-V11-36-page7.txt: [('re', 'ceived')] LUH19190910-V11-37-page8.txt: [('Wes', 'tworth')] LUH19190917-V11-38-page10.txt: [('MOR', 'RISON'), ('bo', 'rn'), ('re', 'tained')] LUH19190917-V11-38-page7.txt: [('wor', 'k')] LUH19190924-V11-39-page6.txt: [('M.', '')] LUH19190924-V11-39-page7.txt: [('Co', 'p')] LUH19190924-V11-39-page8.txt: [('Wi', 'tness')] LUH19191001-V11-40-page6.txt: [('Truf', 'ant'), ('UNIO', 'N')] LUH19191008-V11-41-page4.txt: [('pre', 'sented')] LUH19191008-V11-41-page5.txt: [('Wa', 'ters')] LUH19191008-V11-41-page7.txt: [('OD', 'd')] LUH19191015-V11-42-page11.txt: [('th', 'at')] LUH19191015-V11-42-page14.txt: [('Duq', 'uoin')] LUH19191015-V11-42-page5.txt: [('mu', 'd')] LUH19191015-V11-42-page9.txt: [('Evangelis', 'ts')] LUH19191022-V11-43-page13.txt: [('expen', 'ses'), ('mis', 'sionary')] LUH19191022-V11-43-page23.txt: [('OD', 'D')] LUH19191029-V11-44-page10.txt: [('bookkeep', 'ing')] LUH19191029-V11-44-page3.txt: [('fil', 'S')] LUH19191029-V11-44-page4.txt: [('timi', 'd')] LUH19191105-V11-45-page13.txt: [('bookkeep', 'ing')] LUH19191105-V11-45-page14.txt: [('wonderf', 'ul')] LUH19191105-V11-45-page7.txt: [('ou', 'r')] LUH19191105-V11-45-page9.txt: [('Mc', 'Chesney')] LUH19191112-V11-46-page2.txt: [('Missiona', 'ry')] LUH19191112-V11-46-page4.txt: [('peo', 'ple')] LUH19191119-V11-47-page8.txt: [('th', 'at')] LUH19191126-V11-48-page3.txt: [('Co', 'p')] LUH19191126-V11-48-page8.txt: [('UN', 'ION')] LUH19191203-V11-49-page4.txt: [('se', 'curing')] LUH19191210-V11-50-page10.txt: [('enjo', 'yable')] LUH19191210-V11-50-page14.txt: [('PO', 'CO')] LUH19191217-V11-51-page2.txt: [('Mis', 'Sionary')] LUH19191224-V11-52-page11.txt: [('oo', 'f')] LUH19191224-V11-52-page3.txt: [('pla', 'cing')] LUH19200107-V12-01-page2.txt: [('Mis', 'sionary')] LUH19200107-V12-01s1-page12.txt: [('co', 'operate')] LUH19200107-V12-01s1-page2.txt: [('Mis', 'sionary')] LUH19200107-V12-01s1-page3.txt: [('co', 'operation')] LUH19200114-V12-02-page2.txt: [('Mis', 'sionary')] LUH19200114-V12-02-page3.txt: [('Seventh-d', 'ay')] LUH19200114-V12-02-page6.txt: [('Indi', 'C')] LUH19200114-V12-02s2-page15.txt: [('se', 'very')] LUH19200114-V12-02s2-page9.txt: [('re', 'locate')] LUH19200121-V12-03-page2.txt: [('Mis', 'sionary')] LUH19200121-V12-03-page7.txt: [('Bara', 'boo')] LUH19200121-V12-03-page8.txt: [('Co', 'p')] LUH19200128-V12-04-page12.txt: [('re', 'quest')] LUH19200128-V12-04-page2.txt: [('Mis', 'sionary')] LUH19200128-V12-04-page3.txt: [('beli', 'eve')] LUH19200204-V12-05-page11.txt: [('Truf', 'ant')] LUH19200204-V12-05-page3.txt: [('Mis', 'sionary')] LUH19200211-V12-06-page11.txt: [('CO', 'CO')] LUH19200211-V12-06-page2.txt: [('Mis', 'sionary')] LUH19200218-V12-07-page14.txt: [('CO', 'CO')] LUH19200218-V12-07-page2.txt: [('Mis', 'sionary')] LUH19200218-V12-07-page5.txt: [('co', 'operation')] LUH19200218-V12-07-page8.txt: [('elt', 'on'), ('UNIO', 'N')] LUH19200225-V12-08-page11.txt: [('OD', 'ER')] LUH19200303-V12-09-page2.txt: [('Mis', 'sionary')] LUH19200310-V12-10-page11.txt: [('McCo', 'naughey')] LUH19200310-V12-10-page14.txt: [('ex', 'emplary')] LUH19200310-V12-10-page2.txt: [('Mis', 'sionary'), ('IL', 'K')] LUH19200310-V12-10-page3.txt: [('Truf', 'ant')] LUH19200317-V12-11-page2.txt: [('Mis', 'sionary')] LUH19200317-V12-11-page8.txt: [('co', 'operation')] LUH19200324-V12-12-page2.txt: [('Mis', 'sionary')] LUH19200324-V12-12-page7.txt: [('Mis', 's')] LUH19200331-V12-13-page2.txt: [('Mis', 'sionary')] LUH19200331-V12-13-page8.txt: [('necessa', 'ry')] LUH19200407-V12-14-page2.txt: [('Mis', 'sionary')] LUH19200407-V12-14-page4.txt: [('mOTHE', 'R')] LUH19200414-V12-15-page2.txt: [('Mis', 'sionary')] LUH19200421-V12-16-page2.txt: [('Mis', 'sionary')] LUH19200428-V12-17-page2.txt: [('Mis', 'sionary')] LUH19200428-V12-17-page5.txt: [('Bluf', 'ord')] LUH19200428-V12-17-page7.txt: [('sympo', 'sium')] LUH19200505-V12-18-page14.txt: [('CO', 'S')] LUH19200505-V12-18-page2.txt: [('Mis', 'sionary')] LUH19200512-V12-19-page11.txt: [('kingd', 'om')] LUH19200512-V12-19-page13.txt: [('ti', 'es')] LUH19200519-V12-20-page13.txt: [('th', 'a')] LUH19200519-V12-20-page14.txt: [('Truf', 'ant')] LUH19200526-V12-21-page4.txt: [('Id', 'aville')] LUH19200526-V12-21-page7.txt: [('WES', 'TWORTH')] LUH19200609-V12-23-page3.txt: [('Truf', 'ant')] LUH19200609-V12-23-page4.txt: [('ca', 'n')] LUH19200616-V12-24-page10.txt: [('CO', 'CO')] LUH19200616-V12-24-page12.txt: [('opportu', 'nities')] LUH19200623-V12-25-page2.txt: [('co', 'operation')] LUH19200623-V12-25-page5.txt: [('arti', 'cle'), ('gl', 'ad')] LUH19200630-V12-26-page5.txt: [('theref', 'ore')] LUH19200630-V12-26-page6.txt: [('Ba', 'ttle'), ('Hof', 'stra')] LUH19200630-V12-26-page9.txt: [('depa', 'rtment')] LUH19200707-V12-27-page2.txt: [('wo', 'rk')] LUH19200707-V12-27-page5.txt: [('co', 'operate'), ('MI', 'D')] LUH19200707-V12-27-page8.txt: [('Mayn', 'a')] LUH19200714-V12-28-page5.txt: [('bef', 'ore')] LUH19200714-V12-28-page7.txt: [('GC', 's')] LUH19200721-V12-29-page5.txt: [('pa', 'int')] LUH19200728-V12-30-page11.txt: [('Mc', 'Crillis')] LUH19200728-V12-30-page13.txt: [('OD', 'D'), ('Kimberlin', 'G')] LUH19200728-V12-30-page14.txt: [('OD', 'E')] LUH19200728-V12-30-page8.txt: [('Esca', 'naba')] LUH19200804-V12-31-page4.txt: [('peop', 'le')] LUH19200811-V12-32-page1.txt: [('es', 't')] LUH19200811-V12-32-page11.txt: [('OD', 'E'), ('BR', 'and')] LUH19200811-V12-32-page6.txt: [('REAVI', 'S')] LUH19200811-V12-32-page8.txt: [('CH', 'ic')] LUH19200825-V12-34-page7.txt: [('sheepf', 'old')] LUH19200901-V12-35-page7.txt: [('BR', 'A')] LUH19200908-V12-36-page11.txt: [('OD', 'E')] LUH19200908-V12-36-page4.txt: [('re', 'elected')] LUH19200908-V12-36-page6.txt: [('pre', 'sented')] LUH19200922-V12-38-page1.txt: [('manif', 'ested'), ('re', 'elected')] LUH19200922-V12-38-page12.txt: [('theref', 'ore')] LUH19200922-V12-38-page2.txt: [('co', 'operation')] LUH19200922-V12-38-page6.txt: [('co', 'workers')] LUH19200929-V12-39-page2.txt: [('repor', 'ted')] LUH19200929-V12-39-page6.txt: [('appreci', 'ated')] LUH19200929-V12-39-page7.txt: [('BR', 'R')] LUH19201006-V12-40-page1.txt: [('RI', 'T')] LUH19201006-V12-40-page16.txt: [('posi', 'tively'), ('McConaugh', 'ey')] LUH19201006-V12-40-page3.txt: [('pre', 'sented')] LUH19201006-V12-40-page7.txt: [('twenty-f', 'our')] LUH19201013-V12-41-page11.txt: [('OD', 'E')] LUH19201013-V12-41-page8.txt: [('sheepf', 'old')] LUH19201027-V12-43-page10.txt: [('giv', 'en')] LUH19201027-V12-43-page12.txt: [('OD', 'E'), ('BR', 'East')] LUH19201027-V12-43-page13.txt: [('servi', 'ces'), ('sple', 'ndid')] LUH19201027-V12-43-page3.txt: [('quie', 'tude')] LUH19201027-V12-43-page4.txt: [('Michi', 'gan')] LUH19201027-V12-43-page5.txt: [('re', 'decorated')] LUH19201103-V12-44-page1.txt: [('Mc', 'CONAUGHEY')] LUH19201103-V12-44-page12.txt: [('Mc', 'Conaughey')] LUH19201110-V12-45-page6.txt: [('theref', 'ore'), ('ren', 'dered')] LUH19201110-V12-45-page9.txt: [('disf', 'ellowship'), ('pl', 'anning')] LUH19201117-V12-46-page2.txt: [('yo', 'ur')] LUH19201124-V12-47-page1.txt: [('WW', 'W')] LUH19201124-V12-47-page15.txt: [('lov', 'able')] LUH19201201-V12-48-page11.txt: [('BR', 'East'), ('Sexto', 'n'), ('Pa', 'i')] LUH19201201-V12-48-page12.txt: [('fi', 're')] LUH19201201-V12-48-page3.txt: [('Pells', 'ton')] LUH19201201-V12-48-page5.txt: [('Si', 'C')] LUH19201201-V12-48-page6.txt: [('Decem', 'ber')] LUH19201208-V12-49-page10.txt: [('Dedicati', 'on')] LUH19201208-V12-49-page9.txt: [('re', 'elected')] LUH19201215-V12-50-page1.txt: [('ex', 'penses')] LUH19201215-V12-50-page12.txt: [('lov', 'e')] LUH19201215-V12-50-page16.txt: [('Co', 'nradi')] LUH19201215-V12-50-page2.txt: [('Ber', 'rien')] LUH19201215-V12-50-page8.txt: [('Mc', 'Cuaig')] LUH19201215-V12-50-page9.txt: [('busi', 'ness')] LUH19201222-V12-51-page10.txt: [('Hosf', 'ord')] LUH19201222-V12-51-page11.txt: [('M.', '')] LUH19201222-V12-51-page12.txt: [('OD', 'E'), ('SA', 'West')] LUH19201222-V12-51-page8.txt: [('M.', '')]
In [29]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction5 Average verified rate: 0.9707086648165923 Average of error rates: 0.03244654300168634 Total token count: 5744634
In [30]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[30]:
[('e', 15491), ('w', 12253), ('m', 9272), ('r', 8959), ('br', 8454), ('g', 7878), ('f', 7808), ('d', 6797), ("'", 3621), ('n', 3561), ('od', 3518), ('gc', 3062), ('k', 2720), ('wm', 2525), ('t', 2157), ('th', 1688), ("canvassers'", 1191), ('pg', 1116), ('bf', 911), ('co', 911), ('mt', 895), ('ck', 768), ('hm', 731), ('u', 576), ('ords', 470), ('drury', 452), ('x', 421), ('suda', 358), ("elders'", 338), ('kimberlin', 259), ('lb', 244), ('plake', 241), ("sec'y-treas", 241), ("colporteurs'", 238), ('mitzelfelt', 215), ('two-per-cent', 203), ('erald', 201), ("soldiers'", 201), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('pengelly', 166), ('es', 158), ('kittleson', 152), ('pp', 151), ('tatton', 149), ('palmiter', 148), ('herrington', 144), ('ch', 143), ('rapson', 142)]
Review Remaining Errors¶
In [31]:
reports.docs_with_high_error_rate(summary)
Out[31]:
[('LUH19150602-V07-22-page1.txt', 0.72), ('LUH19160308-V08-10-page1.txt', 0.596), ('LUH19170704-V09-27-page7.txt', 0.425), ('LUH19140422-V06-16-page13.txt', 0.407), ('LUH19150721-V07-29-page7.txt', 0.392), ('LUH19200804-V12-31-page11.txt', 0.392), ('LUH19150623-V07-25-page7.txt', 0.383), ('LUH19140422-V06-16-page14.txt', 0.375), ('LUH19180724-V10-30-page11.txt', 0.364), ('LUH19170627-V09-26-page7.txt', 0.356), ('LUH19180717-V10-29-page7.txt', 0.352), ('LUH19190730-V11-31-page11.txt', 0.35), ('LUH19160712-V08-28-page4.txt', 0.35), ('LUH19180731-V10-31-page7.txt', 0.348), ('LUH19200714-V12-28-page7.txt', 0.347), ('LUH19150804-V07-31-page7.txt', 0.346), ('LUH19150630-V07-26-page7.txt', 0.342), ('LUH19160809-V08-32-page8.txt', 0.339), ('LUH19160621-V08-25-page7.txt', 0.338), ('LUH19170718-V09-29-page11.txt', 0.333), ('LUH19160802-V08-31-page16.txt', 0.332), ('LUH19150825-V07-34-page7.txt', 0.33), ('LUH19190618-V11-25-page11.txt', 0.317), ('LUH19170620-V09-25-page7.txt', 0.316), ('LUH19180619-V10-25-page7.txt', 0.308), ('LUH19170110-V09-02-page5.txt', 0.308), ('LUH19120731-V04-31-page7.txt', 0.307), ('LUH19160726-V08-30-page7.txt', 0.305), ('LUH19180821-V10-34-page7.txt', 0.305), ('LUH19110802-V03-31-page8.txt', 0.304), ('LUH19120710-V04-28-page8.txt', 0.3), ('LUH19180814-V10-33-page15.txt', 0.299), ('LUH19180807-V10-32-page7.txt', 0.297), ('LUH19120626-V04-26-page8.txt', 0.29), ('LUH19190723-V11-30-page15.txt', 0.289), ('LUH19170613-V09-24-page8.txt', 0.288), ('LUH19150728-V07-30-page7.txt', 0.287), ('LUH19190813-V11-33-page11.txt', 0.286), ('LUH19150811-V07-32-page15.txt', 0.286), ('LUH19160705-V08-27-page7.txt', 0.285), ('LUH19170725-V09-30-page8.txt', 0.279), ('LUH19180703-V10-27-page7.txt', 0.278), ('LUH19190709-V11-28-page7.txt', 0.277), ('LUH19170815-V09-33-page7.txt', 0.275), ('LUH19170711-V09-28-page7.txt', 0.271), ('LUH19160719-V08-29-page11.txt', 0.27), ('LUH19161213-V08-50-page11.txt', 0.269), ('LUH19120724-V04-30-page16.txt', 0.268), ('LUH19090714-V01-37-page7.txt', 0.267), ('LUH19170801-V09-31-page7.txt', 0.267), ('LUH19140708-V06-27-page7.txt', 0.265), ('LUH19160628-V08-26-page6.txt', 0.265), ('LUH19200707-V12-27-page7.txt', 0.263), ('LUH19120703-V04-27-page8.txt', 0.263), ('LUH19140729-V06-30-page7.txt', 0.26), ('LUH19140715-V06-28-page7.txt', 0.257), ('LUH19160816-V08-33-page8.txt', 0.255), ('LUH19150428-V07-17-page7.txt', 0.25), ('LUH19120717-V04-29-page8.txt', 0.249), ('LUH19190716-V11-29-page7.txt', 0.249), ('LUH19200818-V12-33-page11.txt', 0.248), ('LUH19150714-V07-28-page7.txt', 0.248), ('LUH19110726-V03-30-page8.txt', 0.245), ('LUH19120619-V04-25-page8.txt', 0.243), ('LUH19110705-V03-27-page8.txt', 0.243), ('LUH19120807-V04-32-page7.txt', 0.241), ('LUH19190806-V11-32-page10.txt', 0.24), ('LUH19180626-V10-26-page7.txt', 0.239), ('LUH19180320-V10-12-page8.txt', 0.231), ('LUH19190820-V11-34-page15.txt', 0.23), ('LUH19110809-V03-32-page12.txt', 0.229), ('LUH19110628-V03-26-page8.txt', 0.228), ('LUH19110712-V03-28-page8.txt', 0.226), ('LUH19140610-V06-23-page7.txt', 0.226), ('LUH19150707-V07-27-page8.txt', 0.225), ('LUH19191224-V11-52-page1.txt', 0.223), ('LUH19140812-V06-32-page7.txt', 0.221), ('LUH19150609-V07-23-page8.txt', 0.219), ('LUH19190827-V11-35-page15.txt', 0.218), ('LUH19200204-V12-05-page11.txt', 0.217), ('LUH19110830-V03-35-page8.txt', 0.216), ('LUH19200616-V12-24-page10.txt', 0.215), ('LUH19170606-V09-23-page7.txt', 0.212), ('LUH19110308-V03-10-page1.txt', 0.212), ('LUH19150616-V07-24-page7.txt', 0.209), ('LUH19180522-V10-21-page8.txt', 0.205), ('LUH19120828-V04-35-page7.txt', 0.204)]
In [32]:
# %load shared_elements/high_error_rates.py
doc_keys = [x[0] for x in reports.docs_with_high_error_rate(summary) if x[1] > 0.35]
# utilities.open_original_docs(doc_keys, directories['cycle'])
Correction 7 -- Separate Squashed Words¶
In [33]:
# %load shared_elements/separate_squashed_words.py
import pandas as pd
from math import log
prev = cycle
cycle = "correction7"
directories = utilities.define_directories(prev, cycle, base_dir)
if not os.path.exists(directories['cycle']):
os.makedirs(directories['cycle'])
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
verified_tokens = []
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
clean.get_approved_tokens(content, spelling_dictionary, verified_tokens)
tokens_with_freq = dict(collections.Counter(verified_tokens))
words = pd.DataFrame(list(tokens_with_freq.items()), columns=['token','freq'])
words_sorted = words.sort_values('freq', ascending=False)
words_sorted_short = words_sorted[words_sorted.freq > 2]
sorted_list_of_words = list(words_sorted_short['token'])
wordcost = dict((k, log((i+1)*log(len(sorted_list_of_words)))) for i,k in enumerate(sorted_list_of_words))
maxword = max(len(x) for x in sorted_list_of_words)
corpus = (f for f in listdir(directories['prev']) if not f.startswith('.') and isfile(join(directories['prev'], f)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
text = utilities.strip_punct(content)
tokens = utilities.tokenize_text(text)
replacements = []
for token in tokens:
if not token.lower() in spelling_dictionary:
if len(token) > 17:
if re.search(r"[\-\-\'\"]", token):
pass
else:
split_string = clean.infer_spaces(token, wordcost, maxword)
list_split_string = split_string.split()
if clean.verify_split_string(list_split_string, spelling_dictionary):
replacements.append((token, split_string))
else:
pass
else:
pass
else:
pass
if len(replacements) > 0:
print("{}: {}".format(filename, replacements))
for replacement in replacements:
content = clean.replace_pair(replacement, content)
else:
pass
with open(join(directories['cycle'], filename), mode="w") as o:
o.write(content)
o.close()
LUH19081111-V01-02-page7.txt: [('Thanksgivingingathering', 'Thanksgiving ingathering')] LUH19090310-V01-19-page7.txt: [('understandstanding', 'understand standing')] LUH19090421-V01-25-page1.txt: [('wonderfurrevelations', 'wonder fur revelations')] LUH19091006-V01-49-page1.txt: [('EducationalSecretary', 'Educational Secretary')] LUH19100112-V02-02-page6.txt: [('hastakenfromusthechancetotrainouryoung', 'has taken from us the chance to train our young')] LUH19100126-V02-04-page3.txt: [('nineteentwentieths', 'nineteen twentieth s')] LUH19100713-V02-28-page7.txt: [('successsellingProtestant', 'success selling Protestant')] LUH19100831-V02-35-page7.txt: [('underconvictionfor', 'under conviction for')] LUH19110524-V03-21-page1.txt: [('advancedarithmetic', 'advanced arithmetic')] LUH19110927-V03-39-page1.txt: [('IllinoisConference', 'Illinois Conference')] LUH19110927-V03-39-page2.txt: [('furtheradvancement', 'further advancement')] LUH19110927-V03-39-page6.txt: [('secretarytreasurer', 'secretary treasurer')] LUH19111115-V03-46-page8.txt: [('Sundaywithhissonanddaughterwhoareinschoolthis', 'Sunday with his son and daughter who are in school this')] LUH19121218-V04-51-page7.txt: [('greatgrandchildren', 'great grandchildren')] LUH19131224-V05-51-page6.txt: [('whomtheLordcanusetoencouragethechurchinfaith', 'whom the Lord can use to encourage the church in faith')] LUH19150602-V07-22-page15.txt: [('BEitAfilaTirrillinM', 'BE it A f i l a T i r r i l l i n M')] LUH19150728-V07-30-page1.txt: [('greatgrandchildren', 'great grandchildren')] LUH19160209-V08-06-page8.txt: [('trusteeslconsisting', 'trustees l consisting')] LUH19160510-V08-19-page7.txt: [('NorthMichiganConferencehassomevil', 'North Michigan Conference has some vi l')] LUH19161004-V08-40-page2.txt: [('eightdollarsreceived', 'eight dollars received')] LUH19170905-V09-36-page8.txt: [('ACIelphiatiMercantile', 'A C I el p hi at i Mercantile')] LUH19170919-V09-38-page3.txt: [('ministryofthewordinourbooksand', 'ministry of the word in our books and')] LUH19171114-V09-46-page1.txt: [('returnethmissionaries', 'return eth missionaries')] LUH19180306-V10-10-page1.txt: [('carefullyiwithAthem', 'carefully i with A them')] LUH19180424-V10-17-page7.txt: [('unspeakablebenefit', 'unspeakable benefit')] LUH19180814-V10-33-page2.txt: [('VERNACULAOSUBSCRIPTION', 'V ER N A C U L A O S U B S C R I P T I O N')] LUH19190122-V11-04-page9.txt: [('thoroughlyequipped', 'thoroughly equipped')] LUH19190205-V11-06-page7.txt: [('beamongthosewhowillbeawakeandwatching', 'be among those who will be awake and watching')] LUH19190312-V11-11-page3.txt: [('secretarytreasurer', 'secretary treasurer')] LUH19190319-V11-12-page11.txt: [('WashingtonSanitarium', 'Washington Sanitarium')] LUH19190326-V11-13-page5.txt: [('thirtyapplications', 'thirty applications')] LUH19190528-V11-22-page8.txt: [('secretarytreasurer', 'secretary treasurer')] LUH19190723-V11-30-page15.txt: [('Amanwhoisacquaintedwithfiringalow', 'A man who is acquainted with firing a low')] LUH19191022-V11-43-page10.txt: [('SiffbaiftSaliiiiir', 'S if f b a i f t S a l i i i i i r')] LUH19191029-V11-44-page2.txt: [('ricumuminiitiiiimuinitioniiiiiirmeniiiiiiiumaniiii', 'r i c u m u m i n i i t i i i i m u i n i t i o n i i i i i i r m e n i i i i i i i u m a n i i i i')] LUH19200225-V12-08-page9.txt: [('Signssubscriptions', 'Signs subscriptions')] LUH19200505-V12-18-page16.txt: [('missionarysecretaries', 'missionary secretaries')] LUH19200512-V12-19-page7.txt: [('boughtforthirtyfive', 'bought for thirty five')] LUH19200616-V12-24-page10.txt: [('veteraninthemovement', 'veteran in the movement')] LUH19200630-V12-26-page7.txt: [('standardplayground', 'standard playground')] LUH19200630-V12-26-page9.txt: [('secretarytreasurer', 'secretary treasurer')] LUH19200721-V12-29-page2.txt: [('ConferenceVirectorY', 'Conference V i rector Y')] LUH19200901-V12-35-page5.txt: [('Ingatheringcampaign', 'Ingathering campaign')] LUH19200908-V12-36-page11.txt: [('agedorelderlySabbath', 'aged or elderly Sabbath')] LUH19200915-V12-37-page1.txt: [('sekapeseaeseacacaeacachaeacaemaeacaeacaciamaeac', 's e k a p e s e a e s e a c a c a e a c a c h a e a c a e m a e a c a e a c a c i a m a e a c')] LUH19201215-V12-50-page9.txt: [('conferencelaborers', 'conference laborers')]
In [34]:
# %load shared_elements/summary.py
summary = reports.overview_report(directories['cycle'], spelling_dictionary, title)
Directory: /Users/jeriwieringa/Dissertation/text/text/2017-01-31-corpus-with-utf8-split-into-titles-cleaning/LUH/correction7 Average verified rate: 0.9707094937613351 Average of error rates: 0.032445362563237774 Total token count: 5744899
In [35]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[35]:
[('e', 15503), ('w', 12253), ('m', 9280), ('r', 8965), ('br', 8454), ('g', 7878), ('f', 7811), ('d', 6797), ("'", 3621), ('n', 3569), ('od', 3518), ('gc', 3062), ('k', 2721), ('wm', 2525), ('t', 2162), ('th', 1688), ("canvassers'", 1191), ('pg', 1116), ('bf', 911), ('co', 911), ('mt', 895), ('ck', 768), ('hm', 731), ('u', 582), ('ords', 470), ('drury', 452), ('x', 421), ('suda', 358), ("elders'", 338), ('kimberlin', 259), ('lb', 244), ('plake', 241), ("sec'y-treas", 241), ("colporteurs'", 238), ('mitzelfelt', 215), ('two-per-cent', 203), ('erald', 201), ("soldiers'", 201), ('devereaux', 196), ('seventhday', 172), ('ruh', 170), ('pengelly', 166), ('es', 158), ('kittleson', 152), ('pp', 151), ('tatton', 149), ('palmiter', 148), ('herrington', 144), ('ch', 143), ('rapson', 142)]
In [ ]: