PUR-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 = "PUR"
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/PUR/baseline Average verified rate: 0.9290939173075634 Average of error rates: 0.07389259368545294 Total token count: 6682304
In [11]:
errors_summary = reports.get_errors_summary( stats )
reports.top_errors( errors_summary, 500 )
Out[11]:
[('e', 15963), ('w', 14843), ('-', 10838), ('m', 10541), ('g', 10420), ('f', 6978), ('r', 6442), ('ñ', 6315), ('d', 6291), ('con-', 5874), ('re-', 5622), ("'", 4719), ('in-', 4451), ('t', 4226), ('tion', 3827), ('n', 3009), ('be-', 2880), ('ence', 2369), ('de-', 2339), ('ex-', 2281), ('¥', 2248), ('com-', 2163), ('ference', 2027), (')', 1987), ('confer-', 1976), ('en-', 1975), ('ment', 1786), ('ad-', 1722), ('meet-', 1454), ('th', 1448), ('mis-', 1433), ('un-', 1349), ('at-', 1245), ('ac-', 1172), ('tions', 1143), ('*', 1126), ('peo-', 1121), ('sab-', 1093), ('an-', 1080), ('ple', 1075), ('ers', 1072), ('pre-', 1061), ('ber', 1033), ('pro-', 1030), ('_', 1026), ('dis-', 1002), ('per-', 952), ('im-', 929), ('ap-', 904), ('mem-', 892), ('sionary', 876), ('(', 874), ('pa-', 846), ('cali-', 828), ('fornia', 804), ('__', 786), ('or-', 779), ('x', 773), ('inter-', 763), ('camp-', 759), ('ary', 738), ('col-', 710), ('fol-', 709), ('sub-', 709), ('al-', 696), ('as-', 688), ('ful', 685), ('mes-', 678), ('ent', 671), ('k', 664), ('for-', 663), ('mission-', 663), ('pres-', 661), ('to-', 652), ('inter-mountain', 646), ('eral', 634), ('of-', 625), ('ments', 624), ('bers', 613), ('sev-', 598), ('ance', 597), ('can-', 592), ('seventh-', 574), ('work-', 568), ('sabbath-', 552), ('num-', 545), ('u', 542), ('ef-', 515)]
Review Special Character Use¶
In [12]:
reports.tokens_with_special_characters(errors_summary)[:100]
Out[12]:
[('ñ', 6315), ('¥', 2248), (')', 1987), ('*', 1126), ('_', 1026), ('(', 874), ('__', 786), ('/', 470), ('%', 390), ('ñe', 330), ('(a)', 320), ('(b)', 317), ('(continued', 292), ('ñj', 255), ('ñthe', 251), ('+', 250), (']', 239), ('ã', 227), ('ñm', 225), ('ña', 213), ('ñselected', 202), ('(c)', 197), ('ñbox', 185), ('ñb', 179), ('ñf', 165), ('recorder_', 143), ('____', 141), ('(the', 120), ('___', 117), ('(d)', 116), ('(los', 107), ('`', 97), ('•', 95), ('noticeñterms', 85), ('(e)', 84), ('¤', 83), ('ñmrs', 81), ('=', 78), ('¥¥', 77), ('ñclaude', 72), ('(german)', 68), ('ñernest', 65), ('**', 64), ('¡', 62), ('¥the', 62), ('post-office)', 60), ('[continued', 59), ('[the', 56), ('ñand', 54), ('(signed)', 54), ('(concluded', 52), ('ñc', 51), ('*delivery', 51), ('ñin', 50), ('ñto', 49), ('the¥', 48), ('ñone', 48), ('`the', 47), ('(in', 46), ('(a', 46), ('[', 46), ('andñ', 45), ('(to', 45), ('(and', 44), ('ñw', 43), ('(see', 42), ('\\', 40), ('committeeñj', 39), ('(seal)', 39), ('ñit', 38), ('ñthis', 38), ('(f)', 38), ('¥to', 38), ('addressñbox', 37), ('ñd', 37), ('ñfrank', 37), ('angeles)', 37), ('auditorñw', 35), ('(or', 35), ('ñthat', 35), ('presidentñj', 34), ('reese*', 34), ('`pacific', 34), ('(english)', 34), ('*two', 33), ('(i', 32), ('¥of', 32), ('(not', 31), ('(no', 31), ('ñtwo', 31), ('(san', 29), ('<', 28), ('ñour', 28), ('secretaryñw', 28), ('`i', 27), ('#', 27), ('ñno', 27), ('ñan', 27), ('ñalfalfa', 26), ('ñat', 26)]
Correction 1 -- Normalize Characters¶
In [13]:
# %load shared_elements/normalize_characters.py
prev = "baseline"
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()
Check Correction 1¶
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/PUR/correction1 Average verified rate: 0.9345496369516322 Average of error rates: 0.06802714665092947 Total token count: 6669497
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', 16475), ('w', 15028), ('-', 11131), ('m', 10841), ('g', 10509), ('f', 7254), ('r', 6545), ('d', 6472), ('con-', 5882), ('re-', 5628), ("'", 4858), ('in-', 4460), ('t', 4327), ('tion', 3837), ('n', 3078), ('be-', 2889), ('ence', 2373), ('de-', 2340), ('ex-', 2282), ('com-', 2165), ('ference', 2030), ('confer-', 1979), ('en-', 1977), ('ment', 1788), ('ad-', 1723), ('th', 1467), ('meet-', 1456), ('mis-', 1436), ('un-', 1350), ('at-', 1246), ('ac-', 1173), ('tions', 1149), ('peo-', 1121), ('sab-', 1094), ('an-', 1083), ('ple', 1077), ('ers', 1076), ('pre-', 1061), ('ber', 1036), ('pro-', 1031), ('dis-', 1004), ('per-', 958), ('im-', 930), ('ap-', 904), ('mem-', 892), ('sionary', 876), ('pa-', 848), ('cali-', 828), ('fornia', 805), ('x', 789)]
Correction 2 -- Correct 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()
Check Correction 2¶
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/PUR/correction2 Average verified rate: 0.9641692120819102 Average of error rates: 0.038859250516376516 Total token count: 6513672
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', 16460), ('w', 15026), ('-', 11004), ('m', 10832), ('g', 10505), ('f', 7240), ('r', 6538), ('d', 6466), ("'", 4858), ('t', 4307), ('n', 3075), ('th', 1467), ('x', 788), ('inter-mountain', 682), ('k', 682), ('tion', 630), ('u', 561), ('re-', 429), ("'the", 419), ('ords', 405), ('ence', 395), ('co', 364), ('con-', 354), ('seventhday', 343), ('--', 327), ('california-nevada', 322), ('ment', 308), ('ference', 306), ('money-orders', 304), ('sabbathschool', 292), ('in-', 284), ('verah', 257), ('-the', 249), ('wm', 242), ("canvassers'", 228), ('ber', 226), ('ers', 223), ('pepperwood', 223), ('twenty-cent-a-week', 219), ("'s", 202), ('z', 194), ('ple', 194), ('by-laws', 193), ('camp-ground', 190), ("the'", 189), ('oo', 184), ('io', 181), ('-a', 175), ("''", 172), ('be-', 169)]
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()
PUR19010801-V01-01-page1.txt: [('-THEN', 'THEN'), ('knowl-', 'knowl'), ('-', ''), ('-soul', 'soul'), ('mis-', 'mis'), ('-a', 'a'), ('-heart', 'heart')] PUR19010801-V01-01-page10.txt: [('corre-', 'corre'), ('church-', 'church'), ('HEALDS-', 'HEALDS'), ('RE-', 'RE'), ('Healds-', 'Healds')] PUR19010801-V01-01-page11.txt: [('MIS-', 'MIS')] PUR19010801-V01-01-page13.txt: [('con-', 'con')] PUR19010801-V01-01-page14.txt: [('Valley-', 'Valley'), ('Tra-', 'Tra')] PUR19010801-V01-01-page15.txt: [('-', ''), ('Os-', 'Os'), ('-', ''), ('can-', 'can')] PUR19010801-V01-01-page16.txt: [('-', ''), ('SEVENTH-', 'SEVENTH'), ('Wat-', 'Wat'), ('-for', 'for'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19010801-V01-01-page2.txt: [('being-', 'being'), ('-', ''), ('-', ''), ('-', '')] PUR19010801-V01-01-page3.txt: [('p-', 'p'), ('-', ''), ('-', ''), ('an-', 'an')] PUR19010801-V01-01-page4.txt: [('---', '--'), ('-', ''), ('-I', 'I')] PUR19010801-V01-01-page5.txt: [('Preju-', 'Preju'), ('ac-', 'ac')] PUR19010801-V01-01-page6.txt: [('-', '')] PUR19010801-V01-01-page7.txt: [('SOUL-', 'SOUL')] PUR19010801-V01-01-page8.txt: [('im-', 'im')] PUR19010801-V01-01-page9.txt: [('thorough-', 'thorough')] PUR19010815-V01-02-page1.txt: [('-', ''), ('-all', 'all'), ('-dead', 'dead'), ('-Lord', 'Lord'), ('di-', 'di'), ('-', '')] PUR19010815-V01-02-page10.txt: [('con-', 'con')] PUR19010815-V01-02-page11.txt: [('-', ''), ('Church-', 'Church'), ('represent-', 'represent'), ('mat-', 'mat'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Dif-', 'Dif'), ('-', ''), ('Sabbath-', 'Sabbath')] PUR19010815-V01-02-page12.txt: [('sup-', 'sup'), ('-', ''), ('-', '')] PUR19010815-V01-02-page13.txt: [('every--', 'every-'), ('between-', 'between'), ('-had', 'had'), ('them-', 'them'), ('-', ''), ('-been', 'been'), ('-wish', 'wish')] PUR19010815-V01-02-page15.txt: [('SU-', 'SU'), ('Daisy-', 'Daisy')] PUR19010815-V01-02-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-II', 'II'), ('-t', 't'), ('-', ''), ('-', ''), ('suc-', 'suc'), ('-', '')] PUR19010815-V01-02-page2.txt: [('-', ''), ('Testimo-', 'Testimo'), ('them-', 'them')] PUR19010815-V01-02-page5.txt: [('-more', 'more'), ('Weiser-', 'Weiser')] PUR19010815-V01-02-page6.txt: [('D.-', 'D.'), ('insti-', 'insti')] PUR19010815-V01-02-page8.txt: [('any-', 'any'), ('dis-', 'dis')] PUR19010815-V01-02-page9.txt: [('-FIrn', 'FIrn'), ('-', ''), ('Sabbath-', 'Sabbath'), ('-ary', 'ary'), ('mission-', 'mission')] PUR19010829-V01-03-page1.txt: [('-', ''), ('-', ''), ('bit-', 'bit'), ('-in', 'in'), ('-missionary.', 'missionary.'), ('--who', '-who'), ('-', ''), ('-', ''), ('-power', 'power'), ('-and', 'and'), ('-restoring', 'restoring'), ('practi-', 'practi'), ('lowli-', 'lowli'), ('-', ''), ('-', '')] PUR19010829-V01-03-page2.txt: [('-', ''), ('enablings."----', 'enablings."---'), ('-', ''), ('-feels', 'feels')] PUR19010829-V01-03-page3.txt: [('-time."', 'time."'), ('-preach', 'preach'), ('-discover', 'discover'), ('neg-', 'neg'), ('RECORDER-', 'RECORDER'), ('per-', 'per')] PUR19010829-V01-03-page4.txt: [('CONFER-', 'CONFER'), ('-Clarence', 'Clarence')] PUR19010829-V01-03-page5.txt: [('pres-', 'pres')] PUR19010829-V01-03-page6.txt: [('-hearts', 'hearts'), ('-in', 'in')] PUR19010829-V01-03-page7.txt: [('SABBATH-', 'SABBATH'), ('every-', 'every'), ('be-', 'be'), ('sound-', 'sound'), ('--', '-'), ('send-', 'send')] PUR19010829-V01-03-page8.txt: [('-', ''), ('-STENOORAPRERS', 'STENOORAPRERS')] PUR19010912-V01-04-page10.txt: [('-work.', 'work.')] PUR19010912-V01-04-page11.txt: [('-sobrightly', 'sobrightly')] PUR19010912-V01-04-page12.txt: [("-'-", "'-")] PUR19010912-V01-04-page13.txt: [('inter-', 'inter'), ('-point', 'point')] PUR19010912-V01-04-page14.txt: [('fam-', 'fam'), ('Ian-', 'Ian')] PUR19010912-V01-04-page15.txt: [('-and', 'and')] PUR19010912-V01-04-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('MISSION-', 'MISSION')] PUR19010912-V01-04-page2.txt: [('doc-', 'doc'), ('effec-', 'effec'), ('-', ''), ('sensi-', 'sensi')] PUR19010912-V01-04-page4.txt: [('Med-', 'Med'), ('north-', 'north'), ('for-', 'for'), ('en-', 'en'), ('CAMP-', 'CAMP'), ('Exec-', 'Exec'), ('Forty-', 'Forty')] PUR19010912-V01-04-page5.txt: [('-foot', 'foot')] PUR19010912-V01-04-page8.txt: [('-', '')] PUR19010912-V01-04-page9.txt: [('reading-', 'reading')] PUR19010926-V01-05-page1.txt: [('for-', 'for'), ('-Ward', 'Ward'), ('de-', 'de'), ('med-', 'med')] PUR19010926-V01-05-page11.txt: [('Accept-', 'Accept'), ('-', ''), ('-', '')] PUR19010926-V01-05-page12.txt: [('-', ''), ('BIBLE-', 'BIBLE'), ('hun-', 'hun')] PUR19010926-V01-05-page13.txt: [('-Fir', 'Fir')] PUR19010926-V01-05-page15.txt: [('RECORDER-', 'RECORDER'), ('en--', 'en-'), ('-', ''), ('---LE', '--LE'), ('-not', 'not'), ('re-', 're')] PUR19010926-V01-05-page16.txt: [('E.-', 'E.'), ('-', ''), ('th-', 'th'), ('SEVENTH-', 'SEVENTH'), ('of-', 'of'), ('-', ''), ('Anglo-', 'Anglo'), ('io.-', 'io.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Les-', 'Les'), ('-', ''), ('-', ''), ('-Upper', 'Upper'), ('-', ''), ('-', ''), ('la-', 'la'), ('-', ''), ('-encouragingly..', 'encouragingly..'), ('Pacific-', 'Pacific'), ('-Press', 'Press'), ('-us', 'us'), ('-we', 'we'), ('ebb--', 'ebb-'), ('-San', 'San'), ('-', ''), ('-', ''), ('-', ''), ('-be', 'be'), ('-', ''), ('-', ''), ('-', '')] PUR19010926-V01-05-page2.txt: [('-', ''), ('-', ''), ('-let', 'let'), ('Seventh--', 'Seventh-'), ('op-', 'op'), ('-sanitarium', 'sanitarium')] PUR19010926-V01-05-page3.txt: [('denuncia-', 'denuncia'), ('-', ''), ('-', '')] PUR19010926-V01-05-page5.txt: [('LABOR-', 'LABOR')] PUR19010926-V01-05-page7.txt: [('-warkers', 'warkers'), ('-', ''), ('-', '')] PUR19010926-V01-05-page8.txt: [('CAMP-', 'CAMP'), ('-', ''), ('SABBATH-SCI-', 'SABBATH-SCI'), ('-tent', 'tent'), ('in-', 'in'), ('commer-', 'commer')] PUR19010926-V01-05-page9.txt: [('DISCOURAGE-', 'DISCOURAGE'), ('un-', 'un')] PUR19011010-V01-06-page1.txt: [('Him.-', 'Him.'), ('-which', 'which'), ('-lensed', 'lensed')] PUR19011010-V01-06-page10.txt: [('-', '')] PUR19011010-V01-06-page11.txt: [('-Fir', 'Fir'), ('-a', 'a'), ('-two', 'two'), ('---"About', '--"About')] PUR19011010-V01-06-page12.txt: [('NORTH-', 'NORTH')] PUR19011010-V01-06-page13.txt: [('pa-', 'pa'), ('per-', 'per'), ('sub-', 'sub')] PUR19011010-V01-06-page14.txt: [('Wed-', 'Wed'), ('un-', 'un'), ('pro-', 'pro'), ('can-', 'can')] PUR19011010-V01-06-page15.txt: [('Anglo-', 'Anglo'), ('Mission-', 'Mission')] PUR19011010-V01-06-page16.txt: [('SEVENTH-', 'SEVENTH')] PUR19011010-V01-06-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19011010-V01-06-page3.txt: [('out--', 'out-'), ('gain-', 'gain'), ('re-', 're'), ('-', ''), ('-', '')] PUR19011010-V01-06-page4.txt: [('--Simply', '-Simply')] PUR19011010-V01-06-page6.txt: [('attend-', 'attend'), ('-Woolsey', 'Woolsey')] PUR19011010-V01-06-page8.txt: [('-', ''), ('estab-', 'estab'), ('SABBATH-', 'SABBATH'), ('-', '')] PUR19011010-V01-06-page9.txt: [('of-', 'of')] PUR19011024-V01-07-page1.txt: [('-', '')] PUR19011024-V01-07-page10.txt: [('fea-', 'fea')] PUR19011024-V01-07-page11.txt: [('-', '')] PUR19011024-V01-07-page12.txt: [('-lir', 'lir'), ('Cre-', 'Cre')] PUR19011024-V01-07-page13.txt: [('ASSOCIA-', 'ASSOCIA'), ('-improvements', 'improvements'), ('se-', 'se'), ('ma--', 'ma-')] PUR19011024-V01-07-page14.txt: [('-t', 't'), ('volun-', 'volun')] PUR19011024-V01-07-page15.txt: [('CORRE-', 'CORRE'), ('-That', 'That'), ('--thing', '-thing')] PUR19011024-V01-07-page16.txt: [('SEVENTH-', 'SEVENTH'), ('Com-', 'Com')] PUR19011024-V01-07-page3.txt: [('re-', 're')] PUR19011024-V01-07-page4.txt: [('mission-', 'mission'), ('bless-', 'bless')] PUR19011024-V01-07-page5.txt: [('build-', 'build'), ('tent-', 'tent'), ('-', '')] PUR19011024-V01-07-page8.txt: [('Sanita-', 'Sanita'), ('dis-', 'dis')] PUR19011024-V01-07-page9.txt: [('cir-', 'cir'), ('PER-', 'PER')] PUR19011107-V01-08-page1.txt: [('ever-', 'ever')] PUR19011107-V01-08-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('-controversy', 'controversy'), ('-', ''), ('-', ''), ('con-', 'con')] PUR19011107-V01-08-page11.txt: [('pro-', 'pro'), ('suc-', 'suc')] PUR19011107-V01-08-page12.txt: [('CORRE-', 'CORRE'), ('-.', '.'), ('r-', 'r'), ('"\'-', '"\''), ('-', ''), ('.--', '.-'), ('-', ''), ('-', ''), ('-', '')] PUR19011107-V01-08-page16.txt: [('SEVENTH-', 'SEVENTH'), ('corre-', 'corre'), ('Medi-', 'Medi'), ('dark-', 'dark')] PUR19011107-V01-08-page2.txt: [('organi-', 'organi'), ('-', '')] PUR19011107-V01-08-page3.txt: [('benevo-', 'benevo'), ('arith-', 'arith'), ('multi-', 'multi'), ('-', ''), ('-', ''), ('fol-', 'fol')] PUR19011107-V01-08-page4.txt: [('CON-', 'CON'), ('CAMP-', 'CAMP'), ('-', ''), ('influ-', 'influ')] PUR19011107-V01-08-page5.txt: [('as-', 'as')] PUR19011107-V01-08-page6.txt: [('ex-', 'ex')] PUR19011121-V01-09-page10.txt: [('sur-', 'sur'), ('vir-', 'vir'), ('-SCHOOL', 'SCHOOL'), ('-of', 'of'), ('ex-', 'ex')] PUR19011121-V01-09-page12.txt: [('-', '')] PUR19011121-V01-09-page13.txt: [('in-', 'in')] PUR19011121-V01-09-page14.txt: [('CORRE-', 'CORRE'), ('--date', '-date')] PUR19011121-V01-09-page15.txt: [('-', '')] PUR19011121-V01-09-page16.txt: [('-we', 'we'), ('-', ''), ('SEVENTH-', 'SEVENTH')] PUR19011121-V01-09-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19011121-V01-09-page3.txt: [('-help', 'help'), ('Her-', 'Her'), ('min-', 'min')] PUR19011121-V01-09-page5.txt: [('pray-', 'pray'), ('ob-', 'ob')] PUR19011121-V01-09-page6.txt: [('accom-', 'accom'), ('-to', 'to'), ('-', ''), ('-for', 'for'), ('Thee."-', 'Thee."'), ('peo-', 'peo')] PUR19011121-V01-09-page7.txt: [('-', ''), ('-', ''), ('sup-', 'sup'), ('.com-', '.com')] PUR19011121-V01-09-page9.txt: [('Thanks-', 'Thanks'), ('morn-', 'morn'), ('pal-', 'pal'), ('-', '')] PUR19011205-V01-10-page1.txt: [('per-', 'per')] PUR19011205-V01-10-page10.txt: [('-per', 'per')] PUR19011205-V01-10-page11.txt: [('pros-', 'pros'), ('contin-', 'contin')] PUR19011205-V01-10-page12.txt: [('ren-', 'ren'), ('VINE-', 'VINE'), ('What-', 'What'), ('Scrip-', 'Scrip')] PUR19011205-V01-10-page13.txt: [('sev-', 'sev'), ('on-', 'on'), ('-', ''), ('-', '')] PUR19011205-V01-10-page14.txt: [('MISSION-', 'MISSION'), ('Wood-', 'Wood')] PUR19011205-V01-10-page15.txt: [('-', ''), ('-', ''), ('CORRE-', 'CORRE'), ('-', '')] PUR19011205-V01-10-page16.txt: [('SEVENTH-', 'SEVENTH'), ('STOCK-', 'STOCK')] PUR19011205-V01-10-page3.txt: [('-', ''), ('-in', 'in'), ('prop-', 'prop'), ('want-', 'want'), ('-', ''), ('meeting-', 'meeting'), ('keep-', 'keep')] PUR19011205-V01-10-page4.txt: [('-and', 'and')] PUR19011205-V01-10-page5.txt: [('thirty-', 'thirty'), ('scat-', 'scat'), ('Attend-', 'Attend'), ('mem-', 'mem'), ('-', ''), ('Les-', 'Les'), ('ex-', 'ex'), ('in-', 'in')] PUR19011205-V01-10-page6.txt: [('individ-', 'individ'), ('-', ''), ('assimi-', 'assimi')] PUR19011205-V01-10-page7.txt: [('ex-', 'ex'), ('--He', '-He'), ('pur-', 'pur')] PUR19011205-V01-10-page8.txt: [('-', ''), ('-', '')] PUR19011205-V01-10-page9.txt: [('-Worship', 'Worship'), ('faint-', 'faint')] PUR19011219-V01-11-page1.txt: [('sup-', 'sup'), ('them--', 'them-'), ('ex.-', 'ex.')] PUR19011219-V01-11-page10.txt: [('Sabbath-', 'Sabbath'), ('inter-', 'inter'), ('for-', 'for'), ('serv-', 'serv')] PUR19011219-V01-11-page11.txt: [('-I-', 'I-'), ('dis-', 'dis'), ('stand-', 'stand')] PUR19011219-V01-11-page12.txt: [('-CHURCH-SCHOOL', 'CHURCH-SCHOOL'), ('CALI-', 'CALI'), ('Bu-', 'Bu'), ('Bu-', 'Bu'), ('-chanan', 'chanan')] PUR19011219-V01-11-page13.txt: [('--', '-'), ('-by', 'by'), ('re-', 're')] PUR19011219-V01-11-page14.txt: [('correspond-', 'correspond')] PUR19011219-V01-11-page15.txt: [('Col-', 'Col'), ('-When', 'When')] PUR19011219-V01-11-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', '')] PUR19011219-V01-11-page2.txt: [('account-', 'account'), ('-', ''), ('per-', 'per')] PUR19011219-V01-11-page3.txt: [('CONFER-', 'CONFER')] PUR19011219-V01-11-page4.txt: [('know-', 'know'), ('-', '')] PUR19011219-V01-11-page5.txt: [('fol-', 'fol'), ('regula-', 'regula'), ('Chaun-', 'Chaun')] PUR19011219-V01-11-page6.txt: [('won-', 'won')] PUR19011219-V01-11-page7.txt: [('med-', 'med')] PUR19011219-V01-11-page8.txt: [('pleas-', 'pleas')] PUR19020102-V01-12-page1.txt: [('organiza-', 'organiza')] PUR19020102-V01-12-page10.txt: [('Les-', 'Les'), ('CON-', 'CON')] PUR19020102-V01-12-page11.txt: [('im-', 'im'), ('discour-', 'discour'), ('per-', 'per')] PUR19020102-V01-12-page12.txt: [('win--', 'win-'), ('-thing', 'thing'), ('-ground', 'ground'), ('-cowardice', 'cowardice')] PUR19020102-V01-12-page14.txt: [('-', ''), ('-souls', 'souls'), ('-', ''), ('-', '')] PUR19020102-V01-12-page15.txt: [('CORRE-', 'CORRE')] PUR19020102-V01-12-page16.txt: [('SEVENTH-', 'SEVENTH')] PUR19020102-V01-12-page2.txt: [('-of', 'of'), ('re-', 're')] PUR19020102-V01-12-page3.txt: [('Lewis-', 'Lewis'), ('chil-', 'chil')] PUR19020102-V01-12-page4.txt: [('per-', 'per'), ('busi-', 'busi'), ('cot-', 'cot')] PUR19020102-V01-12-page5.txt: [('-an', 'an'), ('-fully', 'fully')] PUR19020102-V01-12-page6.txt: [('con-', 'con'), ('won-', 'won'), ('lit-', 'lit'), ('canvass-', 'canvass'), ('"Re-', '"Re')] PUR19020102-V01-12-page8.txt: [('-', ''), ('-', ''), ('Jeru-', 'Jeru')] PUR19020102-V01-12-page9.txt: [('church-', 'church'), ('lis-', 'lis')] PUR19020116-V01-13-page1.txt: [('ORGANI-', 'ORGANI'), ('at-', 'at'), ('Sev-', 'Sev')] PUR19020116-V01-13-page10.txt: [('spiritu-', 'spiritu'), ('cere-', 'cere'), ('be-', 'be'), ('-say', 'say')] PUR19020116-V01-13-page11.txt: [('-', ''), ('teach-', 'teach'), ('sit-', 'sit')] PUR19020116-V01-13-page12.txt: [('-', ''), ('sug-', 'sug'), ('-us', 'us'), ('HEALDS-', 'HEALDS'), ('blacksmith-', 'blacksmith'), ('HONO-', 'HONO'), ('wit-', 'wit')] PUR19020116-V01-13-page13.txt: [('in-', 'in'), ('inter-', 'inter')] PUR19020116-V01-13-page14.txt: [('CORRE-', 'CORRE')] PUR19020116-V01-13-page15.txt: [('-are', 'are'), ('-and', 'and'), ('-', ''), ('-thirty', 'thirty'), ('individ-', 'individ'), ('"SEN-', '"SEN'), ('Jan-', 'Jan')] PUR19020116-V01-13-page16.txt: [('SEVENTH-', 'SEVENTH'), ('Ore-', 'Ore'), ('in-', 'in'), ('Nor-', 'Nor'), ('sub-', 'sub')] PUR19020116-V01-13-page2.txt: [('re-', 're'), ('-form', 'form'), ('-', ''), ('-signifies', 'signifies'), ('bless-', 'bless'), ('de-', 'de'), ('-', '')] PUR19020116-V01-13-page4.txt: [('excep-', 'excep'), ('audi-', 'audi')] PUR19020116-V01-13-page5.txt: [('PA-', 'PA')] PUR19020116-V01-13-page6.txt: [('Bible-', 'Bible'), ('at-', 'at'), ('as-', 'as')] PUR19020116-V01-13-page7.txt: [('reg-', 'reg'), ('CONFER-', 'CONFER')] PUR19020116-V01-13-page8.txt: [('FRAN-', 'FRAN'), ('au-', 'au'), ('relig-', 'relig')] PUR19020116-V01-13-page9.txt: [('-', ''), ("-I-butt'", "I-butt'"), ('PRINCI-', 'PRINCI'), ('de-', 'de')] PUR19020130-V01-14-page1.txt: [('CON-', 'CON'), ('--It', '-It'), ('-', ''), ('-', ''), ('spir-', 'spir')] PUR19020130-V01-14-page10.txt: [('SUN-', 'SUN'), ('-', ''), ('commands."--', 'commands."-')] PUR19020130-V01-14-page11.txt: [('eve--', 'eve-'), ('"No.-', '"No.'), ('-', ''), ('-as', 'as')] PUR19020130-V01-14-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('eve-', 'eve'), ('-', ''), ('Rom.-', 'Rom.'), ('-', '')] PUR19020130-V01-14-page13.txt: [('right-', 'right'), ('-', ''), ('-', '')] PUR19020130-V01-14-page15.txt: [('-', ''), ('-', ''), ('MIS-', 'MIS'), ('health-', 'health')] PUR19020130-V01-14-page16.txt: [('SEVENTH-', 'SEVENTH'), ('SO-', 'SO')] PUR19020130-V01-14-page4.txt: [('camp-', 'camp'), ('-', ''), ('de-', 'de'), ('-', ''), ('-only', 'only')] PUR19020130-V01-14-page6.txt: [('king-', 'king'), ('con-', 'con')] PUR19020130-V01-14-page7.txt: [('Placer-', 'Placer')] PUR19020130-V01-14-page8.txt: [('-fruitfulness.', 'fruitfulness.'), ('-is', 'is')] PUR19020130-V01-14-page9.txt: [('RECORDER-', 'RECORDER'), ('CON-', 'CON'), ('SOUTH-', 'SOUTH')] PUR19020213-V01-15-page1.txt: [('as-', 'as')] PUR19020213-V01-15-page10.txt: [('-Mildred', 'Mildred')] PUR19020213-V01-15-page14.txt: [('especially-', 'especially'), ('-view', 'view'), ('CORRESPOND-', 'CORRESPOND'), ('institu-', 'institu')] PUR19020213-V01-15-page16.txt: [('CHURCH-', 'CHURCH')] PUR19020213-V01-15-page19.txt: [('-', '')] PUR19020213-V01-15-page2.txt: [('existing-', 'existing')] PUR19020213-V01-15-page20.txt: [('printing--', 'printing-'), ('-', ''), ('-been', 'been')] PUR19020213-V01-15-page21.txt: [('BIBLE-', 'BIBLE'), ('-', '')] PUR19020213-V01-15-page22.txt: [('-', ''), ('-', ''), ('-', ''), ('ad-', 'ad'), ('-', ''), ('oppor-', 'oppor'), ('-', '')] PUR19020213-V01-15-page24.txt: [('SEVENTH-', 'SEVENTH')] PUR19020213-V01-15-page3.txt: [('-Every', 'Every'), ('Confer-', 'Confer'), ('stu-', 'stu')] PUR19020213-V01-15-page4.txt: [('hin-', 'hin'), ('-we', 'we')] PUR19020213-V01-15-page5.txt: [('-Christ', 'Christ'), ('Sacra-', 'Sacra'), ('-', ''), ('JAN-', 'JAN'), ('-', '')] PUR19020213-V01-15-page6.txt: [('-', ''), ('dis-', 'dis'), ('-', ''), ('sam-', 'sam'), ('Ana-', 'Ana')] PUR19020213-V01-15-page7.txt: [('-', ''), ('-', ''), ('SABBATH-', 'SABBATH'), ('SABBATH-', 'SABBATH'), ('-', ''), ('RE-', 'RE'), ('com-', 'com'), ('-', ''), ('-', '')] PUR19020213-V01-15-page8.txt: [('SABBATH-', 'SABBATH'), ('-Sabbathschool', 'Sabbathschool'), ('-', '')] PUR19020313-V01-16-page1.txt: [('-', ''), ('fellow-', 'fellow'), ('cour-', 'cour')] PUR19020313-V01-16-page10.txt: [('black-', 'black')] PUR19020313-V01-16-page11.txt: [('-this', 'this'), ('inter-', 'inter')] PUR19020313-V01-16-page12.txt: [('re-', 're'), ('POR-', 'POR')] PUR19020313-V01-16-page13.txt: [('re-', 're')] PUR19020313-V01-16-page14.txt: [('-made', 'made'), ('Con-', 'Con')] PUR19020313-V01-16-page15.txt: [('CAN-', 'CAN'), ('them-', 'them')] PUR19020313-V01-16-page16.txt: [('SEVENTH-', 'SEVENTH'), ('Con-', 'Con'), ('..-', '..')] PUR19020313-V01-16-page2.txt: [('ordi-', 'ordi')] PUR19020313-V01-16-page3.txt: [('guaran-', 'guaran')] PUR19020313-V01-16-page4.txt: [('en-', 'en'), ('com-', 'com'), ('ordi-', 'ordi'), ('Insti-', 'Insti'), ('Pro-', 'Pro')] PUR19020313-V01-16-page5.txt: [('-', ''), ('SABBATH-', 'SABBATH'), ('accom-', 'accom')] PUR19020313-V01-16-page6.txt: [('Sabbath-school-', 'Sabbath-school'), ('con-', 'con'), ('con-', 'con')] PUR19020313-V01-16-page7.txt: [('fr-', 'fr')] PUR19020313-V01-16-page8.txt: [('re-', 're')] PUR19020313-V01-16-page9.txt: [('de-', 'de'), ('indus-', 'indus')] PUR19020327-V01-17-page1.txt: [('con-', 'con'), ('-', ''), ('niis-', 'niis')] PUR19020327-V01-17-page12.txt: [('-', ''), ('-', ''), ('out-', 'out')] PUR19020327-V01-17-page13.txt: [('-', ''), ('-work', 'work')] PUR19020327-V01-17-page14.txt: [('CAMP-', 'CAMP')] PUR19020327-V01-17-page15.txt: [('-', ''), ('CON-', 'CON'), ('-', '')] PUR19020327-V01-17-page16.txt: [('Ari-', 'Ari'), ('bap-', 'bap')] PUR19020327-V01-17-page17.txt: [('-', ''), ('-', ''), ('-', ''), ('peo-', 'peo')] PUR19020327-V01-17-page18.txt: [('text-', 'text'), ('OF-', 'OF')] PUR19020327-V01-17-page2.txt: [('-', ''), ('ex-', 'ex'), ('liabili-', 'liabili')] PUR19020327-V01-17-page20.txt: [('COUN-', 'COUN'), ('The--', 'The-'), ('-', ''), ('-', ''), ('-', '')] PUR19020327-V01-17-page22.txt: [('insin-', 'insin')] PUR19020327-V01-17-page24.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('manage-', 'manage'), ('Ire-', 'Ire'), ('confer-', 'confer')] PUR19020327-V01-17-page3.txt: [('-colleges', 'colleges'), ('-with', 'with'), ('Or-', 'Or'), ('Licen-', 'Licen'), ('Offer-', 'Offer'), ('ka-', 'ka'), ('in-', 'in'), ('Recorder"-', 'Recorder"'), ('-', ''), ('Decem-', 'Decem'), ('-', ''), ('-', '')] PUR19020327-V01-17-page4.txt: [('-', ''), ('rec-', 'rec')] PUR19020327-V01-17-page5.txt: [('-for', 'for'), ('PUBLISH-', 'PUBLISH'), ('CHRIS-', 'CHRIS'), ('-', '')] PUR19020327-V01-17-page6.txt: [('mission-', 'mission'), ('SANITA-', 'SANITA')] PUR19020327-V01-17-page7.txt: [('treasurer-', 'treasurer'), ('-of', 'of'), ('CON-', 'CON'), ('confer-', 'confer'), ('al-', 'al')] PUR19020327-V01-17-page8.txt: [('Her-', 'Her'), ('organ-', 'organ'), ('con-', 'con')] PUR19020327-V01-17-page9.txt: [('-cad', 'cad')] PUR19020410-V01-18-page1.txt: [('rebel-', 'rebel'), ('-', '')] PUR19020410-V01-18-page10.txt: [('bene-', 'bene')] PUR19020410-V01-18-page11.txt: [('feed-', 'feed'), ('-', '')] PUR19020410-V01-18-page12.txt: [('co-', 'co'), ('fol-', 'fol'), ('text-', 'text'), ('vine-', 'vine'), ('bless-', 'bless'), ('church-', 'church'), ('lit-', 'lit'), ('suc-', 'suc')] PUR19020410-V01-18-page13.txt: [('church-', 'church')] PUR19020410-V01-18-page14.txt: [('-', ''), ('at-', 'at')] PUR19020410-V01-18-page16.txt: [('SEVENTH-', 'SEVENTH')] PUR19020410-V01-18-page2.txt: [('-', '')] PUR19020410-V01-18-page5.txt: [('-', ''), ('-', ''), ('-we', 'we')] PUR19020410-V01-18-page6.txt: [('SCANDINA-', 'SCANDINA')] PUR19020410-V01-18-page7.txt: [('mes-', 'mes')] PUR19020410-V01-18-page8.txt: [('-', ''), ('pos-', 'pos')] PUR19020410-V01-18-page9.txt: [('SABBATH-', 'SABBATH'), ('char-', 'char')] PUR19020424-V01-19-page1.txt: [('-', ''), ('ex-', 'ex')] PUR19020424-V01-19-page10.txt: [('-griefs', 'griefs'), ('-His', 'His')] PUR19020424-V01-19-page11.txt: [('-He', 'He'), ('COLLEGES-', 'COLLEGES'), ('de-', 'de'), ('-', '')] PUR19020424-V01-19-page12.txt: [('-ye', 'ye'), ('-', ''), ('ar-', 'ar'), ('in-', 'in'), ('influ-', 'influ'), ('for-', 'for'), ('them-', 'them'), ('repre-', 'repre')] PUR19020424-V01-19-page13.txt: [('institu-', 'institu'), ('pros-', 'pros')] PUR19020424-V01-19-page14.txt: [('-in', 'in'), ('ap-', 'ap')] PUR19020424-V01-19-page15.txt: [('mes-', 'mes'), ('Esmeralda-', 'Esmeralda'), ('Oakland-', 'Oakland')] PUR19020424-V01-19-page16.txt: [('HOROLOG-', 'HOROLOG')] PUR19020424-V01-19-page2.txt: [('-', ''), ('-', ''), ('chil-', 'chil')] PUR19020424-V01-19-page3.txt: [('SEVENTH-', 'SEVENTH'), ('CAL-', 'CAL'), ('sani-', 'sani'), ('med-', 'med'), ('corre-', 'corre'), ('-day.', 'day.')] PUR19020424-V01-19-page4.txt: [('LES-', 'LES'), ('corn-', 'corn')] PUR19020424-V01-19-page5.txt: [('num-', 'num')] PUR19020424-V01-19-page6.txt: [('CAN-', 'CAN'), ('canvass-', 'canvass'), ('de-', 'de')] PUR19020424-V01-19-page7.txt: [('-presenting', 'presenting'), ('person--', 'person-')] PUR19020424-V01-19-page8.txt: [('-', ''), ('-', ''), ('mission-', 'mission')] PUR19020424-V01-19-page9.txt: [('SABBATH-SCI-', 'SABBATH-SCI'), ('par-', 'par')] PUR19020508-V01-20-page1.txt: [('INSTITU-', 'INSTITU'), ('posi-', 'posi'), ('chil-', 'chil')] PUR19020508-V01-20-page10.txt: [('SABBATH-SO-', 'SABBATH-SO'), ('BAKERS-', 'BAKERS'), ('-', ''), ('de-', 'de')] PUR19020508-V01-20-page11.txt: [('-We', 'We')] PUR19020508-V01-20-page12.txt: [('re-', 're'), ('un-', 'un')] PUR19020508-V01-20-page13.txt: [('-met', 'met'), ('-', ''), ('-the', 'the'), ('hav-', 'hav'), ('ex-', 'ex')] PUR19020508-V01-20-page14.txt: [('HEALDS-', 'HEALDS')] PUR19020508-V01-20-page15.txt: [('ac-', 'ac')] PUR19020508-V01-20-page16.txt: [('SEVENTH-', 'SEVENTH'), ('CAMP-', 'CAMP'), ('-camp-meeting', 'camp-meeting'), ('-', '')] PUR19020508-V01-20-page2.txt: [('-', ''), ('indi-', 'indi')] PUR19020508-V01-20-page3.txt: [('the-', 'the'), ('con-', 'con')] PUR19020508-V01-20-page5.txt: [('passen-', 'passen'), ('-better.', 'better.'), ('pa-', 'pa')] PUR19020508-V01-20-page8.txt: [('FREE-', 'FREE'), ('ARI-', 'ARI'), ('AD-', 'AD'), ('de--', 'de-')] PUR19020508-V01-20-page9.txt: [('-the', 'the'), ('re-', 're'), ('-meetings', 'meetings')] PUR19020522-V01-21-page10.txt: [('be-', 'be'), ('-But', 'But'), ('with-', 'with')] PUR19020522-V01-21-page11.txt: [('sys-', 'sys'), ('-infinite', 'infinite'), ('-God', 'God'), ('-read', 'read'), ('-they', 'they'), ('instruc-', 'instruc')] PUR19020522-V01-21-page12.txt: [('sev-', 'sev'), ('AMBASSA-', 'AMBASSA')] PUR19020522-V01-21-page13.txt: [('-ought', 'ought'), ('-before', 'before'), ('-', ''), ('-', ''), ('offer-', 'offer'), ('-fold', 'fold'), ('-every', 'every'), ('-and', 'and'), ('-', ''), ('-', ''), ('mat-', 'mat')] PUR19020522-V01-21-page14.txt: [('heart-to--', 'heart-to-'), ('best-', 'best'), ('gen-', 'gen'), ('oppor-', 'oppor')] PUR19020522-V01-21-page16.txt: [('-at', 'at'), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020522-V01-21-page2.txt: [('respective-', 'respective')] PUR19020522-V01-21-page3.txt: [('prep-', 'prep')] PUR19020522-V01-21-page4.txt: [('TWENTY-SEV-', 'TWENTY-SEV')] PUR19020522-V01-21-page5.txt: [('-', ''), ('-Christian', 'Christian')] PUR19020522-V01-21-page6.txt: [('publica-', 'publica')] PUR19020522-V01-21-page7.txt: [('espe-', 'espe'), ('--Christian', '-Christian'), ('-Christian', 'Christian'), ('Se-', 'Se')] PUR19020522-V01-21-page8.txt: [('Lake-', 'Lake')] PUR19020605-V01-22-page1.txt: [('Him-', 'Him')] PUR19020605-V01-22-page10.txt: [('rela-', 'rela')] PUR19020605-V01-22-page11.txt: [('ma-', 'ma'), ('--', '-'), ('--', '-'), ('-', ''), ('-', ''), ('Les-', 'Les'), ('-', ''), ('-', ''), ('-', '')] PUR19020605-V01-22-page12.txt: [('-a', 'a'), ('-and', 'and'), ('-of', 'of'), ('-of', 'of')] PUR19020605-V01-22-page14.txt: [('stu-', 'stu'), ('MED-', 'MED'), ('BE-', 'BE'), ('Beacy-', 'Beacy'), ('MISSION-', 'MISSION')] PUR19020605-V01-22-page15.txt: [('un-', 'un')] PUR19020605-V01-22-page16.txt: [('plan-', 'plan'), ('SEVENTH-', 'SEVENTH'), ('Anglo-', 'Anglo'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020605-V01-22-page2.txt: [('re-', 're')] PUR19020605-V01-22-page3.txt: [('DEPART-', 'DEPART'), ('RECORDER-', 'RECORDER'), ('-', ''), ('LIB-', 'LIB')] PUR19020605-V01-22-page5.txt: [('-', ''), ('pur-', 'pur')] PUR19020605-V01-22-page6.txt: [('-t', 't'), ('-', ''), ('ex-', 'ex')] PUR19020605-V01-22-page8.txt: [('neigh-', 'neigh'), ('ad-', 'ad')] PUR19020605-V01-22-page9.txt: [('Sabbath-', 'Sabbath')] PUR19020619-V01-23-page1.txt: [('-What', 'What'), ('-thy', 'thy'), ('-condition', 'condition')] PUR19020619-V01-23-page10.txt: [('-until', 'until')] PUR19020619-V01-23-page11.txt: [('-obstacles', 'obstacles'), ('-their', 'their')] PUR19020619-V01-23-page13.txt: [('-', ''), ('-this', 'this')] PUR19020619-V01-23-page14.txt: [('COR-', 'COR'), ('-', ''), ('-', '')] PUR19020619-V01-23-page16.txt: [('SEVENTH-', 'SEVENTH'), ('CHRIS-', 'CHRIS'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020619-V01-23-page2.txt: [('asso-', 'asso'), ('-', '')] PUR19020619-V01-23-page4.txt: [('CON-', 'CON')] PUR19020619-V01-23-page6.txt: [('im-', 'im'), ('-', ''), ('church-', 'church'), ('de-', 'de')] PUR19020619-V01-23-page7.txt: [('-"Missionary', '"Missionary'), ('in-', 'in'), ('per-', 'per'), ('-of', 'of'), ('num-', 'num')] PUR19020619-V01-23-page8.txt: [('main-', 'main'), ('com-', 'com'), ('CONFER-', 'CONFER')] PUR19020619-V01-23-page9.txt: [('assur-', 'assur')] PUR19020703-V01-24-page10.txt: [('-his', 'his'), ('un-', 'un'), ('knowl-', 'knowl')] PUR19020703-V01-24-page11.txt: [('an-', 'an'), ('occa-', 'occa')] PUR19020703-V01-24-page12.txt: [('in-', 'in'), ('sanita-', 'sanita'), ('en-', 'en'), ('sel-', 'sel')] PUR19020703-V01-24-page13.txt: [('-favorable', 'favorable'), ('-and', 'and'), ('-beginning', 'beginning'), ('atten-', 'atten'), ('an-', 'an'), ('mission-', 'mission')] PUR19020703-V01-24-page15.txt: [('un-', 'un'), ('sea-', 'sea'), ('Scandi-', 'Scandi')] PUR19020703-V01-24-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('Pa-', 'Pa'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020703-V01-24-page2.txt: [('-established', 'established'), ('graciouslyof-', 'graciouslyof'), ('-', '')] PUR19020703-V01-24-page3.txt: [('any-', 'any')] PUR19020703-V01-24-page4.txt: [('-he', 'he'), ('-', ''), ('lay-', 'lay'), ('oneduca-', 'oneduca'), ('Su-', 'Su'), ('-', '')] PUR19020703-V01-24-page5.txt: [('in-', 'in'), ('dif-', 'dif')] PUR19020703-V01-24-page6.txt: [('re-', 're')] PUR19020703-V01-24-page8.txt: [('CONFER-', 'CONFER')] PUR19020703-V01-24-page9.txt: [('SABBATH-', 'SABBATH'), ('-I', 'I'), ('-I', 'I'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('to-', 'to'), ('-', ''), ('-', '')] PUR19020717-V01-25-page10.txt: [('con-', 'con'), ('GRADU-', 'GRADU')] PUR19020717-V01-25-page11.txt: [('demon-', 'demon'), ('MISSION-', 'MISSION'), ('-', ''), ('-the', 'the'), ('AS-', 'AS'), ('-', ''), ('Be-', 'Be')] PUR19020717-V01-25-page12.txt: [('-', ''), ('Sim-', 'Sim'), ('--', '-'), ('or-', 'or')] PUR19020717-V01-25-page13.txt: [('un-', 'un'), ('sacrific-', 'sacrific')] PUR19020717-V01-25-page14.txt: [('-several', 'several')] PUR19020717-V01-25-page15.txt: [('CON-', 'CON'), ('Seton-', 'Seton')] PUR19020717-V01-25-page16.txt: [('con-', 'con'), ('SEVENTH-', 'SEVENTH'), ('"Bible-', '"Bible'), ('la-', 'la'), ('-latest.', 'latest.'), ('cir-', 'cir'), ('-i', 'i'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020717-V01-25-page2.txt: [('ejectino-', 'ejectino')] PUR19020717-V01-25-page3.txt: [('-we', 'we')] PUR19020717-V01-25-page5.txt: [('pro-', 'pro'), ('-', ''), ('Pendle-', 'Pendle')] PUR19020717-V01-25-page6.txt: [('CON-', 'CON'), ('CON-', 'CON'), ('-', ''), ('-', ''), ('re-', 're'), ('oth-', 'oth'), ('ship-', 'ship'), ('CON-', 'CON')] PUR19020717-V01-25-page7.txt: [('en-', 'en'), ('through-', 'through')] PUR19020717-V01-25-page8.txt: [('DEPARTMENT-', 'DEPARTMENT'), ('CON-', 'CON'), ('-', '')] PUR19020717-V01-25-page9.txt: [('SELF-', 'SELF'), ('secur-', 'secur')] PUR19020731-V01-26-page1.txt: [('al-', 'al'), ('doc-', 'doc')] PUR19020731-V01-26-page10.txt: [('num-', 'num'), ('--', '-')] PUR19020731-V01-26-page11.txt: [('Con-', 'Con'), ('SOUTH-', 'SOUTH'), ('cer-', 'cer'), ('church-', 'church'), ('-chool', 'chool')] PUR19020731-V01-26-page12.txt: [('Califor-', 'Califor')] PUR19020731-V01-26-page13.txt: [('MIS-', 'MIS')] PUR19020731-V01-26-page15.txt: [('-', ''), ('ar-', 'ar'), ('mo-', 'mo')] PUR19020731-V01-26-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020731-V01-26-page2.txt: [('chil-', 'chil'), ('-', '')] PUR19020731-V01-26-page3.txt: [('cor-', 'cor')] PUR19020731-V01-26-page4.txt: [('CON-', 'CON')] PUR19020731-V01-26-page6.txt: [('CAL-', 'CAL'), ('-', ''), ('CON-', 'CON')] PUR19020731-V01-26-page7.txt: [('-us', 'us')] PUR19020731-V01-26-page8.txt: [('-', ''), ('re-', 're'), ('suit-', 'suit')] PUR19020731-V01-26-page9.txt: [('--', '-'), ('ex-', 'ex')] PUR19020814-V02-01-page1.txt: [('mem-', 'mem')] PUR19020814-V02-01-page11.txt: [('recommend-', 'recommend')] PUR19020814-V02-01-page12.txt: [('one-', 'one')] PUR19020814-V02-01-page13.txt: [('ASSOCIA-', 'ASSOCIA'), ('At-', 'At')] PUR19020814-V02-01-page14.txt: [('Es-', 'Es')] PUR19020814-V02-01-page15.txt: [('-', ''), ('-', ''), ('RYA.-', 'RYA.'), ('-t', 't'), ('-e', 'e')] PUR19020814-V02-01-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19020814-V02-01-page2.txt: [('encour-', 'encour')] PUR19020814-V02-01-page3.txt: [('repre-', 'repre'), ('quali-', 'quali'), ('CAMP-', 'CAMP'), ('CON-', 'CON')] PUR19020814-V02-01-page4.txt: [('CON-', 'CON')] PUR19020814-V02-01-page5.txt: [('-all', 'all')] PUR19020814-V02-01-page6.txt: [('pro-', 'pro'), ('-', ''), ('-', '')] PUR19020814-V02-01-page7.txt: [('WORK-', 'WORK')] PUR19020814-V02-01-page8.txt: [('-', ''), ('Run-', 'Run'), ('diph-', 'diph')] PUR19020814-V02-01-page9.txt: [("birds'-", "birds'")] PUR19020828-V02-02-page1.txt: [('-', ''), ('light-', 'light')] PUR19020828-V02-02-page11.txt: [('Cali-', 'Cali'), ('pro-', 'pro'), ('gener-', 'gener')] PUR19020828-V02-02-page12.txt: [('Sev-', 'Sev'), ('mis-', 'mis')] PUR19020828-V02-02-page14.txt: [('re-', 're'), ('feel-', 'feel')] PUR19020828-V02-02-page15.txt: [('AP-', 'AP'), ('MIN-', 'MIN'), ('-broad', 'broad'), ('-value', 'value')] PUR19020828-V02-02-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('CAMP-', 'CAMP')] PUR19020828-V02-02-page2.txt: [('-the', 'the'), ('some-', 'some'), ('-business', 'business'), ('-we', 'we')] PUR19020828-V02-02-page3.txt: [('-ask', 'ask'), ('CON-', 'CON'), ('-', ''), ('denomi-', 'denomi'), ('CON-', 'CON'), ('hear-', 'hear'), ('meet-', 'meet')] PUR19020828-V02-02-page4.txt: [('-', '')] PUR19020828-V02-02-page5.txt: [('CON-', 'CON'), ('ASSO-', 'ASSO'), ('SEVENTH-', 'SEVENTH')] PUR19020828-V02-02-page6.txt: [('-L', 'L')] PUR19020828-V02-02-page7.txt: [('coop-', 'coop')] PUR19020828-V02-02-page8.txt: [('PEO-', 'PEO'), ('ASSOCI-', 'ASSOCI'), ('COM-', 'COM'), ('Pres-', 'Pres'), ('-', '')] PUR19020828-V02-02-page9.txt: [('corpora-', 'corpora'), ('here-', 'here')] PUR19020911-V02-03-page1.txt: [('fra-', 'fra'), ('instru-', 'instru')] PUR19020911-V02-03-page10.txt: [('Testitno-', 'Testitno')] PUR19020911-V02-03-page11.txt: [('-', ''), ('Self-', 'Self'), ('text-', 'text')] PUR19020911-V02-03-page12.txt: [('to-', 'to')] PUR19020911-V02-03-page13.txt: [('invisi-', 'invisi'), ('seek-', 'seek'), ('tri-', 'tri'), ('righteous-', 'righteous'), ('-', ''), ('vol-', 'vol'), ('--', '-')] PUR19020911-V02-03-page14.txt: [('con-', 'con'), ('one-', 'one')] PUR19020911-V02-03-page15.txt: [('sum-', 'sum')] PUR19020911-V02-03-page16.txt: [('Danish-', 'Danish'), ('-', '')] PUR19020911-V02-03-page2.txt: [('notwith-', 'notwith')] PUR19020911-V02-03-page3.txt: [('grate-', 'grate')] PUR19020911-V02-03-page5.txt: [('CONFER-', 'CONFER'), ('-', ''), ('-', '')] PUR19020911-V02-03-page7.txt: [('profit-', 'profit')] PUR19020911-V02-03-page8.txt: [('fountain-', 'fountain')] PUR19020911-V02-03-page9.txt: [('-', '')] PUR19020925-V02-04-page10.txt: [('-called', 'called'), ('Chris-', 'Chris'), ("pres'-", "pres'"), ('S.-', 'S.'), ('ab-', 'ab')] PUR19020925-V02-04-page12.txt: [('Sunday-', 'Sunday'), ('-', ''), ('-', ''), ('influ-', 'influ'), ('Sev-', 'Sev')] PUR19020925-V02-04-page13.txt: [('-words', 'words'), ('inter-', 'inter'), ('canvass-', 'canvass'), ('-', '')] PUR19020925-V02-04-page14.txt: [('-medical', 'medical'), ('deep-', 'deep'), ('mis-', 'mis')] PUR19020925-V02-04-page15.txt: [('as-', 'as'), ('dream-', 'dream'), ('deter-', 'deter')] PUR19020925-V02-04-page16.txt: [('SEVENTH-', 'SEVENTH'), ('prac-', 'prac'), ('secre-', 'secre')] PUR19020925-V02-04-page2.txt: [('"Mar-', '"Mar'), ('re-', 're'), ('Aug-', 'Aug'), ('pro-', 'pro'), ('hon-', 'hon'), ('lov-', 'lov'), ('wonder-', 'wonder'), ('build-', 'build')] PUR19020925-V02-04-page3.txt: [('confer-', 'confer'), ('exec-', 'exec'), ('con-', 'con'), ('strug-', 'strug'), ('confer-', 'confer'), ('em-', 'em')] PUR19020925-V02-04-page4.txt: [('re-', 're'), ('ac-', 'ac'), ('be-', 'be'), ('bless-', 'bless')] PUR19020925-V02-04-page5.txt: [('-', ''), ('inade-', 'inade'), ('de-', 'de'), ('deliv-', 'deliv'), ('inter-', 'inter'), ('de-', 'de')] PUR19020925-V02-04-page6.txt: [('--', '-'), ('ap-', 'ap')] PUR19020925-V02-04-page7.txt: [('minis-', 'minis'), ('im-', 'im')] PUR19020925-V02-04-page8.txt: [('chil-', 'chil'), ('encour-', 'encour')] PUR19020925-V02-04-page9.txt: [('--', '-'), ('be-', 'be')] PUR19021009-V02-05-page1.txt: [('ac-', 'ac'), ('con-', 'con')] PUR19021009-V02-05-page10.txt: [('-an', 'an')] PUR19021009-V02-05-page11.txt: [('-from', 'from')] PUR19021009-V02-05-page12.txt: [('over--', 'over-')] PUR19021009-V02-05-page13.txt: [('as-', 'as')] PUR19021009-V02-05-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19021009-V02-05-page16.txt: [('trade.-', 'trade.'), ('SEVENTH-', 'SEVENTH'), ('Pub.-', 'Pub.'), ('-Christianity', 'Christianity')] PUR19021009-V02-05-page2.txt: [('Accord-', 'Accord'), ('an-', 'an'), ('en-', 'en')] PUR19021009-V02-05-page3.txt: [('Camp-', 'Camp')] PUR19021009-V02-05-page4.txt: [('CON-', 'CON')] PUR19021009-V02-05-page5.txt: [('CONFER-', 'CONFER'), ('CONFER-', 'CONFER')] PUR19021009-V02-05-page6.txt: [('ne-', 'ne'), ('By-', 'By')] PUR19021009-V02-05-page7.txt: [('pro-', 'pro'), ('Free-', 'Free')] PUR19021009-V02-05-page8.txt: [('---"Faith', '--"Faith')] PUR19021009-V02-05-page9.txt: [('-', ''), ('-of', 'of')] PUR19021023-V02-06-page1.txt: [('ad-', 'ad'), ('expres-', 'expres')] PUR19021023-V02-06-page10.txt: [('possi-', 'possi')] PUR19021023-V02-06-page11.txt: [('-eth', 'eth')] PUR19021023-V02-06-page12.txt: [('Fran-', 'Fran'), ('rec-', 'rec'), ('-', ''), ('Church-', 'Church'), ('Intermission-', 'Intermission'), ('Session-', 'Session')] PUR19021023-V02-06-page13.txt: [('-their', 'their'), ('conch-', 'conch'), ('read-', 'read'), ('-no', 'no'), ('Sev-', 'Sev'), ('pub-', 'pub')] PUR19021023-V02-06-page15.txt: [('few.-', 'few.')] PUR19021023-V02-06-page16.txt: [('SEVENTH-', 'SEVENTH'), ('missiona-', 'missiona'), ('intelli-', 'intelli'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19021023-V02-06-page3.txt: [('-the', 'the'), ('trem-', 'trem'), ('vig-', 'vig')] PUR19021023-V02-06-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19021023-V02-06-page5.txt: [('churches--', 'churches-'), ('har-', 'har'), ('Cali-', 'Cali')] PUR19021023-V02-06-page6.txt: [('-different', 'different'), ('-Western', 'Western'), ('arrange-', 'arrange')] PUR19021023-V02-06-page7.txt: [('expres-', 'expres'), ('easy-', 'easy')] PUR19021023-V02-06-page9.txt: [('appli-', 'appli'), ('is-', 'is'), ('es-', 'es'), ('-Dear', 'Dear')] PUR19021106-V02-07-page1.txt: [('fol-', 'fol')] PUR19021106-V02-07-page10.txt: [('-perfectly', 'perfectly'), ('effi-', 'effi'), ('-conference', 'conference')] PUR19021106-V02-07-page11.txt: [('busi-', 'busi'), ('an-', 'an'), ('-', '')] PUR19021106-V02-07-page12.txt: [('dis-', 'dis'), ('com-', 'com'), ('giv-', 'giv'), ('confer-', 'confer'), ('confer-', 'confer')] PUR19021106-V02-07-page13.txt: [('contribu-', 'contribu'), ('consist-', 'consist')] PUR19021106-V02-07-page14.txt: [('say-', 'say'), ('-', ''), ('con-', 'con')] PUR19021106-V02-07-page15.txt: [('-', ''), ('teach-', 'teach')] PUR19021106-V02-07-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-cent', 'cent'), ('subscrip-', 'subscrip'), ('-the', 'the')] PUR19021106-V02-07-page2.txt: [('-', ''), ('follow-', 'follow')] PUR19021106-V02-07-page3.txt: [('-C.', 'C.'), ('Ever-', 'Ever'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19021106-V02-07-page4.txt: [('Concern-', 'Concern'), ('-General', 'General'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19021106-V02-07-page5.txt: [('under-', 'under'), ('-', ''), ('ef-', 'ef')] PUR19021106-V02-07-page6.txt: [('sub-', 'sub')] PUR19021106-V02-07-page7.txt: [('mem-', 'mem'), ('com-', 'com'), ('long--', 'long-'), ('-', ''), ('-', ''), ('-', '')] PUR19021106-V02-07-page8.txt: [('Con-', 'Con')] PUR19021106-V02-07-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-one', 'one')] PUR19021120-V02-08-page10.txt: [('-', '')] PUR19021120-V02-08-page11.txt: [('BEGIN-', 'BEGIN'), ('able-', 'able')] PUR19021120-V02-08-page12.txt: [('-expected', 'expected'), ('-', '')] PUR19021120-V02-08-page13.txt: [('-all', 'all'), ('Stomachs-', 'Stomachs'), ('-food', 'food'), ('-', ''), ('before-', 'before'), ('every-', 'every'), ('-', ''), ('man-', 'man')] PUR19021120-V02-08-page14.txt: [('mis-', 'mis'), ('Christian-', 'Christian'), ('dili-', 'dili')] PUR19021120-V02-08-page15.txt: [('for-', 'for'), ('-ward', 'ward'), ('-Lord', 'Lord'), ('ADOLES-', 'ADOLES')] PUR19021120-V02-08-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19021120-V02-08-page2.txt: [('---Plainly', '--Plainly'), ('Sis-', 'Sis'), ('appe-', 'appe')] PUR19021120-V02-08-page3.txt: [('-where', 'where'), ('represen-', 'represen'), ('-brethren', 'brethren'), ('in-', 'in')] PUR19021120-V02-08-page4.txt: [('-', ''), ('Chris-', 'Chris')] PUR19021120-V02-08-page5.txt: [('per-', 'per')] PUR19021120-V02-08-page6.txt: [('.-', '.'), ('.-', '.'), ('sta-', 'sta'), ('-Elder', 'Elder'), ('message.-', 'message.'), ('CAMP-', 'CAMP'), ('al--', 'al-'), ('crit-', 'crit'), ('.-', '.'), ('experi-', 'experi')] PUR19021120-V02-08-page7.txt: [('SABBATH-SCI-', 'SABBATH-SCI'), ('Sabbath-', 'Sabbath'), ('Jo-', 'Jo')] PUR19021120-V02-08-page8.txt: [('be-', 'be'), ('-', '')] PUR19021120-V02-08-page9.txt: [('-continue', 'continue'), ('-righteous', 'righteous'), ('-', ''), ('-ested', 'ested')] PUR19021204-V02-09-page1.txt: [('ig-', 'ig')] PUR19021204-V02-09-page10.txt: [('-when', 'when'), ('-', ''), ('sealed-', 'sealed'), ('sanc-', 'sanc')] PUR19021204-V02-09-page12.txt: [('Church-', 'Church'), ('pa--', 'pa-'), ('adver-', 'adver'), ('re-', 're')] PUR19021204-V02-09-page13.txt: [('Nov-', 'Nov'), ('-', '')] PUR19021204-V02-09-page14.txt: [('men-', 'men')] PUR19021204-V02-09-page15.txt: [('-', '')] PUR19021204-V02-09-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19021204-V02-09-page2.txt: [('-', ''), ('-the', 'the')] PUR19021204-V02-09-page3.txt: [('which-', 'which'), ('col--', 'col-')] PUR19021204-V02-09-page4.txt: [('corn-', 'corn'), ('circum-', 'circum'), ('-go', 'go'), ('-', ''), ('-or', 'or'), ('whatso-', 'whatso')] PUR19021204-V02-09-page5.txt: [('-', '')] PUR19021204-V02-09-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('be-', 'be')] PUR19021204-V02-09-page9.txt: [('excel--', 'excel-')] PUR19021218-V02-10-page1.txt: [('.-', '.'), ('-', ''), ("-Shall'", "Shall'"), ('naked-', 'naked'), ('--Qr', '-Qr'), ('V--', 'V-'), ('-the', 'the'), ('sepa-', 'sepa')] PUR19021218-V02-10-page10.txt: [('over."-', 'over."'), ('serv-', 'serv')] PUR19021218-V02-10-page11.txt: [('-to', 'to'), ('Mac-', 'Mac')] PUR19021218-V02-10-page12.txt: [('al-', 'al')] PUR19021218-V02-10-page13.txt: [('well-', 'well'), ('em-', 'em'), ('Per-', 'Per'), ('-', ''), ('-', ''), ('cOntro-', 'cOntro')] PUR19021218-V02-10-page14.txt: [('hurl.-', 'hurl.'), ('agoni-', 'agoni'), ('-that', 'that')] PUR19021218-V02-10-page15.txt: [('them-', 'them'), ('an-', 'an'), ('-oin', 'oin')] PUR19021218-V02-10-page16.txt: [('-much', 'much'), ('-book', 'book'), ('-the', 'the'), ('SEVENTH-', 'SEVENTH'), ('experi-', 'experi'), ('-', ''), ('follow-', 'follow'), ("-'", "'"), ('-nth', 'nth')] PUR19021218-V02-10-page2.txt: [('dwell-', 'dwell')] PUR19021218-V02-10-page3.txt: [('---blessed', '--blessed'), ('stir-', 'stir')] PUR19021218-V02-10-page4.txt: [('theo-', 'theo'), ('-', '')] PUR19021218-V02-10-page5.txt: [('-', ''), ('com-', 'com'), ('-of', 'of'), ('im-', 'im'), ('-', ''), ('school-', 'school')] PUR19021218-V02-10-page6.txt: [('like-', 'like'), ('-', ''), ('Rich-', 'Rich'), ('NOVEM-', 'NOVEM')] PUR19021218-V02-10-page7.txt: [('-', ''), ('our-', 'our'), ('Associa-', 'Associa')] PUR19021218-V02-10-page8.txt: [('in-', 'in'), ('con-', 'con')] PUR19021218-V02-10-page9.txt: [('SABBATI-', 'SABBATI'), ('-JCH', 'JCH'), ('S-', 'S'), ('-', '')] PUR19030101-V02-11-page1.txt: [('con-', 'con'), ('ac-', 'ac'), ('say-', 'say'), ('-', ''), ('-t', 't'), ('indiffer-', 'indiffer')] PUR19030101-V02-11-page10.txt: [('-writers', 'writers')] PUR19030101-V02-11-page11.txt: [("'Pa-", "'Pa"), ('an-', 'an')] PUR19030101-V02-11-page12.txt: [('way-', 'way')] PUR19030101-V02-11-page13.txt: [('be-', 'be'), ('com-', 'com')] PUR19030101-V02-11-page14.txt: [('harmo-', 'harmo')] PUR19030101-V02-11-page16.txt: [('Natal-', 'Natal'), ('SEVENTH-', 'SEVENTH')] PUR19030101-V02-11-page3.txt: [('-', '')] PUR19030101-V02-11-page6.txt: [('RECORDER-', 'RECORDER'), ('Ore-', 'Ore'), ('confer-', 'confer')] PUR19030101-V02-11-page7.txt: [('re-', 're')] PUR19030101-V02-11-page8.txt: [('-S', 'S'), ('-L', 'L'), ('-', '')] PUR19030101-V02-11-page9.txt: [('----Rev.', '---Rev.'), ('ex-', 'ex')] PUR19030115-V02-12-page1.txt: [('--and', '-and')] PUR19030115-V02-12-page10.txt: [('Church-', 'Church'), ('-over', 'over'), ('-and', 'and'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Layman--', 'Layman-'), ('-', ''), ('-', ''), ('Cushman.-', 'Cushman.'), ('-', ''), ('-', '')] PUR19030115-V02-12-page12.txt: [('-', ''), ('LIBRA-', 'LIBRA')] PUR19030115-V02-12-page13.txt: [('meet-', 'meet')] PUR19030115-V02-12-page14.txt: [('gos-', 'gos'), ('-page', 'page')] PUR19030115-V02-12-page15.txt: [('exer-', 'exer')] PUR19030115-V02-12-page16.txt: [('SEVENTH-', 'SEVENTH')] PUR19030115-V02-12-page3.txt: [('mis-', 'mis')] PUR19030115-V02-12-page4.txt: [('Ad-', 'Ad'), ('-', '')] PUR19030115-V02-12-page5.txt: [('-work', 'work')] PUR19030115-V02-12-page7.txt: [('"les-', '"les'), ('under-', 'under')] PUR19030115-V02-12-page8.txt: [('-', ''), ('-', ''), ('ir-', 'ir'), ('dark-', 'dark')] PUR19030129-V02-13-page1.txt: [('sin-', 'sin'), ('Church-', 'Church'), ('Sab-', 'Sab'), ('church-', 'church')] PUR19030129-V02-13-page10.txt: [('pos-', 'pos')] PUR19030129-V02-13-page11.txt: [('oppor-', 'oppor'), ('A.-', 'A.')] PUR19030129-V02-13-page12.txt: [('faith-', 'faith'), ('Al-', 'Al')] PUR19030129-V02-13-page13.txt: [('-PACIFIC', 'PACIFIC'), ('physi-', 'physi'), ('considera-', 'considera'), ('sum-', 'sum')] PUR19030129-V02-13-page14.txt: [('-', ''), ('an-', 'an'), ('can-', 'can')] PUR19030129-V02-13-page15.txt: [('-will', 'will'), ("'-", "'")] PUR19030129-V02-13-page16.txt: [('SEVENTH-', 'SEVENTH')] PUR19030129-V02-13-page2.txt: [('wis-', 'wis'), ('theo-', 'theo')] PUR19030129-V02-13-page3.txt: [('-', '')] PUR19030129-V02-13-page5.txt: [('cer-', 'cer'), ('-', ''), ('presi-', 'presi')] PUR19030129-V02-13-page6.txt: [('-the', 'the'), ('ad-', 'ad'), ('as-', 'as'), ('advan-', 'advan'), ('Oak-', 'Oak'), ('-ese', 'ese')] PUR19030129-V02-13-page7.txt: [('-with', 'with')] PUR19030129-V02-13-page9.txt: [('impor-', 'impor')] PUR19030212-V02-14-page1.txt: [('be-', 'be')] PUR19030212-V02-14-page10.txt: [('un-', 'un'), ('-they', 'they'), ('-', ''), ('-Selected.', 'Selected.'), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ("one's-", "one's"), ('-Selected.', 'Selected.')] PUR19030212-V02-14-page11.txt: [('re-', 're')] PUR19030212-V02-14-page13.txt: [('cob-', 'cob')] PUR19030212-V02-14-page14.txt: [('Har-', 'Har'), ('lib-', 'lib')] PUR19030212-V02-14-page15.txt: [('com-', 'com')] PUR19030212-V02-14-page16.txt: [('ac-', 'ac'), ('SEVENTH-', 'SEVENTH'), ('Pub-', 'Pub')] PUR19030212-V02-14-page3.txt: [('mat-', 'mat'), ('-', '')] PUR19030212-V02-14-page4.txt: [('-', ''), ('-', '')] PUR19030212-V02-14-page5.txt: [('com-', 'com')] PUR19030212-V02-14-page7.txt: [('Oak-', 'Oak'), ('appre-', 'appre')] PUR19030212-V02-14-page8.txt: [('bright-', 'bright'), ('dona-', 'dona'), ('for-', 'for'), ('two-', 'two')] PUR19030212-V02-14-page9.txt: [('los-', 'los'), ('character-', 'character')] PUR19030226-V02-15-page10.txt: [('-giltedge', 'giltedge'), ('can-', 'can')] PUR19030226-V02-15-page11.txt: [('-Object', 'Object')] PUR19030226-V02-15-page13.txt: [('charac-', 'charac'), ('de-', 'de')] PUR19030226-V02-15-page14.txt: [('-.', '.'), ('-z-', 'z-')] PUR19030226-V02-15-page15.txt: [('accommoda-', 'accommoda'), ('twenty-', 'twenty'), ('confer-', 'confer'), ('South-', 'South'), ('bag-', 'bag'), ('hun-', 'hun'), ('inexcus-', 'inexcus'), ('-modations', 'modations')] PUR19030226-V02-15-page16.txt: [('SEVENTH-', 'SEVENTH'), ('dis-', 'dis'), ('-', '')] PUR19030226-V02-15-page4.txt: [('South-', 'South'), ('be-', 'be'), ('dis-', 'dis'), ('be-', 'be'), ('anx-', 'anx'), ('can-', 'can')] PUR19030226-V02-15-page5.txt: [('-', ''), ('-', ''), ('-', '')] PUR19030226-V02-15-page8.txt: [('Church-', 'Church'), ('-', '')] PUR19030226-V02-15-page9.txt: [('-', ''), ('-', ''), ('car-', 'car'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ("-'.'", "'.'"), ('-.', '.'), ('-a', 'a')] PUR19030312-V02-16-page1.txt: [('fol-', 'fol'), ('and-', 'and'), ('-', '')] PUR19030312-V02-16-page10.txt: [('-', '')] PUR19030312-V02-16-page12.txt: [('-already', 'already'), ('-iad', 'iad')] PUR19030312-V02-16-page13.txt: [('obe-', 'obe'), ('com-', 'com'), ('-byr.', 'byr.')] PUR19030312-V02-16-page14.txt: [('reve-', 'reve')] PUR19030312-V02-16-page15.txt: [('im-', 'im'), ('sub-', 'sub'), ('-now', 'now'), ('cheerful--', 'cheerful-'), ('-Ps.', 'Ps.')] PUR19030312-V02-16-page16.txt: [('SEVENTH-', 'SEVENTH'), ('Califor-', 'Califor'), ('-', ''), ('-', '')] PUR19030312-V02-16-page2.txt: [('gain-', 'gain'), ('-', ''), ('-', ''), ('-', '')] PUR19030312-V02-16-page3.txt: [('-', ''), ('-', ''), ('every-', 'every'), ('de-', 'de'), ('cere-', 'cere'), ('par-', 'par')] PUR19030312-V02-16-page4.txt: [('prin-', 'prin'), ('bless-', 'bless')] PUR19030312-V02-16-page5.txt: [('capi-', 'capi'), ('nec-', 'nec')] PUR19030312-V02-16-page7.txt: [('re-', 're')] PUR19030312-V02-16-page8.txt: [('-', ''), ('prep-', 'prep')] PUR19030312-V02-16-page9.txt: [('--converted', '-converted'), ('mission-', 'mission'), ('giving-', 'giving')] PUR19030326-V02-17-page10.txt: [('--receives', '-receives'), ('di-', 'di'), ('re-', 're')] PUR19030326-V02-17-page11.txt: [('min-', 'min'), ('-', ''), ('a-', 'a'), ('-', ''), ('-t', 't')] PUR19030326-V02-17-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Mich', 'Mich'), ('bet-', 'bet'), ('-Selected.', 'Selected.')] PUR19030326-V02-17-page13.txt: [('"Dark-', '"Dark'), ('chan-', 'chan'), ('rain-', 'rain')] PUR19030326-V02-17-page14.txt: [('--and', '-and'), ('--the', '-the')] PUR19030326-V02-17-page15.txt: [('be-', 'be'), ('-', ''), ('Promise.-', 'Promise.'), ('de-', 'de'), ('-', ''), ('self-', 'self'), ('Sequence.-', 'Sequence.')] PUR19030326-V02-17-page16.txt: [('SEVENTH-', 'SEVENTH'), ('.-', '.'), ('.-', '.'), ('Ore-', 'Ore'), ('Re-', 'Re'), ('-in', 'in'), ('through-', 'through')] PUR19030326-V02-17-page2.txt: [('hun-', 'hun'), ('in-', 'in')] PUR19030326-V02-17-page3.txt: [('ever-', 'ever'), ('in-', 'in'), ('testi-', 'testi')] PUR19030326-V02-17-page4.txt: [('-only', 'only')] PUR19030326-V02-17-page5.txt: [('Bel-', 'Bel'), ('pur-', 'pur'), ('sub-', 'sub'), ('grow-', 'grow')] PUR19030326-V02-17-page6.txt: [("'RECORDER-", "'RECORDER"), ('Ta-', 'Ta'), ('accessi-', 'accessi'), ('Encour-', 'Encour')] PUR19030326-V02-17-page8.txt: [('house-to-', 'house-to'), ('con-', 'con')] PUR19030326-V02-17-page9.txt: [('prayer-', 'prayer'), ('knowl-', 'knowl'), ('mission-', 'mission'), ('thou-', 'thou'), ('Be-', 'Be'), ('Scrip-', 'Scrip')] PUR19030423-V02-18-page1.txt: [('serv-', 'serv')] PUR19030423-V02-18-page10.txt: [('-Tyr', 'Tyr'), ('coura-', 'coura'), ('indus-', 'indus'), ('-', ''), ('tom-', 'tom'), ('-', ''), ('-', ''), ('-', '')] PUR19030423-V02-18-page11.txt: [('thor-', 'thor')] PUR19030423-V02-18-page13.txt: [('discour-', 'discour')] PUR19030423-V02-18-page14.txt: [('encour-', 'encour'), ('-could', 'could')] PUR19030423-V02-18-page15.txt: [('Rob-', 'Rob'), ('-bie', 'bie'), ('-to', 'to'), ('-they', 'they'), ('Mc-', 'Mc')] PUR19030423-V02-18-page16.txt: [('--', '-'), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('recom-', 'recom'), ('Cali-', 'Cali'), ('-', ''), ('num-', 'num')] PUR19030423-V02-18-page2.txt: [('-', ''), ('ven-', 'ven')] PUR19030423-V02-18-page3.txt: [('com-', 'com')] PUR19030423-V02-18-page4.txt: [('-route', 'route'), ('de-', 'de'), ('oppor-', 'oppor')] PUR19030423-V02-18-page5.txt: [('-', ''), ('-and', 'and')] PUR19030423-V02-18-page6.txt: [('-practical', 'practical')] PUR19030423-V02-18-page7.txt: [('fol-', 'fol'), ('dan-', 'dan'), ('with-', 'with')] PUR19030423-V02-18-page8.txt: [('-', '')] PUR19030423-V02-18-page9.txt: [('subject--', 'subject-'), ('-home', 'home'), ('-', ''), ('-', '')] PUR19030509-V02-19-page1.txt: [('evan-', 'evan')] PUR19030509-V02-19-page10.txt: [('un-', 'un')] PUR19030509-V02-19-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--..', '-..'), ('educa-', 'educa'), ('-', '')] PUR19030509-V02-19-page12.txt: [('-', '')] PUR19030509-V02-19-page13.txt: [('to-', 'to'), ('com-', 'com'), ('princi-', 'princi')] PUR19030509-V02-19-page14.txt: [('-', ''), ('dur-', 'dur'), ('reason-', 'reason')] PUR19030509-V02-19-page15.txt: [('cour-', 'cour'), ('-time', 'time')] PUR19030509-V02-19-page16.txt: [('SEVENTH-', 'SEVENTH'), ('commis-', 'commis'), ('en-', 'en'), ('business-', 'business')] PUR19030509-V02-19-page2.txt: [('Chris-', 'Chris'), ('com-', 'com')] PUR19030509-V02-19-page3.txt: [('-', ''), ('Sanita-', 'Sanita')] PUR19030509-V02-19-page4.txt: [('ac-', 'ac'), ('recom-', 'recom'), ('-', '')] PUR19030509-V02-19-page5.txt: [('-', ''), ('Thuem-', 'Thuem'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('teach-', 'teach'), ('-', '')] PUR19030509-V02-19-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Kellogg-', 'Kellogg'), ('-', ''), ('per-', 'per')] PUR19030509-V02-19-page7.txt: [('-tithe', 'tithe')] PUR19030509-V02-19-page9.txt: [('-', '')] PUR19030521-V02-20-page10.txt: [('al-', 'al')] PUR19030521-V02-20-page12.txt: [('in-', 'in'), ('-has', 'has'), ('listen-', 'listen')] PUR19030521-V02-20-page14.txt: [('-and', 'and')] PUR19030521-V02-20-page15.txt: [('re-', 're'), ('-express', 'express'), ('martyr-', 'martyr')] PUR19030521-V02-20-page16.txt: [('SEVENTH-', 'SEVENTH'), ('--', '-'), ('noti-', 'noti'), ('-', ''), ('-', '')] PUR19030521-V02-20-page2.txt: [('posses-', 'posses')] PUR19030521-V02-20-page3.txt: [('in-', 'in')] PUR19030521-V02-20-page4.txt: [('-is', 'is'), ('heart-', 'heart')] PUR19030521-V02-20-page5.txt: [('Octo-', 'Octo'), ('canvass-', 'canvass')] PUR19030521-V02-20-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('rec-', 'rec'), ('ad-', 'ad'), ('Depart-', 'Depart')] PUR19030521-V02-20-page7.txt: [('scatter-', 'scatter'), ('-of', 'of'), ('state-', 'state')] PUR19030521-V02-20-page9.txt: [('-', ''), ('pre-', 'pre'), ('Adventists-', 'Adventists')] PUR19030604-V02-21-page10.txt: [('at-', 'at'), ('em-', 'em'), ('admit-', 'admit')] PUR19030604-V02-21-page11.txt: [('op-', 'op'), ('-', ''), ('scholar-', 'scholar'), ('Healds-', 'Healds')] PUR19030604-V02-21-page12.txt: [('-God.', 'God.'), ('-', ''), ('-experience.', 'experience.'), ('-', ''), ('an-', 'an')] PUR19030604-V02-21-page14.txt: [('-Ore.', 'Ore.')] PUR19030604-V02-21-page15.txt: [('impor-', 'impor'), ('meet-', 'meet'), ('busi-', 'busi'), ('-', '')] PUR19030604-V02-21-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('So-', 'So')] PUR19030604-V02-21-page2.txt: [('-Nogales', 'Nogales'), ('them-', 'them'), ('rem-', 'rem')] PUR19030604-V02-21-page3.txt: [('un-', 'un'), ('Encour-', 'Encour'), ('de-', 'de'), ('church-', 'church')] PUR19030604-V02-21-page4.txt: [('en-', 'en'), ('-', ''), ('-', ''), ('END-', 'END'), ('pa-', 'pa')] PUR19030604-V02-21-page5.txt: [('-', ''), ('-', ''), ('five-', 'five'), ('-', ''), ('Sub-', 'Sub'), ('re-', 're')] PUR19030604-V02-21-page6.txt: [('re-', 're'), ('-company', 'company')] PUR19030604-V02-21-page8.txt: [('piti-', 'piti'), ('neg-', 'neg')] PUR19030604-V02-21-page9.txt: [('in-', 'in'), ('Sab-', 'Sab'), ('-sfir', 'sfir')] PUR19030618-V02-22-page10.txt: [('"H.elping-', '"H.elping'), ('-', '')] PUR19030618-V02-22-page11.txt: [('AP-', 'AP'), ('pass-', 'pass'), ('-to', 'to'), ('-', '')] PUR19030618-V02-22-page12.txt: [('-to', 'to')] PUR19030618-V02-22-page13.txt: [('-"Fr', '"Fr'), ('"NI-', '"NI'), ('--New', '-New')] PUR19030618-V02-22-page14.txt: [('-addition', 'addition'), ('depart-', 'depart'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-Tresno', 'Tresno'), ('-', ''), ('-', ''), ('-Selected', 'Selected')] PUR19030618-V02-22-page15.txt: [('un-', 'un'), ('-', '')] PUR19030618-V02-22-page16.txt: [('SEVENTH-', 'SEVENTH'), ('En-', 'En')] PUR19030618-V02-22-page2.txt: [('-Lord', 'Lord'), ('preceding-', 'preceding')] PUR19030618-V02-22-page4.txt: [('-Resolved', 'Resolved'), ('Un-', 'Un'), ('ef-', 'ef')] PUR19030618-V02-22-page5.txt: [('SABBATH-', 'SABBATH'), ('IMPROVE-', 'IMPROVE'), ('hence-', 'hence')] PUR19030618-V02-22-page6.txt: [('-', '')] PUR19030618-V02-22-page7.txt: [('mar-', 'mar')] PUR19030618-V02-22-page8.txt: [('-White', 'White'), ("-JR'", "JR'")] PUR19030618-V02-22-page9.txt: [('per-', 'per')] PUR19030702-V02-23-page10.txt: [('serv-', 'serv'), ('-forth', 'forth'), ('"Bible-', '"Bible')] PUR19030702-V02-23-page11.txt: [('-', ''), ('per-', 'per'), ('ad-', 'ad'), ('testi-', 'testi'), ('profit-', 'profit')] PUR19030702-V02-23-page12.txt: [('-before', 'before')] PUR19030702-V02-23-page13.txt: [('-chaplain', 'chaplain'), ('-occasion', 'occasion'), ('mission-', 'mission')] PUR19030702-V02-23-page14.txt: [('Sis-', 'Sis')] PUR19030702-V02-23-page15.txt: [('Contro-', 'Contro'), ('ex-', 'ex'), ('rea-', 'rea'), ('mis-', 'mis'), ('pos-', 'pos')] PUR19030702-V02-23-page16.txt: [('ex-', 'ex'), ('SEVENTH-', 'SEVENTH'), ('privi-', 'privi'), ('-', ''), ('-oes', 'oes')] PUR19030702-V02-23-page3.txt: [('pamph-', 'pamph'), ('-', '')] PUR19030702-V02-23-page4.txt: [('in-', 'in'), ('-', ''), ('-', ''), ('do-', 'do')] PUR19030702-V02-23-page5.txt: [('-', '')] PUR19030702-V02-23-page6.txt: [('-the', 'the'), ('main-', 'main'), ('Her-', 'Her'), ('com-', 'com'), ('de-', 'de'), ('coopera-', 'coopera'), ('em-', 'em')] PUR19030702-V02-23-page7.txt: [('impres-', 'impres'), ('pres-', 'pres')] PUR19030702-V02-23-page8.txt: [('-', ''), ('-', ''), ('-as', 'as'), ('-holding', 'holding'), ('min-', 'min')] PUR19030702-V02-23-page9.txt: [('.SABBATH-', '.SABBATH')] PUR19030813-V03-01-page10.txt: [('meet-', 'meet')] PUR19030813-V03-01-page12.txt: [('-"', '"'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('t-', 't'), ('-.', '.'), ('-z', 'z')] PUR19030813-V03-01-page13.txt: [('-', ''), ('Associ-', 'Associ'), ('MEDI-', 'MEDI'), ('pub-', 'pub'), ('Mis-', 'Mis'), ('Con-', 'Con'), ('Associa-', 'Associa')] PUR19030813-V03-01-page14.txt: [('dis-', 'dis'), ('remem-', 'remem'), ('asso-', 'asso')] PUR19030813-V03-01-page16.txt: [('SEVENTH-', 'SEVENTH'), ('camp-', 'camp'), ('be-', 'be')] PUR19030813-V03-01-page3.txt: [('pene-', 'pene')] PUR19030813-V03-01-page4.txt: [('fin-', 'fin')] PUR19030813-V03-01-page5.txt: [('.-', '.'), ('.-', '.'), ('.-', '.'), ('ri.-', 'ri.'), ('.-', '.')] PUR19030813-V03-01-page6.txt: [('be-', 'be'), ('prob-', 'prob'), ('-Charles', 'Charles')] PUR19030813-V03-01-page7.txt: [('nest-', 'nest'), ('-been', 'been'), ('pa-', 'pa'), ('con-', 'con'), ('-been', 'been')] PUR19030813-V03-01-page8.txt: [('-memorial', 'memorial'), ('regu-', 'regu')] PUR19030813-V03-01-page9.txt: [('neigh-', 'neigh')] PUR19030827-V03-02-page1.txt: [('.-', '.')] PUR19030827-V03-02-page10.txt: [('bless-', 'bless')] PUR19030827-V03-02-page11.txt: [('o.-', 'o.')] PUR19030827-V03-02-page12.txt: [('rec-', 'rec')] PUR19030827-V03-02-page15.txt: [('-rand', 'rand')] PUR19030827-V03-02-page16.txt: [('-', ''), ('Septem-', 'Septem'), ('Associ-', 'Associ')] PUR19030827-V03-02-page2.txt: [('season-', 'season')] PUR19030827-V03-02-page3.txt: [('-', ''), ('shel-', 'shel'), ('-atmosphere', 'atmosphere')] PUR19030827-V03-02-page5.txt: [('be-', 'be'), ('es-', 'es')] PUR19030827-V03-02-page6.txt: [('-aid', 'aid')] PUR19030827-V03-02-page7.txt: [('well-', 'well')] PUR19030827-V03-02-page8.txt: [('-""', '""'), ('bel-', 'bel')] PUR19030827-V03-02-page9.txt: [('-', '')] PUR19030924-V03-04-page1.txt: [('a-', 'a'), ('-possess', 'possess')] PUR19030924-V03-04-page10.txt: [('"comfort-', '"comfort')] PUR19030924-V03-04-page11.txt: [('prepara.-', 'prepara.'), ('wel-', 'wel')] PUR19030924-V03-04-page12.txt: [('ac-', 'ac'), ('be-', 'be'), ('con-', 'con')] PUR19030924-V03-04-page13.txt: [('con-', 'con'), ('re-', 're')] PUR19030924-V03-04-page14.txt: [('prog-', 'prog'), ('Brig-', 'Brig'), ('K-', 'K'), ('qual-', 'qual'), ('treat-', 'treat')] PUR19030924-V03-04-page15.txt: [('messen-', 'messen'), ('Gali-', 'Gali'), ('-bad', 'bad')] PUR19030924-V03-04-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19030924-V03-04-page2.txt: [('dis-', 'dis')] PUR19030924-V03-04-page3.txt: [('John-', 'John')] PUR19030924-V03-04-page4.txt: [('chair-', 'chair')] PUR19030924-V03-04-page5.txt: [('meet-', 'meet')] PUR19030924-V03-04-page7.txt: [('camp-', 'camp')] PUR19030924-V03-04-page8.txt: [('Mac-', 'Mac'), ('camp-', 'camp'), ('peo-', 'peo'), ('ear-', 'ear')] PUR19030924-V03-04-page9.txt: [('sim-', 'sim'), ('-', ''), ('-ale', 'ale')] PUR19031008-V03-05-page1.txt: [('-Jestis', 'Jestis')] PUR19031008-V03-05-page2.txt: [('admitted-', 'admitted'), ('with-', 'with')] PUR19031008-V03-05-page3.txt: [('Mc-', 'Mc'), ('Mc-', 'Mc')] PUR19031008-V03-05-page4.txt: [('con-', 'con'), ('port-', 'port'), ('-', '')] PUR19031008-V03-05-page5.txt: [('-', ''), ('print-', 'print')] PUR19031008-V03-05-page6.txt: [('depart-', 'depart')] PUR19031008-V03-05-page7.txt: [('PA-', 'PA')] PUR19031008-V03-05-page8.txt: [('SEVENTH-', 'SEVENTH'), ('NUMBED-', 'NUMBED')] PUR19031022-V03-06-page1.txt: [('-to', 'to')] PUR19031022-V03-06-page10.txt: [('-a', 'a'), ('-will', 'will'), ('contra-', 'contra')] PUR19031022-V03-06-page11.txt: [('-', ''), ('-', ''), ('success-', 'success'), ('-', ''), ('Syd--', 'Syd-'), ('-in', 'in'), ('mag-', 'mag')] PUR19031022-V03-06-page12.txt: [('-message', 'message')] PUR19031022-V03-06-page13.txt: [('ar-', 'ar'), ('ac-', 'ac')] PUR19031022-V03-06-page14.txt: [('sec-', 'sec')] PUR19031022-V03-06-page15.txt: [('can-', 'can'), ('be-', 'be')] PUR19031022-V03-06-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-their', 'their')] PUR19031022-V03-06-page3.txt: [('.-', '.'), ('-', ''), ('sell-', 'sell')] PUR19031022-V03-06-page5.txt: [('mes-', 'mes')] PUR19031022-V03-06-page7.txt: [('-', ''), ('num-', 'num')] PUR19031022-V03-06-page8.txt: [('-', ''), ('well-', 'well')] PUR19031022-V03-06-page9.txt: [('sea-', 'sea'), ('prov-', 'prov'), ('-', '')] PUR19031105-V03-07-page10.txt: [('-in', 'in'), ('AS-', 'AS'), ("-'", "'"), ('-Directors.', 'Directors.'), ('sub-', 'sub')] PUR19031105-V03-07-page11.txt: [('PA-', 'PA'), ('ASSO-', 'ASSO'), ('in-', 'in'), ('-', ''), ('will-', 'will'), ('-July', 'July'), ('-', ''), ('-', '')] PUR19031105-V03-07-page12.txt: [('ADVENT-', 'ADVENT'), ('CALI-', 'CALI'), ('Church-', 'Church'), ('-conducted', 'conducted')] PUR19031105-V03-07-page13.txt: [('prog-', 'prog'), ('-number', 'number'), ('-as', 'as'), ('forgiv-', 'forgiv'), ('-', '')] PUR19031105-V03-07-page14.txt: [('mul-', 'mul'), ('fol-', 'fol')] PUR19031105-V03-07-page15.txt: [('--', '-'), ('New-', 'New')] PUR19031105-V03-07-page16.txt: [('SEVENTH-', 'SEVENTH'), ('Sab-', 'Sab')] PUR19031105-V03-07-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19031105-V03-07-page3.txt: [('RECORDEFt-', 'RECORDEFt'), ('Health-', 'Health'), ('Com-', 'Com'), ('-I', 'I'), ('inclu-', 'inclu'), ('oppo-', 'oppo')] PUR19031105-V03-07-page4.txt: [('con-', 'con')] PUR19031105-V03-07-page5.txt: [('Confer-', 'Confer'), ('dis-', 'dis')] PUR19031105-V03-07-page6.txt: [('oth-', 'oth'), ('our--', 'our-')] PUR19031119-V03-08-page1.txt: [('-the', 'the'), ('Light-', 'Light')] PUR19031119-V03-08-page10.txt: [('ab-', 'ab'), ('-', ''), ('-cent', 'cent'), ('-', '')] PUR19031119-V03-08-page11.txt: [('-', '')] PUR19031119-V03-08-page13.txt: [('at-', 'at')] PUR19031119-V03-08-page14.txt: [('everlast-', 'everlast')] PUR19031119-V03-08-page15.txt: [('--', '-'), ('e----', 'e---'), ('New-', 'New')] PUR19031119-V03-08-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('con-', 'con'), ('-', ''), ('eld-', 'eld'), ('-', '')] PUR19031119-V03-08-page2.txt: [('local-', 'local'), ('centraliza-', 'centraliza'), ('edu-', 'edu'), ('edu-', 'edu')] PUR19031119-V03-08-page3.txt: [('in-', 'in'), ('founda-', 'founda')] PUR19031119-V03-08-page4.txt: [('mem-', 'mem')] PUR19031119-V03-08-page5.txt: [('Gen-', 'Gen')] PUR19031119-V03-08-page6.txt: [('-', ''), ('-We', 'We')] PUR19031119-V03-08-page7.txt: [('imme-', 'imme'), ('-', '')] PUR19031119-V03-08-page8.txt: [('RECORDER-', 'RECORDER'), ('-', ''), ('-', '')] PUR19031119-V03-08-page9.txt: [('in-', 'in')] PUR19031203-V03-09-page1.txt: [('noth-', 'noth'), ('di-', 'di')] PUR19031203-V03-09-page10.txt: [('-', '')] PUR19031203-V03-09-page11.txt: [('crip-', 'crip')] PUR19031203-V03-09-page12.txt: [('Pa.-', 'Pa.'), ('conse-', 'conse')] PUR19031203-V03-09-page13.txt: [('cheerful-', 'cheerful')] PUR19031203-V03-09-page14.txt: [('ingly-', 'ingly'), ('be-', 'be'), ('"Work-', '"Work')] PUR19031203-V03-09-page15.txt: [('---', '--')] PUR19031203-V03-09-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19031203-V03-09-page2.txt: [('CENTRALIZA-', 'CENTRALIZA')] PUR19031203-V03-09-page3.txt: [('-', '')] PUR19031203-V03-09-page4.txt: [('mis-', 'mis')] PUR19031203-V03-09-page5.txt: [('interest-', 'interest'), ('co-', 'co'), ('Le-', 'Le')] PUR19031203-V03-09-page6.txt: [('-', ''), ('-certainly', 'certainly'), ('-upon', 'upon'), ('person-', 'person'), ('-', ''), ('eighty-', 'eighty'), ('-', ''), ('.-', '.')] PUR19031203-V03-09-page7.txt: [('.-', '.'), ('.-', '.'), ('-as', 'as'), ('-lot', 'lot')] PUR19031203-V03-09-page9.txt: [('equip-', 'equip'), ("--'-", "-'-"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19031217-V03-10-page10.txt: [('-keeps', 'keeps'), ('ri-', 'ri'), ('-circumstances.', 'circumstances.'), ('Re-', 'Re'), ('-view', 'view'), ('-attention', 'attention'), ('-thanking', 'thanking'), ('con-', 'con')] PUR19031217-V03-10-page11.txt: [('-Whielifis', 'Whielifis')] PUR19031217-V03-10-page12.txt: [('-', ''), ('-', ''), ('-certain', 'certain'), ('prOspei-', 'prOspei'), ('-', '')] PUR19031217-V03-10-page13.txt: [('-price', 'price'), ('miserable.-', 'miserable.'), ('has-', 'has'), ('-', '')] PUR19031217-V03-10-page14.txt: [('-', '')] PUR19031217-V03-10-page15.txt: [('-of', 'of')] PUR19031217-V03-10-page16.txt: [('SEVENTH-', 'SEVENTH'), ('communica-', 'communica'), ('-', ''), ('-', '')] PUR19031217-V03-10-page2.txt: [('suf-', 'suf'), ('inclu-', 'inclu'), ('through-', 'through'), ('re-', 're'), ('gen-', 'gen')] PUR19031217-V03-10-page3.txt: [('-human', 'human')] PUR19031217-V03-10-page4.txt: [('-of', 'of'), ('na-', 'na'), ('-be', 'be'), ('-as', 'as')] PUR19031217-V03-10-page5.txt: [('-The', 'The'), ('Mis-', 'Mis'), ('re-', 're')] PUR19031217-V03-10-page6.txt: [('-', ''), ('.-', '.'), ('Offer-', 'Offer'), ('.-', '.'), ('-', ''), ('-', '')] PUR19031217-V03-10-page7.txt: [('per-', 'per'), ('disap-', 'disap')] PUR19031217-V03-10-page8.txt: [('-ordering', 'ordering'), ('even-', 'even'), ('-', ''), ('al-', 'al'), ('-', ''), ('-', ''), ('-', ''), ('morn-', 'morn')] PUR19031217-V03-10-page9.txt: [('ter-', 'ter'), ('-F.-troWn', 'F.-troWn'), ('twenty-', 'twenty'), ('remem-', 'remem'), ('Re-', 'Re'), ('pro-', 'pro')] PUR19040114-V03-12-page1.txt: [('-arid', 'arid'), ('-for', 'for')] PUR19040114-V03-12-page10.txt: [('-us', 'us'), ('-work.', 'work.'), ("-o'clock.", "o'clock."), ('-', ''), ('writ-', 'writ'), ('-ten', 'ten')] PUR19040114-V03-12-page12.txt: [('-', ''), ('-Union', 'Union'), ('quali-', 'quali')] PUR19040114-V03-12-page15.txt: [('-a', 'a'), ('-for', 'for'), ('be-', 'be')] PUR19040114-V03-12-page16.txt: [('SEVENTH-', 'SEVENTH'), ('.-', '.'), ('-up', 'up'), ('in-', 'in')] PUR19040114-V03-12-page2.txt: [('Temp-', 'Temp'), ('ad-', 'ad'), ('-', ''), ('-', '')] PUR19040114-V03-12-page6.txt: [('ta-', 'ta'), ('Healdsburg-', 'Healdsburg')] PUR19040114-V03-12-page8.txt: [('-', '')] PUR19040114-V03-12-page9.txt: [('encourag-', 'encourag'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040128-V03-13-page1.txt: [('-WAKE', 'WAKE'), ('be-', 'be')] PUR19040128-V03-13-page10.txt: [('-never', 'never'), ('-knock', 'knock')] PUR19040128-V03-13-page11.txt: [('ex-', 'ex')] PUR19040128-V03-13-page12.txt: [('-', '')] PUR19040128-V03-13-page13.txt: [('attend-', 'attend'), ('-tarian', 'tarian')] PUR19040128-V03-13-page14.txt: [('-', '')] PUR19040128-V03-13-page15.txt: [('--en', '-en'), ('pre--', 'pre-'), ('-', '')] PUR19040128-V03-13-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19040128-V03-13-page2.txt: [('-ever', 'ever')] PUR19040128-V03-13-page3.txt: [('-', ''), ('-', '')] PUR19040128-V03-13-page4.txt: [('pub-', 'pub'), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('Publishing-', 'Publishing')] PUR19040128-V03-13-page5.txt: [('excellence-', 'excellence'), ('.-', '.')] PUR19040128-V03-13-page6.txt: [('-', '')] PUR19040128-V03-13-page7.txt: [('-', '')] PUR19040128-V03-13-page8.txt: [('-mite', 'mite'), ('floating.-', 'floating.'), ('-', '')] PUR19040128-V03-13-page9.txt: [('-', ''), ('awake-', 'awake'), ('the-', 'the'), ('-our', 'our'), ('-we', 'we')] PUR19040211-V03-14-page1.txt: [('TEACH-', 'TEACH')] PUR19040211-V03-14-page3.txt: [('-many', 'many'), ('-', ''), ('-district', 'district'), ('Mis-', 'Mis')] PUR19040211-V03-14-page4.txt: [('near-', 'near')] PUR19040211-V03-14-page5.txt: [('to-', 'to'), ('-', ''), ('be-', 'be'), ('-', '')] PUR19040211-V03-14-page6.txt: [('-use', 'use'), ('Worker.-', 'Worker.'), ('it-', 'it')] PUR19040211-V03-14-page7.txt: [('-', ''), ('-conveniences', 'conveniences')] PUR19040211-V03-14-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19040225-V03-15-page1.txt: [('inspira-', 'inspira')] PUR19040225-V03-15-page10.txt: [('-', ''), ('-', ''), ('com-', 'com'), ('-', ''), ('re-', 're'), ('tem-', 'tem'), ('-', ''), ('ES-', 'ES'), ('-', ''), ('sur-', 'sur'), ('-', ''), ('-', ''), ('-', ''), ('o-', 'o'), ('-', '')] PUR19040225-V03-15-page12.txt: [('corre-', 'corre'), ('-', ''), ('-', '')] PUR19040225-V03-15-page13.txt: [('con-', 'con'), ('-', ''), ('-that', 'that')] PUR19040225-V03-15-page14.txt: [('encourag-', 'encourag'), ('cor-', 'cor'), ('How-', 'How'), ('-i-l.ess', 'i-l.ess')] PUR19040225-V03-15-page15.txt: [('-', '')] PUR19040225-V03-15-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-it', 'it')] PUR19040225-V03-15-page2.txt: [('pre-', 'pre')] PUR19040225-V03-15-page3.txt: [('edu-', 'edu'), ('ob-', 'ob'), ('inter-', 'inter')] PUR19040225-V03-15-page4.txt: [('-', '')] PUR19040225-V03-15-page5.txt: [('-', ''), ('oppor-', 'oppor'), ('Choi.-', 'Choi.')] PUR19040225-V03-15-page6.txt: [('dedi-', 'dedi')] PUR19040225-V03-15-page7.txt: [('Les-', 'Les'), ('-', '')] PUR19040225-V03-15-page8.txt: [('hearts.-', 'hearts.'), ("Revelation.'-", "Revelation.'"), ('that-', 'that'), ('-', ''), ('-banks', 'banks'), ('-', ''), ('-', ''), ('-given', 'given'), ('-in', 'in')] PUR19040225-V03-15-page9.txt: [('preach-', 'preach'), ('saying-', 'saying')] PUR19040310-V03-16-page10.txt: [('-', ''), ('-', '')] PUR19040310-V03-16-page11.txt: [('-of', 'of'), ('teach-', 'teach'), ('-issue', 'issue')] PUR19040310-V03-16-page12.txt: [('-', ''), ('-', ''), ('prop-', 'prop'), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('busi-', 'busi'), ('Sanitaritr-', 'Sanitaritr'), ('--', '-'), ('sec--', 'sec-'), ('-ary.', 'ary.')] PUR19040310-V03-16-page2.txt: [('-', ''), ('accord-', 'accord')] PUR19040310-V03-16-page4.txt: [('attend-', 'attend'), ('-znce.', 'znce.'), ('county-', 'county'), ('peo-', 'peo')] PUR19040310-V03-16-page5.txt: [('look-', 'look'), ('abating--', 'abating-'), ('i-', 'i'), ('pur-', 'pur')] PUR19040310-V03-16-page6.txt: [('unself-', 'unself'), ('RE-', 'RE')] PUR19040310-V03-16-page7.txt: [('-', '')] PUR19040310-V03-16-page8.txt: [('-', ''), ('intelli-', 'intelli'), ('FORE-', 'FORE'), ('leg-', 'leg')] PUR19040310-V03-16-page9.txt: [('pa-', 'pa'), ('re-', 're'), ('respond-', 'respond'), ('de-', 'de')] PUR19040324-V03-17-page1.txt: [('man-', 'man')] PUR19040324-V03-17-page10.txt: [('Sending-', 'Sending'), ('conven-', 'conven'), ('-', ''), ('se-', 'se'), ('Seventh-', 'Seventh'), ('"Consist-', '"Consist'), ('charge-', 'charge'), ('-', ''), ('t-', 't'), ('-', ''), ('-', ''), ('t-', 't'), ('-', ''), ('-', ''), ('--', '-'), ('e-', 'e'), ('.-', '.'), ('-', ''), ("I'-", "I'"), ('..-', '..')] PUR19040324-V03-17-page11.txt: [('Vve-', 'Vve'), ('A.-', 'A.'), ('year-', 'year'), ('impor-', 'impor'), ('Con-', 'Con'), ('Pa-', 'Pa'), ('sepa-', 'sepa'), ('confer-', 'confer')] PUR19040324-V03-17-page12.txt: [('Not-', 'Not'), ('investi-', 'investi'), ('admin-', 'admin'), ('con-', 'con')] PUR19040324-V03-17-page13.txt: [('situa-', 'situa'), ('con-', 'con'), ('-', '')] PUR19040324-V03-17-page14.txt: [('-i', 'i'), ('-', ''), ('-', '')] PUR19040324-V03-17-page15.txt: [('-.', '.'), ("-e'", "e'"), ('-', ''), ('-', ''), ('-', ''), ('-aI', 'aI'), ('fl-', 'fl')] PUR19040324-V03-17-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('Sab-', 'Sab'), ('-', ''), ('dis-', 'dis'), ('con-', 'con')] PUR19040324-V03-17-page3.txt: [('-', ''), ('intelli-', 'intelli')] PUR19040324-V03-17-page4.txt: [('-', ''), ('"a-', '"a'), ('-', ''), ('par-', 'par')] PUR19040324-V03-17-page5.txt: [('ex-', 'ex'), ('church-member-', 'church-member'), ('--', '-'), ('school-', 'school'), ('house-', 'house'), ('-', ''), ('dis-', 'dis'), ('circum-', 'circum')] PUR19040324-V03-17-page6.txt: [('.-', '.'), ('.-', '.'), ('-', ''), ('.-', '.'), ('.-', '.'), ('Stock-', 'Stock'), ('.-', '.'), ('-', ''), ('-', ''), ('Conven-', 'Conven'), ('-', ''), ('announc-', 'announc'), ('-', ''), ('-', ''), ('-D', 'D'), ('.t-', '.t'), ('--', '-'), ('--', '-'), ('-', '')] PUR19040324-V03-17-page7.txt: [('.-', '.'), ('-', ''), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('meet-', 'meet')] PUR19040324-V03-17-page8.txt: [('-', ''), ('--', '-')] PUR19040324-V03-17-page9.txt: [('-Willamette', 'Willamette')] PUR19040407-V03-18-page1.txt: [('-spirit.', 'spirit.'), ('Confer-', 'Confer'), ('Adopted-', 'Adopted')] PUR19040407-V03-18-page10.txt: [('-work', 'work'), ('-teacher', 'teacher'), ('-business', 'business'), ('have-', 'have'), ('-', '')] PUR19040407-V03-18-page11.txt: [('mil.-', 'mil.'), ('-', ''), ('offer-', 'offer'), ('.-', '.'), ('-to', 'to')] PUR19040407-V03-18-page12.txt: [('o-', 'o'), ('-', '')] PUR19040407-V03-18-page13.txt: [('espe-', 'espe'), ('-Walla', 'Walla'), ('-', ''), ('--f-or', '-f-or'), ('-', ''), ('-', ''), ('grad-', 'grad'), ('-', '')] PUR19040407-V03-18-page14.txt: [('read-', 'read'), ('na-', 'na')] PUR19040407-V03-18-page15.txt: [('-', ''), ('-', ''), ('condi-', 'condi')] PUR19040407-V03-18-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('presi-', 'presi'), ('Co-', 'Co'), ('--', '-')] PUR19040407-V03-18-page2.txt: [('cam-', 'cam')] PUR19040407-V03-18-page3.txt: [('-', ''), ('-', ''), ('-', '')] PUR19040407-V03-18-page5.txt: [('-Conferencerenew', 'Conferencerenew'), ('-', ''), ('-', ''), ('licenti-', 'licenti')] PUR19040407-V03-18-page6.txt: [('-', ''), ('con-', 'con'), ('-', ''), ('-', ''), ('-', ''), ('finan-', 'finan')] PUR19040407-V03-18-page7.txt: [('-', ''), ('de-', 'de'), ('insti-', 'insti'), ('conse-', 'conse'), ('work-', 'work'), ('patron-', 'patron'), ('twenty-', 'twenty')] PUR19040407-V03-18-page8.txt: [('-', ''), ('.-', '.'), ('-', ''), ('-', '')] PUR19040407-V03-18-page9.txt: [('-', ''), ('-speak', 'speak'), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('-Pacific', 'Pacific'), ('-and', 'and'), ('di-', 'di')] PUR19040421-V03-19-page1.txt: [('-youth', 'youth'), ('-', ''), ('keep-', 'keep'), ('-ers', 'ers'), ('-', ''), ('in-', 'in')] PUR19040421-V03-19-page10.txt: [('sacri-', 'sacri'), ('re-', 're'), ('specula-', 'specula'), ('-', ''), ('-', ''), ('heav-', 'heav')] PUR19040421-V03-19-page11.txt: [('PP-', 'PP'), ('-Botker', 'Botker'), ('-', ''), ('com-', 'com'), ('meet-', 'meet')] PUR19040421-V03-19-page12.txt: [('-', '')] PUR19040421-V03-19-page13.txt: [('-', ''), ('-ministers--', 'ministers--'), ('various--', 'various-')] PUR19040421-V03-19-page14.txt: [('--', '-'), ('.-', '.'), ('.-', '.'), ('--', '-'), ('-', ''), ('END-', 'END'), ('Washing-', 'Washing'), ('-', ''), ('con-', 'con')] PUR19040421-V03-19-page15.txt: [('dis-', 'dis'), ('-', ''), ('So-', 'So'), ('-was', 'was'), ('RECORDER-', 'RECORDER')] PUR19040421-V03-19-page16.txt: [('SEVENTH-', 'SEVENTH'), ('-Editorial', 'Editorial'), ('Ad-', 'Ad'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040421-V03-19-page3.txt: [("'af-", "'af")] PUR19040421-V03-19-page4.txt: [('-Walla', 'Walla'), ('defi-', 'defi'), ('-in', 'in'), ('pre-', 'pre')] PUR19040421-V03-19-page5.txt: [('instruc-', 'instruc'), ('-ministry.', 'ministry.'), ('fea-', 'fea'), ('prerequi-', 'prerequi'), ('-', ''), ('stand-', 'stand')] PUR19040421-V03-19-page7.txt: [('.-', '.'), ('-', ''), ('-', ''), ('Anglo-', 'Anglo')] PUR19040421-V03-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040421-V03-19-page9.txt: [('enter-', 'enter'), ('in-', 'in'), ('time-', 'time'), ('-that', 'that'), ('ap-', 'ap'), ('jeopard-', 'jeopard')] PUR19040505-V03-20-page1.txt: [('-', ''), ('genera-', 'genera')] PUR19040505-V03-20-page10.txt: [('-', ''), ('-the', 'the'), ('"-', '"'), ('-that', 'that'), ('called-', 'called'), ('-', ''), ('-Jesus', 'Jesus'), ('-knows', 'knows')] PUR19040505-V03-20-page11.txt: [('in-', 'in'), ('-', ''), ('-.interests', '.interests'), ('-the', 'the'), ('-greater--', 'greater--')] PUR19040505-V03-20-page12.txt: [('confer-', 'confer'), ('-', ''), ('the-', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-waiting', 'waiting'), ('-ses', 'ses'), ('Pu-', 'Pu'), ('-', ''), ('-', '')] PUR19040505-V03-20-page13.txt: [('-', ''), ('-cLrbrAvE.', 'cLrbrAvE.'), ('-makes', 'makes'), ('-Here', 'Here'), ('proc-', 'proc'), ('Con-', 'Con')] PUR19040505-V03-20-page14.txt: [('-', ''), ('-', ''), ('house-', 'house'), ('bless-', 'bless'), ('after-', 'after')] PUR19040505-V03-20-page15.txt: [('-of', 'of'), ('--as', '-as'), ('incident-', 'incident'), ('-', '')] PUR19040505-V03-20-page16.txt: [('SEVENTH-', 'SEVENTH'), ('suc-', 'suc'), ('edu-', 'edu'), ('-', ''), ('-', ''), ('ro-', 'ro'), ('-', '')] PUR19040505-V03-20-page2.txt: [('mes-', 'mes'), ('some-', 'some'), ('do-', 'do')] PUR19040505-V03-20-page3.txt: [('his-', 'his'), ('-', ''), ('long-', 'long')] PUR19040505-V03-20-page5.txt: [('-and', 'and'), ('partic-', 'partic')] PUR19040505-V03-20-page6.txt: [('-', ''), ('embrac-', 'embrac')] PUR19040505-V03-20-page7.txt: [('vis-', 'vis')] PUR19040505-V03-20-page8.txt: [('-', ''), ('arti-', 'arti'), ('-', ''), ('-', '')] PUR19040505-V03-20-page9.txt: [('.-', '.'), ('Land-', 'Land'), ('.-', '.'), ('-has', 'has'), ('table-', 'table'), ('-', '')] PUR19040519-V03-21-page1.txt: [('be-', 'be'), ('-walked', 'walked'), ('Ex-', 'Ex')] PUR19040519-V03-21-page11.txt: [('-contents', 'contents')] PUR19040519-V03-21-page12.txt: [('-rude', 'rude'), ('suffi-', 'suffi'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-tzt', 'tzt'), ('-this', 'this'), ('-', '')] PUR19040519-V03-21-page13.txt: [('in-', 'in'), ('ket-', 'ket')] PUR19040519-V03-21-page14.txt: [('de--', 'de-')] PUR19040519-V03-21-page16.txt: [('SEVENTH-', 'SEVENTH'), ('End-', 'End'), ('-', ''), ('-', ''), ('-', '')] PUR19040519-V03-21-page2.txt: [('bless-', 'bless')] PUR19040519-V03-21-page3.txt: [('ex-', 'ex'), ('-leading', 'leading'), ('encourag-', 'encourag')] PUR19040519-V03-21-page7.txt: [('-', '')] PUR19040519-V03-21-page8.txt: [('-', ''), ('.-', '.'), ('Lock-', 'Lock')] PUR19040519-V03-21-page9.txt: [('-', ''), ('meet-', 'meet')] PUR19040602-V03-22-page2.txt: [('lighl-', 'lighl'), ('-', '')] PUR19040602-V03-22-page4.txt: [('-', ''), ('-', '')] PUR19040602-V03-22-page5.txt: [('neighbor-', 'neighbor'), ('-', '')] PUR19040602-V03-22-page6.txt: [('cor-', 'cor')] PUR19040602-V03-22-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-t', 't'), ('-', ''), ('to-', 'to'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040609-V03-23-page1.txt: [('pardoning-', 'pardoning')] PUR19040609-V03-23-page2.txt: [('posi-', 'posi')] PUR19040609-V03-23-page5.txt: [('-', ''), ('-are', 'are'), ('-Webster.', 'Webster.')] PUR19040609-V03-23-page6.txt: [('-', '')] PUR19040609-V03-23-page7.txt: [('fellow-', 'fellow')] PUR19040609-V03-23-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('C-', 'C'), ('-.', '.'), ('to-', 'to'), ('-', '')] PUR19040616-V03-24-page1.txt: [('king-', 'king')] PUR19040616-V03-24-page2.txt: [('pres-', 'pres')] PUR19040616-V03-24-page3.txt: [('-and', 'and'), ('-in', 'in'), ('Pub-', 'Pub')] PUR19040616-V03-24-page4.txt: [('Buro-', 'Buro')] PUR19040616-V03-24-page5.txt: [('meeting-', 'meeting'), ('-which', 'which'), ('-', '')] PUR19040616-V03-24-page6.txt: [('-ook', 'ook'), ('-a', 'a')] PUR19040616-V03-24-page7.txt: [('Bi-', 'Bi'), ('Work-', 'Work')] PUR19040616-V03-24-page8.txt: [('SEVENTH-', 'SEVENTH'), ('"Recorder.-', '"Recorder.'), ('-', ''), ('to-', 'to'), ('-', ''), ('-', ''), ('-', '')] PUR19040623-V03-25-page1.txt: [('dol-', 'dol'), ('remainder-', 'remainder'), ('in--', 'in-')] PUR19040623-V03-25-page2.txt: [('-', ''), ('-the', 'the'), ('la-', 'la')] PUR19040623-V03-25-page3.txt: [('-Westfamily', 'Westfamily'), ('our-', 'our')] PUR19040623-V03-25-page5.txt: [('Sabbath-', 'Sabbath'), ('confer-', 'confer'), ('confer-', 'confer'), ('investi-', 'investi')] PUR19040623-V03-25-page6.txt: [('sugges-', 'sugges'), ('re-', 're'), ('Sab-', 'Sab')] PUR19040623-V03-25-page7.txt: [('-Fir', 'Fir'), ('fre-', 'fre')] PUR19040623-V03-25-page8.txt: [('Seat-', 'Seat'), ('in-', 'in'), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('to-', 'to'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040630-V03-26-page1.txt: [('-agreat', 'agreat'), ('the--', 'the-')] PUR19040630-V03-26-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19040630-V03-26-page4.txt: [('-go', 'go')] PUR19040630-V03-26-page5.txt: [('-', '')] PUR19040630-V03-26-page7.txt: [('-A', 'A'), ('-', ''), ('dis-', 'dis'), ('oo-', 'oo')] PUR19040630-V03-26-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('ro-', 'ro'), ('-', '')] PUR19040707-V03-27-page1.txt: [('self-', 'self')] PUR19040707-V03-27-page2.txt: [('de-', 'de')] PUR19040707-V03-27-page3.txt: [('-', ''), ('con-', 'con'), ('sub-', 'sub')] PUR19040707-V03-27-page4.txt: [('-', ''), ('-purpose', 'purpose')] PUR19040707-V03-27-page6.txt: [('-', ''), ('-', '')] PUR19040707-V03-27-page8.txt: [('-', ''), ('SEVENTH-', 'SEVENTH'), ('to-', 'to'), ('-Is', 'Is'), ('-', ''), ('-IS', 'IS')] PUR19040714-V03-28-page1.txt: [('ex-', 'ex')] PUR19040714-V03-28-page3.txt: [('-of', 'of'), ('--', '-'), ('recommend-', 'recommend')] PUR19040714-V03-28-page4.txt: [('-', ''), ('educa-', 'educa')] PUR19040714-V03-28-page5.txt: [('--', '-')] PUR19040714-V03-28-page6.txt: [('-', '')] PUR19040714-V03-28-page7.txt: [('-', ''), ('world-', 'world')] PUR19040714-V03-28-page8.txt: [('SEVENTH-', 'SEVENTH'), ('practi-', 'practi'), ('-', ''), ('-', ''), ('-', '')] PUR19040721-V03-29-page1.txt: [('separa-', 'separa')] PUR19040721-V03-29-page2.txt: [('-', '')] PUR19040721-V03-29-page3.txt: [('-', ''), ('and-', 'and'), ('-', ''), ('-', '')] PUR19040721-V03-29-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('o-', 'o'), ('-', ''), ('-', ''), ('-', ''), ('Scholarship--', 'Scholarship-')] PUR19040721-V03-29-page6.txt: [('re-', 're'), ('sev-', 'sev'), ('-', '')] PUR19040721-V03-29-page7.txt: [('..-', '..'), ('poi--', 'poi-')] PUR19040721-V03-29-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('Mk-', 'Mk'), ('to-', 'to'), ('-', ''), ('Sept-', 'Sept'), ('--', '-')] PUR19040728-V03-30-page1.txt: [('be-', 'be'), ('un-', 'un')] PUR19040728-V03-30-page4.txt: [('en--', 'en-'), ('teach-', 'teach')] PUR19040728-V03-30-page5.txt: [('Morgan-', 'Morgan'), ('con-', 'con')] PUR19040728-V03-30-page6.txt: [('-', ''), ('-of', 'of'), ('-upon', 'upon'), ('-', '')] PUR19040728-V03-30-page7.txt: [('ques-', 'ques'), ('-', '')] PUR19040728-V03-30-page8.txt: [('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('to-', 'to'), ('-', ''), ('-', '')] PUR19040804-V04-01-page1.txt: [('back-', 'back'), ('con-', 'con')] PUR19040804-V04-01-page2.txt: [('-to', 'to')] PUR19040804-V04-01-page3.txt: [('Spo-', 'Spo'), ('broth-', 'broth')] PUR19040804-V04-01-page4.txt: [('-', ''), ('se-', 'se'), ('expres-', 'expres'), ('-and', 'and'), ('-him', 'him')] PUR19040804-V04-01-page5.txt: [('can-', 'can'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('t-', 't'), ('-c', 'c'), ('-', ''), ('-', '')] PUR19040804-V04-01-page6.txt: [('Eu-', 'Eu')] PUR19040804-V04-01-page7.txt: [('-persons', 'persons'), ('-', '')] PUR19040804-V04-01-page8.txt: [('well-', 'well'), ('Students-', 'Students'), ('quan-', 'quan'), ('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19040811-V04-02-page1.txt: [('-', ''), ('-physical', 'physical')] PUR19040811-V04-02-page2.txt: [('lit-', 'lit'), ('fur-', 'fur')] PUR19040811-V04-02-page3.txt: [('-', '')] PUR19040811-V04-02-page4.txt: [('hear-', 'hear'), ('canvass-', 'canvass'), ('Catho-', 'Catho'), ('dis-', 'dis'), ('Fair-', 'Fair'), ('.-', '.')] PUR19040811-V04-02-page5.txt: [('-', ''), ('-', ''), ('follow-', 'follow'), ('-fi', 'fi')] PUR19040811-V04-02-page6.txt: [('-', ''), ('indus-', 'indus'), ('an-', 'an')] PUR19040811-V04-02-page7.txt: [('ex-', 'ex'), ('-be', 'be'), ('with-', 'with')] PUR19040811-V04-02-page8.txt: [('-', ''), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('-has', 'has'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-ri', 'ri'), ('to-', 'to')] PUR19040818-V04-03-page1.txt: [('ac-', 'ac')] PUR19040818-V04-03-page2.txt: [('Case-', 'Case'), ('-illcga.Y', 'illcga.Y'), ('im-', 'im'), ('-', ''), ('con-', 'con'), ('Ved-', 'Ved')] PUR19040818-V04-03-page3.txt: [('Simp-', 'Simp'), ('de-', 'de'), ('-', ''), ('in-', 'in'), ('pro-', 'pro')] PUR19040818-V04-03-page5.txt: [('En-', 'En'), ('-', ''), ('as-', 'as'), ('-o', 'o'), ('ta-', 'ta')] PUR19040818-V04-03-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040818-V04-03-page7.txt: [('ro-', 'ro'), ('-', ''), ('Oct.--', 'Oct.-'), ('-', ''), ('stir-', 'stir'), ('-tear', 'tear'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-calls', 'calls')] PUR19040818-V04-03-page8.txt: [('SEVENTH-', 'SEVENTH'), ('turn-', 'turn'), ('con-', 'con')] PUR19040825-V04-04-page1.txt: [('vil-', 'vil'), ('-hands', 'hands'), ('-', ''), ('-a', 'a'), ('ex-', 'ex')] PUR19040825-V04-04-page2.txt: [('-', '')] PUR19040825-V04-04-page3.txt: [('Sabbath-keep-', 'Sabbath-keep'), ('sup-', 'sup'), ('-I', 'I')] PUR19040825-V04-04-page4.txt: [('.-', '.'), ('Healdsburo-', 'Healdsburo'), ('-', ''), ('.-', '.'), ('pa-', 'pa'), ('un-', 'un'), ('.-', '.'), ('-', ''), ('.-', '.')] PUR19040825-V04-04-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('dark-', 'dark')] PUR19040825-V04-04-page6.txt: [('-', ''), ('-sir', 'sir')] PUR19040825-V04-04-page7.txt: [('-must', 'must'), ('proc-', 'proc'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Oct.----', 'Oct.---'), ('-', ''), ('I-', 'I'), ('-', ''), ('-', ''), ('-', '')] PUR19040825-V04-04-page8.txt: [('SEVENTH-', 'SEVENTH'), ('camp-', 'camp'), ('Healdsburg-', 'Healdsburg'), ('excel-', 'excel'), ('-Conference', 'Conference')] PUR19040901-V04-05-page1.txt: [('Mon-', 'Mon'), ('spirit-', 'spirit'), ('scat-', 'scat'), ('con-', 'con')] PUR19040901-V04-05-page4.txt: [('Pub-', 'Pub')] PUR19040901-V04-05-page5.txt: [('-', '')] PUR19040901-V04-05-page6.txt: [('-ow', 'ow'), ('-', ''), ('-', ''), ('.-', '.'), ('-', '')] PUR19040901-V04-05-page7.txt: [('-', ''), ('-', ''), ('--', '-')] PUR19040901-V04-05-page8.txt: [('SEVENTH-', 'SEVENTH'), ('I-', 'I'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040908-V04-06-page1.txt: [('Vol-', 'Vol'), ('-', ''), ('Pub-', 'Pub'), ('de-', 'de')] PUR19040908-V04-06-page2.txt: [('-', ''), ('secre-', 'secre'), ('to-', 'to'), ('-', '')] PUR19040908-V04-06-page3.txt: [('-', ''), ('.-', '.')] PUR19040908-V04-06-page4.txt: [('-', '')] PUR19040908-V04-06-page5.txt: [('contri-', 'contri'), ('Leaf-', 'Leaf'), ('McKib-', 'McKib')] PUR19040908-V04-06-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040915-V04-07-page1.txt: [('Co-', 'Co')] PUR19040915-V04-07-page3.txt: [('pur-', 'pur')] PUR19040915-V04-07-page4.txt: [('-', '')] PUR19040915-V04-07-page5.txt: [('sup-', 'sup')] PUR19040915-V04-07-page6.txt: [('-', ''), ('-presknowledge', 'presknowledge')] PUR19040915-V04-07-page8.txt: [('-', ''), ('-', ''), ('-IS', 'IS')] PUR19040922-V04-08-page1.txt: [('disregard-', 'disregard'), ('moment--', 'moment-'), ('-', '')] PUR19040922-V04-08-page2.txt: [('-', ''), ('-', ''), ('RECORDER-', 'RECORDER')] PUR19040922-V04-08-page3.txt: [('-', ''), ('attend-', 'attend'), ('Dona-', 'Dona'), ('-', '')] PUR19040922-V04-08-page4.txt: [('-work.', 'work.'), ('in-', 'in'), ('-regarding', 'regarding'), ('-Third', 'Third'), ('-a', 'a'), ('-not', 'not')] PUR19040922-V04-08-page5.txt: [('re-', 're'), ('perpet-', 'perpet'), ('fac-', 'fac')] PUR19040922-V04-08-page6.txt: [('le-', 'le'), ('en-', 'en')] PUR19040922-V04-08-page7.txt: [('Church-', 'Church'), ('in-', 'in')] PUR19040922-V04-08-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('at-', 'at'), ('-me', 'me'), ('-', ''), ('-', '')] PUR19040929-V04-09-page3.txt: [('-to', 'to'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19040929-V04-09-page4.txt: [('-', ''), ('-', ''), ('-He', 'He')] PUR19040929-V04-09-page5.txt: [('discourage-', 'discourage'), ('ac-', 'ac'), ('lan-', 'lan')] PUR19040929-V04-09-page6.txt: [('-', ''), ('Na-', 'Na'), ('Arithmetic-', 'Arithmetic'), ('-', '')] PUR19040929-V04-09-page7.txt: [('--Bible.', '-Bible.'), ('conduct-', 'conduct'), ('Sep-', 'Sep')] PUR19040929-V04-09-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-Adam', 'Adam'), ('it-', 'it')] PUR19041006-V04-10-page1.txt: [('exe-', 'exe')] PUR19041006-V04-10-page2.txt: [('recog-', 'recog'), ('re-', 're'), ('message-', 'message'), ('be-', 'be'), ('-', ''), ('-giveth', 'giveth')] PUR19041006-V04-10-page3.txt: [('appro-', 'appro'), ('Sun-', 'Sun'), ('-', ''), ('confer-', 'confer'), ('House-', 'House')] PUR19041006-V04-10-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19041006-V04-10-page5.txt: [('-in--', 'in--'), ('need-', 'need')] PUR19041006-V04-10-page6.txt: [('-', ''), ('-', '')] PUR19041006-V04-10-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('de-', 'de')] PUR19041013-V04-11-page1.txt: [('-He', 'He')] PUR19041013-V04-11-page2.txt: [('-', ''), ('as-', 'as'), ('Sen-', 'Sen')] PUR19041013-V04-11-page4.txt: [('.-', '.'), ('-system.', 'system.')] PUR19041013-V04-11-page5.txt: [('-souls', 'souls'), ('.-', '.'), ('.-', '.')] PUR19041013-V04-11-page6.txt: [('after-', 'after'), ('-from', 'from')] PUR19041013-V04-11-page7.txt: [('debilitat-', 'debilitat'), ('intel-', 'intel'), ('-is', 'is'), ('-with', 'with')] PUR19041013-V04-11-page8.txt: [('SEVENTH-', 'SEVENTH'), ('Col-', 'Col'), ('-', '')] PUR19041020-V04-12-page2.txt: [('-', ''), ('-', ''), ('Re-', 'Re')] PUR19041020-V04-12-page3.txt: [('-', ''), ('-', ''), ('at-', 'at')] PUR19041020-V04-12-page4.txt: [('-', ''), ('ex-', 'ex'), ('gain-.-', 'gain-.'), ('Mes-', 'Mes'), ('meet-', 'meet'), ('mis-', 'mis')] PUR19041020-V04-12-page5.txt: [('-in', 'in'), ('-let', 'let')] PUR19041020-V04-12-page7.txt: [('con-', 'con'), ('-', '')] PUR19041020-V04-12-page8.txt: [('SEVENTH-', 'SEVENTH'), ('us-', 'us')] PUR19041027-V04-13-page2.txt: [('Com-', 'Com')] PUR19041027-V04-13-page3.txt: [('knowl-', 'knowl')] PUR19041027-V04-13-page6.txt: [('consider.-', 'consider.'), ('en-', 'en'), ('my-', 'my')] PUR19041027-V04-13-page8.txt: [('SEVENTH-', 'SEVENTH'), ('op-', 'op'), ('Sanitarium-', 'Sanitarium')] PUR19041103-V04-14-page3.txt: [('of-', 'of'), ('SAN-', 'SAN')] PUR19041103-V04-14-page4.txt: [('accom-', 'accom'), ('gen-', 'gen'), ('confer-', 'confer'), ('sum-', 'sum'), ('dis-', 'dis')] PUR19041103-V04-14-page5.txt: [('-', ''), ('"Life-', '"Life'), ('.-', '.'), ('-', '')] PUR19041103-V04-14-page7.txt: [('-.-', '.-'), ('-', ''), ('-hundreds', 'hundreds'), ('-', '')] PUR19041103-V04-14-page8.txt: [('SEVENTH-', 'SEVENTH')] PUR19041110-V04-15-page1.txt: [('-', '')] PUR19041110-V04-15-page2.txt: [('-', '')] PUR19041110-V04-15-page3.txt: [('mat-', 'mat')] PUR19041110-V04-15-page4.txt: [('-', '')] PUR19041110-V04-15-page5.txt: [('investi-', 'investi'), ('re-', 're')] PUR19041110-V04-15-page7.txt: [('in-', 'in')] PUR19041110-V04-15-page8.txt: [('SEVENTH-', 'SEVENTH'), ('cam-', 'cam')] PUR19041117-V04-16-page1.txt: [('-RECORDER', 'RECORDER')] PUR19041117-V04-16-page3.txt: [('Octobe-', 'Octobe')] PUR19041117-V04-16-page5.txt: [('.-', '.'), ('.-', '.')] PUR19041117-V04-16-page6.txt: [('de-', 'de')] PUR19041117-V04-16-page7.txt: [('-', ''), ('-Cal.', 'Cal.'), ('in-', 'in'), ('pauper-', 'pauper'), ('andeve-', 'andeve'), ('-', ''), ('-', ''), ('-about', 'about'), ('start-', 'start'), ('po-', 'po')] PUR19041117-V04-16-page8.txt: [('-', '')] PUR19041124-V04-18-page2.txt: [('-', ''), ('-to', 'to'), ('-the', 'the'), ('disciples-', 'disciples')] PUR19041124-V04-18-page3.txt: [('re-', 're')] PUR19041124-V04-18-page4.txt: [('lie-', 'lie'), ('them-', 'them')] PUR19041124-V04-18-page6.txt: [('-', ''), ('Shaffer-', 'Shaffer')] PUR19041124-V04-18-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-hools.', 'hools.')] PUR19041124-V04-18-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-Lein.', 'Lein.'), ('Decem-', 'Decem')] PUR19041201-V04-19-page2.txt: [('--', '-')] PUR19041201-V04-19-page3.txt: [('-the', 'the'), ('-cational', 'cational'), ('re--', 're-'), ('-out', 'out')] PUR19041201-V04-19-page4.txt: [('-', ''), ('Mc-', 'Mc')] PUR19041201-V04-19-page7.txt: [('mo-', 'mo')] PUR19041201-V04-19-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', '')] PUR19041208-V04-20-page1.txt: [('-Of', 'Of')] PUR19041208-V04-20-page3.txt: [('.-', '.'), ('Inde-', 'Inde'), ('mem-', 'mem'), ('suf-', 'suf')] PUR19041208-V04-20-page4.txt: [('.-', '.'), ('attend-', 'attend'), ('Inde-', 'Inde')] PUR19041208-V04-20-page5.txt: [('al-', 'al'), ('-', ''), ('-', ''), ('-a.', 'a.'), ('quar-', 'quar')] PUR19041208-V04-20-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19041208-V04-20-page7.txt: [('interesting-', 'interesting'), ('-the', 'the')] PUR19041208-V04-20-page8.txt: [('SEVENTH-', 'SEVENTH'), ('sup-', 'sup'), ('South-', 'South')] PUR19050105-V04-24-page3.txt: [('build-', 'build'), ('-', ''), ('-', ''), ('Bal-', 'Bal')] PUR19050105-V04-24-page5.txt: [('ob-', 'ob')] PUR19050105-V04-24-page6.txt: [('-foot', 'foot'), ('-vhich', 'vhich'), ('Christ-', 'Christ')] PUR19050105-V04-24-page7.txt: [('-', ''), ('re-', 're'), ('right-', 'right'), ('-', ''), ('anx-', 'anx')] PUR19050105-V04-24-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('pres-', 'pres'), ('-', '')] PUR19050112-V04-25-page1.txt: [('-', ''), ('-to', 'to'), ('self-sacrific-', 'self-sacrific'), ('neces-', 'neces'), ('-a', 'a'), ('-on', 'on')] PUR19050112-V04-25-page2.txt: [('con-', 'con')] PUR19050112-V04-25-page3.txt: [('-', ''), ('Seventh-', 'Seventh'), ('-', '')] PUR19050112-V04-25-page4.txt: [('-greater', 'greater'), ('-', ''), ('-', ''), ('-', ''), ('corn-', 'corn'), ('-were-bresent', 'were-bresent'), ('-', ''), ('.-', '.')] PUR19050112-V04-25-page5.txt: [('-', '')] PUR19050112-V04-25-page6.txt: [('-', '')] PUR19050112-V04-25-page7.txt: [('inter-', 'inter'), ('Brother-', 'Brother')] PUR19050112-V04-25-page8.txt: [('SEVENTH-', 'SEVENTH'), ('Winegar-', 'Winegar'), ('-who', 'who'), ('-', ''), ('-', ''), ('-', '')] PUR19050119-V04-26-page1.txt: [('-His', 'His'), ('-', '')] PUR19050119-V04-26-page2.txt: [('Fran-', 'Fran'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19050119-V04-26-page3.txt: [('Liberty-', 'Liberty'), ('.-', '.'), ('pass-', 'pass'), ('"misunderstand-', '"misunderstand'), ('them.-', 'them.'), ('.-', '.'), ('.-', '.'), ('-is', 'is')] PUR19050119-V04-26-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19050119-V04-26-page5.txt: [('lit-', 'lit'), ('-', ''), ('cam-', 'cam')] PUR19050119-V04-26-page7.txt: [('-', ''), ('-in', 'in'), ('Ingrati-', 'Ingrati')] PUR19050119-V04-26-page8.txt: [('SEVENTH-', 'SEVENTH'), ('de-', 'de'), ('-', '')] PUR19050209-V04-29-page1.txt: [('-', ''), ('reconcilia-', 'reconcilia'), ('-be', 'be')] PUR19050209-V04-29-page2.txt: [('aptillus-', 'aptillus'), ('to-', 'to')] PUR19050209-V04-29-page3.txt: [('-', ''), ('-Our', 'Our'), ('-.', '.')] PUR19050209-V04-29-page4.txt: [('-books', 'books'), ('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ("s'-", "s'"), ('-', ''), ('-', ''), ('-f', 'f'), ('-', ''), ('-', ''), ('-', ''), ('-i-', 'i-'), ('-', ''), ('-', ''), ('-', '')] PUR19050209-V04-29-page5.txt: [('CHRIS-', 'CHRIS'), ('ac-', 'ac'), ('-', ''), ('en-', 'en'), ('-.do', '.do'), ('-', '')] PUR19050209-V04-29-page6.txt: [('mission-', 'mission'), ('-eleven', 'eleven'), ('-', ''), ('-done', 'done'), ('serv-', 'serv')] PUR19050209-V04-29-page7.txt: [('at-', 'at'), ('-great', 'great'), ('-', ''), ('-', ''), ('-rent', 'rent'), ('-', ''), ('-', '')] PUR19050209-V04-29-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('Kellogg.-', 'Kellogg.'), ('-cents-aweek', 'cents-aweek'), ('secretary-', 'secretary')] PUR19050223-V04-31-page1.txt: [('week"-', 'week"')] PUR19050223-V04-31-page2.txt: [('with-', 'with')] PUR19050223-V04-31-page3.txt: [('--', '-'), ('ex-', 'ex')] PUR19050223-V04-31-page4.txt: [('-', ''), ('overflow-', 'overflow')] PUR19050223-V04-31-page5.txt: [('-house', 'house'), ('-', ''), ('purchased-', 'purchased')] PUR19050223-V04-31-page6.txt: [('--', '-'), ('mak-', 'mak')] PUR19050223-V04-31-page7.txt: [("-Christ's", "Christ's"), ('sis-', 'sis')] PUR19050223-V04-31-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('willap-', 'willap'), ('Enter-', 'Enter')] PUR19050302-V04-32-page1.txt: [('-', ''), ('-', '')] PUR19050302-V04-32-page2.txt: [('-', ''), ('-easy', 'easy'), ('"I-', '"I'), ('-while', 'while'), ('misfor-', 'misfor'), ('us-', 'us'), ('-of', 'of'), ('-', '')] PUR19050302-V04-32-page3.txt: [('-', ''), ('-It', 'It'), ('-', ''), ('-', ''), ('-the', 'the'), ('.-', '.'), ('--foreign', '-foreign'), ('-Work', 'Work'), ('-surely', 'surely'), ('-may', 'may'), ('-be', 'be'), ('-in', 'in'), ('-', '')] PUR19050302-V04-32-page4.txt: [('-three', 'three')] PUR19050302-V04-32-page5.txt: [('-Lord', 'Lord'), ('be-', 'be'), ('Pa-', 'Pa'), ('-papers', 'papers'), ('hos-', 'hos'), ('--', '-'), ('theireduca-', 'theireduca'), ('thecol-', 'thecol'), ('-', '')] PUR19050302-V04-32-page6.txt: [('-divine', 'divine'), ('rec-', 'rec'), ('-with', 'with'), ('-harvest-field.', 'harvest-field.'), ('Feb.-', 'Feb.'), ('Sanita-', 'Sanita'), ('-', ''), ('-to', 'to'), ('the-', 'the'), ('So-', 'So'), ('-earth', 'earth'), ('-us', 'us'), ('-', '')] PUR19050302-V04-32-page7.txt: [('-the', 'the'), ('-', ''), ('-supplied', 'supplied'), ('-of', 'of'), ('UNION-', 'UNION'), ('-win', 'win'), ('con-', 'con')] PUR19050302-V04-32-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-have', 'have')] PUR19050309-V04-33-page1.txt: [('con-', 'con'), ('-be', 'be')] PUR19050309-V04-33-page2.txt: [('-', '')] PUR19050309-V04-33-page3.txt: [('.-', '.')] PUR19050309-V04-33-page4.txt: [('-', ''), ('con-', 'con'), ('-to', 'to')] PUR19050309-V04-33-page5.txt: [('ob-', 'ob')] PUR19050309-V04-33-page6.txt: [('respon-', 'respon'), ('accomplishino-', 'accomplishino')] PUR19050309-V04-33-page7.txt: [('regen-', 'regen'), ('-', '')] PUR19050309-V04-33-page8.txt: [('hun-', 'hun'), ('-', '')] PUR19050316-V04-34-page2.txt: [('.-', '.'), ('.-', '.'), ('.-', '.'), ('of-', 'of')] PUR19050316-V04-34-page3.txt: [('-', ''), ('medi-', 'medi'), ('Vege-', 'Vege'), ('-', '')] PUR19050316-V04-34-page4.txt: [('sub-', 'sub'), ('rang-', 'rang')] PUR19050316-V04-34-page5.txt: [('.-', '.')] PUR19050316-V04-34-page6.txt: [('-', '')] PUR19050316-V04-34-page7.txt: [('-', ''), ('pro-', 'pro')] PUR19050316-V04-34-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('fol-', 'fol')] PUR19050323-V04-35-page2.txt: [('-', ''), ('con-', 'con')] PUR19050323-V04-35-page3.txt: [('compli-', 'compli'), ('in-', 'in')] PUR19050323-V04-35-page4.txt: [('ex-', 'ex')] PUR19050323-V04-35-page5.txt: [('.-', '.'), ('.-', '.')] PUR19050323-V04-35-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mc-', 'Mc')] PUR19050323-V04-35-page7.txt: [('Mc-', 'Mc'), ('Health.-', 'Health.'), ('to-', 'to'), ('-', ''), ('cir-', 'cir'), ('dis-', 'dis'), ('-', ''), ('-', ''), ('-Esiti', 'Esiti'), ('-', ''), ('-', '')] PUR19050323-V04-35-page8.txt: [('SEVENTH-', 'SEVENTH'), ('Camp-', 'Camp'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19050330-V04-36-page2.txt: [('-them.', 'them.')] PUR19050330-V04-36-page3.txt: [('ex-', 'ex'), ('-', ''), ('trans-', 'trans'), ('-', ''), ('con-', 'con')] PUR19050330-V04-36-page5.txt: [('-desire', 'desire')] PUR19050330-V04-36-page6.txt: [('per-', 'per'), ('-', '')] PUR19050330-V04-36-page7.txt: [('CHRIS-', 'CHRIS'), ('-', '')] PUR19050330-V04-36-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-found', 'found'), ('-', ''), ('-', '')] PUR19050406-V04-37-page2.txt: [('treas-', 'treas')] PUR19050406-V04-37-page3.txt: [('California-', 'California'), ('comino-', 'comino')] PUR19050406-V04-37-page4.txt: [('with-', 'with'), ('stockhold-', 'stockhold'), ('fol-', 'fol'), ('-', ''), ('meas-', 'meas')] PUR19050406-V04-37-page5.txt: [('-', '')] PUR19050406-V04-37-page6.txt: [('Sabbath-', 'Sabbath')] PUR19050406-V04-37-page7.txt: [('be-', 'be')] PUR19050406-V04-37-page8.txt: [('SEVENTH-', 'SEVENTH')] PUR19050413-V04-38-page2.txt: [('-', ''), ('-', ''), ('Roseburg--', 'Roseburg-'), ('-', ''), ('-', '')] PUR19050413-V04-38-page3.txt: [('-tep', 'tep'), ('-', ''), ('-', '')] PUR19050413-V04-38-page4.txt: [('-', ''), ('superin-', 'superin')] PUR19050413-V04-38-page5.txt: [('-', '')] PUR19050413-V04-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('exam--', 'exam-'), ('-', ''), ('California-', 'California')] PUR19050413-V04-38-page7.txt: [('privi-', 'privi')] PUR19050413-V04-38-page8.txt: [('Camp-', 'Camp'), ('-', ''), ('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19050420-V04-39-page2.txt: [('-avoid', 'avoid'), ('serv-', 'serv')] PUR19050420-V04-39-page3.txt: [('.-', '.'), ('.-', '.'), ('.-', '.'), ('.-', '.')] PUR19050420-V04-39-page4.txt: [('Ore-', 'Ore'), ('-', ''), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('-', ''), ('pre-', 'pre')] PUR19050420-V04-39-page5.txt: [('-', ''), ('Has-', 'Has')] PUR19050420-V04-39-page7.txt: [('ACCOMPLISH-', 'ACCOMPLISH')] PUR19050420-V04-39-page8.txt: [('em-', 'em')] PUR19050427-V04-40-page1.txt: [('-WAKE', 'WAKE'), ('straight-', 'straight'), ("'shoul-", "'shoul")] PUR19050427-V04-40-page4.txt: [('al-', 'al'), ('-', '')] PUR19050427-V04-40-page5.txt: [('await-', 'await')] PUR19050427-V04-40-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('mem-', 'mem')] PUR19050427-V04-40-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('--.', '-.'), ('-', ''), ('-', ''), ('-', ''), ("'-", "'"), ('-', ''), ('-".', '".'), ('-I', 'I'), ('-', ''), ('---', '--'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('E--', 'E-'), ('t-', 't'), ('-', ''), ('-', ''), ('--I', '-I'), ('-', '')] PUR19050427-V04-40-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('-', ''), ('-', '')] PUR19050504-V04-41-page1.txt: [('pro-', 'pro'), ('-', ''), ('camp-meet-', 'camp-meet'), ('in-', 'in')] PUR19050504-V04-41-page2.txt: [('anniver-', 'anniver')] PUR19050504-V04-41-page3.txt: [('thou-', 'thou'), ('-a', 'a'), ('ex-', 'ex'), ('Sa-', 'Sa')] PUR19050504-V04-41-page5.txt: [('-', '')] PUR19050504-V04-41-page6.txt: [('-all', 'all'), ('-', ''), ('-', ''), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('-', ''), ('serv-', 'serv'), ('.-', '.'), ('.-', '.'), ('-', ''), ('-', ''), ('-', '')] PUR19050504-V04-41-page8.txt: [('SEVENTH-', 'SEVENTH'), ('-', ''), ('Camp-', 'Camp'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19050511-V04-42-page1.txt: [('im-', 'im'), ('priv-', 'priv'), ('-tittle', 'tittle')] PUR19050511-V04-42-page2.txt: [('-', ''), ('in-', 'in'), ('Winnegar-', 'Winnegar')] PUR19050511-V04-42-page3.txt: [('camp-meet-', 'camp-meet'), ('-', ''), ('Camp-', 'Camp'), ('Jeffer-', 'Jeffer')] PUR19050511-V04-42-page4.txt: [('-to', 'to'), ('.-', '.')] PUR19050511-V04-42-page5.txt: [('-good', 'good'), ('-place', 'place'), ('-edge', 'edge'), ('-and', 'and'), ('-', ''), ('-the', 'the'), ('-', ''), ('-ained', 'ained')] PUR19050511-V04-42-page6.txt: [('se-', 'se')] PUR19050511-V04-42-page7.txt: [('attend-', 'attend'), ('sub-', 'sub')] PUR19050511-V04-42-page8.txt: [('SEVENTH-', 'SEVENTH'), ('paper-', 'paper'), ('-', ''), ("Wa''-", "Wa''"), ('-Leer', 'Leer'), ('MA-', 'MA')] PUR19071017-V07-12-page1.txt: [('-', '')] PUR19071017-V07-12-page2.txt: [('SERIES-', 'SERIES'), ('-Vallejo', 'Vallejo')] PUR19071017-V07-12-page3.txt: [('-Elders', 'Elders'), ('Bice-', 'Bice'), ('Sabbath-', 'Sabbath')] PUR19071017-V07-12-page4.txt: [('follow-', 'follow'), ('Bible-', 'Bible'), ('Watch-', 'Watch')] PUR19071024-V07-13-page2.txt: [('Five-', 'Five'), ('-cent', 'cent')] PUR19071024-V07-13-page3.txt: [('con-', 'con')] PUR19071031-V07-14-page1.txt: [('-to', 'to')] PUR19071031-V07-14-page2.txt: [('-', '')] PUR19071031-V07-14-page3.txt: [('-', ''), ('T.-', 'T.'), ('--.', '-.'), ('-', ''), ('-.', '.')] PUR19071107-V07-15-page1.txt: [('hood-', 'hood')] PUR19071107-V07-15-page2.txt: [('-a', 'a'), ('Daniells.-', 'Daniells.')] PUR19071107-V07-15-page3.txt: [('-', '')] PUR19071107-V07-15-page4.txt: [('-page', 'page')] PUR19071114-V07-16-page1.txt: [('-', ''), ('-', ''), ('de-', 'de')] PUR19071114-V07-16-page2.txt: [('medi-', 'medi')] PUR19071114-V07-16-page3.txt: [('Confer-', 'Confer')] PUR19071114-V07-16-page4.txt: [('-General', 'General'), ('-United', 'United'), ('Thera-', 'Thera')] PUR19071114-V07-16-page6.txt: [('No-', 'No'), ('-vember', 'vember'), ('-strange', 'strange')] PUR19071121-V07-17-page1.txt: [('captiw-', 'captiw'), ('-', ''), ('him-', 'him'), ('-', '')] PUR19071121-V07-17-page2.txt: [('-', ''), ('-the', 'the'), ('-', ''), ('-', ''), ('-"From', '"From')] PUR19071121-V07-17-page3.txt: [('InStrue-', 'InStrue')] PUR19071121-V07-17-page4.txt: [('-can', 'can'), ('-the', 'the'), ('-those', 'those'), ('them.-', 'them.')] PUR19071121-V07-17-page5.txt: [("Sorg'-", "Sorg'"), ('Fargo-', 'Fargo'), ('-and', 'and'), ('-', ''), ('-Faithful', 'Faithful'), ('-men', 'men'), ('-', ''), ('-', ''), ('P-', 'P')] PUR19071121-V07-17-page6.txt: [('.-', '.')] PUR19071128-V07-18-page1.txt: [('old-', 'old'), ('-', ''), ('-', ''), ('broad.-', 'broad.'), ('-', '')] PUR19071128-V07-18-page2.txt: [('-with', 'with'), ('--', '-')] PUR19071128-V07-18-page3.txt: [('pro-', 'pro'), ('-"Standar', '"Standar'), ('-', '')] PUR19071128-V07-18-page4.txt: [('-', '')] PUR19071128-V07-18-page5.txt: [('-', ''), ('mostuttlie-', 'mostuttlie'), ('.X.P-', '.X.P'), ('require-', 'require'), ('-you', 'you')] PUR19071128-V07-18-page6.txt: [('-', '')] PUR19071212-V07-20-page1.txt: [('-and', 'and'), ('-was', 'was')] PUR19071212-V07-20-page3.txt: [('-sufficient', 'sufficient'), ('tern-', 'tern'), ('-', ''), ('-great', 'great')] PUR19071212-V07-20-page4.txt: [('-"', '"')] PUR19071212-V07-20-page5.txt: [('..-', '..'), ('remunera-', 'remunera'), ('every-', 'every')] PUR19071212-V07-20-page6.txt: [('-the', 'the'), ('.-', '.'), ('-', ''), ('-', ''), ('-', '')] PUR19071219-V07-21-page1.txt: [('minis-', 'minis')] PUR19071219-V07-21-page4.txt: [('-', '')] PUR19071219-V07-21-page5.txt: [('-that', 'that'), ('de-', 'de'), ('-', ''), ('-asev', 'asev')] PUR19071219-V07-21-page6.txt: [('secretary-', 'secretary'), ('-at', 'at')] PUR19080109-V07-24-page3.txt: [('-', ''), ('-paid', 'paid')] PUR19080109-V07-24-page4.txt: [('-', ''), ('.-', '.')] PUR19080109-V07-24-page5.txt: [('-with', 'with'), ('-', '')] PUR19080109-V07-24-page6.txt: [('-', '')] PUR19080130-V07-26-page3.txt: [('-', ''), ('-very', 'very'), ('---', '--')] PUR19080130-V07-26-page4.txt: [('-', '')] PUR19080130-V07-26-page5.txt: [('corpor-', 'corpor')] PUR19080206-V07-27-page1.txt: [('-', ''), ('-birralee', 'birralee'), ('-', ''), ('in-', 'in'), ('-', ''), ('-', '')] PUR19080206-V07-27-page2.txt: [('-', ''), ('Sabbath-', 'Sabbath')] PUR19080206-V07-27-page3.txt: [('-BE', 'BE'), ('-is', 'is'), ('towns-', 'towns'), ('--', '-'), ('-Would', 'Would'), ('-f', 'f'), ('ti-', 'ti')] PUR19080206-V07-27-page5.txt: [('number-', 'number'), ('mis-', 'mis'), ('-sionary', 'sionary'), ('.-', '.'), ('-Leavitt', 'Leavitt'), ('-', ''), ('inter-', 'inter'), ('-', ''), ('-', '')] PUR19080206-V07-27-page6.txt: [('-report', 'report'), ('RE-', 'RE')] PUR19080213-V07-28-page1.txt: [("Jesus'-", "Jesus'"), ('-rring.', 'rring.')] PUR19080213-V07-28-page10.txt: [('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('re-', 're')] PUR19080213-V07-28-page11.txt: [('Latin-', 'Latin'), ('-cry', 'cry'), ('-Linda.', 'Linda.'), ('-forty', 'forty')] PUR19080213-V07-28-page12.txt: [('-was', 'was'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ti-', 'ti')] PUR19080213-V07-28-page13.txt: [('safe-guarded-', 'safe-guarded'), ('-andno', 'andno'), ('clafing\'fbe"\'paSt-', 'clafing\'fbe"\'paSt'), ('-year', 'year'), ('-', ''), ('-', '')] PUR19080213-V07-28-page14.txt: [('-to', 'to'), ('-to', 'to'), ('-several', 'several')] PUR19080213-V07-28-page15.txt: [("'shore-", "'shore"), ('Se-', 'Se')] PUR19080213-V07-28-page16.txt: [('Shultz-', 'Shultz'), ('Pa-', 'Pa')] PUR19080213-V07-28-page2.txt: [('dwell-', 'dwell')] PUR19080213-V07-28-page3.txt: [('-have', 'have'), ('-sure', 'sure'), ('-for', 'for'), ('-the', 'the'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('a.m.-', 'a.m.'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080213-V07-28-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080213-V07-28-page5.txt: [('-Elders', 'Elders'), ('-we', 'we'), ('-in', 'in'), ("-lis'", "lis'"), ('-', ''), ('S.-', 'S.'), ('-', ''), ('-', ''), ('Un-', 'Un')] PUR19080213-V07-28-page6.txt: [('-', ''), ('-upon', 'upon'), ('-and', 'and')] PUR19080213-V07-28-page7.txt: [('-', ''), ('-this', 'this'), ('indi-', 'indi'), ('boun-', 'boun'), ('-the', 'the'), ('students-', 'students'), ('defi-', 'defi')] PUR19080213-V07-28-page9.txt: [('ITN-', 'ITN'), ('RE-', 'RE'), ('-people.', 'people.'), ('South-', 'South'), ('-approximate', 'approximate'), ('eon-', 'eon')] PUR19080220-V07-29-page2.txt: [('-light', 'light'), ('-spiritual', 'spiritual')] PUR19080220-V07-29-page3.txt: [('-than', 'than'), ('-UNION', 'UNION'), ('hal--', 'hal-')] PUR19080220-V07-29-page4.txt: [('corn-fields-', 'corn-fields'), ('-A.', 'A.'), ('-who', 'who'), ('-actually', 'actually'), ('-Bailey.', 'Bailey.')] PUR19080220-V07-29-page5.txt: [('-Non', 'Non'), ('E.-', 'E.'), ('subject.-', 'subject.'), ('note-', 'note'), ('---', '--')] PUR19080227-V07-30-page1.txt: [('Lodi-', 'Lodi'), ('conference-', 'conference')] PUR19080227-V07-30-page10.txt: [('-', '')] PUR19080227-V07-30-page11.txt: [('hire-', 'hire'), ('-', ''), ('hospi.--', 'hospi.-'), ('-', ''), ('-better', 'better'), ("won'tneed-", "won'tneed"), ('-', ''), ('-Whereas', 'Whereas'), ('So-', 'So'), ('-', ''), ('-', '')] PUR19080227-V07-30-page12.txt: [('--', '-')] PUR19080227-V07-30-page3.txt: [('-', ''), ('-', '')] PUR19080227-V07-30-page4.txt: [('forty-', 'forty'), ('-Untiring', 'Untiring'), ('-', ''), ('-', '')] PUR19080227-V07-30-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080227-V07-30-page6.txt: [('Sabbath-', 'Sabbath'), ('-', ''), ('free-', 'free')] PUR19080227-V07-30-page7.txt: [('-wherever', 'wherever'), ('-', ''), ('Sabbath-', 'Sabbath'), ('-Vernon', 'Vernon'), ('Sabbath-', 'Sabbath'), ('Peri-', 'Peri'), ('-UNION', 'UNION'), ('mis-', 'mis')] PUR19080227-V07-30-page9.txt: [('in-', 'in')] PUR19080305-V07-31-page1.txt: [('the-', 'the'), ('--', '-'), ('-', '')] PUR19080305-V07-31-page2.txt: [('-for', 'for'), ('-is', 'is')] PUR19080305-V07-31-page3.txt: [('Vol-', 'Vol'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080305-V07-31-page4.txt: [('-this', 'this'), ('-the', 'the'), ('I-', 'I')] PUR19080305-V07-31-page5.txt: [('-', '')] PUR19080305-V07-31-page6.txt: [('-January-', 'January-')] PUR19080312-V07-32-page1.txt: [('-on', 'on'), ('undefiled-', 'undefiled'), ('fears-', 'fears'), ('-ftectiolis', 'ftectiolis'), ('-', ''), ('-', ''), ('-world', 'world'), ('-', ''), ('-', '')] PUR19080312-V07-32-page2.txt: [('-', ''), ('-', '')] PUR19080312-V07-32-page3.txt: [('-can', 'can'), ('capa-', 'capa'), ('-who', 'who'), ('-', ''), ('-the', 'the')] PUR19080312-V07-32-page4.txt: [('-"Christ\'s', '"Christ\'s'), ('-', ''), ('distri-', 'distri')] PUR19080312-V07-32-page5.txt: [('-"', '"'), ('ac-', 'ac'), ('-house', 'house'), ('ciiiite-Miptrlai-', 'ciiiite-Miptrlai')] PUR19080312-V07-32-page6.txt: [('oppor-', 'oppor'), ('Se-', 'Se'), ('abun-', 'abun')] PUR19080319-V07-33-page1.txt: [('-Sunday-law', 'Sunday-law'), ('-United', 'United'), ('cora-', 'cora'), ('-', ''), ('-bless', 'bless'), ('-.', '.'), ('-', '')] PUR19080319-V07-33-page2.txt: [('-', ''), ('-L-oughborough.', 'L-oughborough.'), ('-on', 'on')] PUR19080319-V07-33-page3.txt: [('-soldiers', 'soldiers'), ('-', ''), ('-they', 'they'), ('-cent', 'cent'), ('-', ''), ('-', ''), ('-', ''), ('twenty-', 'twenty'), ('ten-', 'ten'), ('Aced-', 'Aced'), ('-', '')] PUR19080319-V07-33-page4.txt: [('-Australia', 'Australia'), ('March-', 'March'), ('-', ''), ('-', ''), ('-', ''), ('appre-', 'appre'), ('-', ''), ('-E.', 'E.'), ('-can', 'can')] PUR19080319-V07-33-page5.txt: [('cir-', 'cir'), ('-has', 'has'), ('-', ''), ('once-', 'once'), ('kt-orderlitr-', 'kt-orderlitr'), ('thrticftzi-', 'thrticftzi'), ('-use', 'use'), ('Oak-', 'Oak'), ('-', '')] PUR19080319-V07-33-page6.txt: [('-the', 'the'), ('--------', '-------'), ('C.-', 'C.'), ('-', ''), ('ship-', 'ship'), ('-ping', 'ping'), ('-Brother', 'Brother'), ('Southern-', 'Southern'), ('-the', 'the'), ('-date', 'date'), ('-', ''), ('-Have', 'Have'), ("-weeks'", "weeks'")] PUR19080326-V07-34-page1.txt: [('-', ''), ('-', ''), ('-oft', 'oft'), ('-', ''), ('Scrip-', 'Scrip'), ('pardon-', 'pardon'), ('-', '')] PUR19080326-V07-34-page2.txt: [('-', ''), ('disappear-', 'disappear'), ('sol-', 'sol')] PUR19080326-V07-34-page3.txt: [('--', '-'), ('E-', 'E')] PUR19080326-V07-34-page4.txt: [('-the', 'the'), ('price-', 'price'), ('-', '')] PUR19080402-V07-35-page1.txt: [('inven-', 'inven')] PUR19080402-V07-35-page2.txt: [('seems.-', 'seems.'), ('-these', 'these'), ('cor-', 'cor')] PUR19080402-V07-35-page3.txt: [('-', ''), ('present-', 'present')] PUR19080402-V07-35-page5.txt: [('inter-', 'inter'), ('-Cal..', 'Cal..')] PUR19080402-V07-35-page6.txt: [('-the', 'the'), ('-', ''), ('Rear-', 'Rear')] PUR19080409-V07-36-page2.txt: [('-', ''), ('-', '')] PUR19080409-V07-36-page3.txt: [('contem-', 'contem'), ('en-', 'en'), ('-', ''), ('impres-', 'impres'), ('in-', 'in'), ('im-', 'im')] PUR19080409-V07-36-page6.txt: [('-UNION', 'UNION'), ('In-', 'In')] PUR19080416-V07-37-page1.txt: [('un-', 'un'), ('-', ''), ('Tele-', 'Tele'), ('-', ''), ('-', '')] PUR19080416-V07-37-page3.txt: [('-our', 'our'), ('-it', 'it')] PUR19080416-V07-37-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('of-', 'of'), ('-', '')] PUR19080416-V07-37-page6.txt: [('Memorial-', 'Memorial'), ('veryencour-', 'veryencour'), ('-to', 'to')] PUR19080423-V07-38-page1.txt: [('irn-', 'irn'), ('---diseounse', '--diseounse')] PUR19080423-V07-38-page2.txt: [('-', ''), ('-furnishings', 'furnishings')] PUR19080423-V07-38-page3.txt: [('institit-', 'institit'), ('-training-so', 'training-so'), ('-of', 'of')] PUR19080423-V07-38-page4.txt: [('-D.', 'D.'), ('-world', 'world'), ('-demonstrating', 'demonstrating'), ('-', ''), ('prin-', 'prin'), ('-', '')] PUR19080423-V07-38-page5.txt: [('-', ''), ('-Wit', 'Wit'), ('-the', 'the'), ('-', ''), ('-to', 'to'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080423-V07-38-page6.txt: [('-year-', 'year-'), ('-Lake', 'Lake'), ('Arta-', 'Arta')] PUR19080430-V07-39-page1.txt: [('-night."', 'night."'), ('-', ''), ('-decided', 'decided'), ('--hismeeting.-', '-hismeeting.-'), ('-', ''), ('-if', 'if'), ('-you', 'you')] PUR19080430-V07-39-page2.txt: [('in-', 'in')] PUR19080430-V07-39-page4.txt: [('-the', 'the'), ('-tlais', 'tlais'), ('-', ''), ('meeting.-', 'meeting.'), ('-entire', 'entire'), ('-week', 'week'), ('-noteworthy', 'noteworthy'), ('-so', 'so'), ('-', ''), ('--Andeso', '-Andeso'), ('-the-work-goes', 'the-work-goes'), ('-on.-', 'on.-'), ('-weret', 'weret'), ('-but', 'but'), ('-interest', 'interest')] PUR19080430-V07-39-page5.txt: [('-who', 'who'), ('att--', 'att-'), ('.-', '.'), ('Wat-', 'Wat'), ('-', ''), ('-', ''), ('-', ''), ('-kAenrie', 'kAenrie')] PUR19080430-V07-39-page6.txt: [('Advent-', 'Advent'), ('-series.', 'series.'), ('-', ''), ('-foreman', 'foreman')] PUR19080430-V07-39-page7.txt: [('-religious', 'religious'), ('-Was', 'Was'), ('at-', 'at'), ('dr-', 'dr'), ('-.Jierviee', '.Jierviee'), ('quiek-', 'quiek'), ('-', ''), ('-', ''), ('-', '')] PUR19080430-V07-39-page8.txt: [('-Special', 'Special'), ('-The', 'The')] PUR19080507-V07-40-page1.txt: [('.-', '.'), ('sneer-', 'sneer'), ('-', ''), ('-Sitting', 'Sitting'), ('re-', 're')] PUR19080507-V07-40-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-g-reatly', 'g-reatly'), ('-', ''), ('-', ''), ('-the', 'the'), ('-k', 'k'), ('tovvel-', 'tovvel'), ('anddesire-', 'anddesire'), ('-institute', 'institute'), ('Healds-', 'Healds'), ('-', ''), ('-.Fr-Kit', '.Fr-Kit'), ('-', ''), ('A.-', 'A.'), ('-', ''), ('John--', 'John-'), ('-', ''), ('-Milton', 'Milton'), ('-Company', 'Company'), ('-', ''), ('the-', 'the'), ('toeach-', 'toeach'), ('-', ''), ('by-', 'by'), ('-Myrtle', 'Myrtle'), ('-T.', 'T.'), ('-', ''), ('Dis"-', 'Dis"'), ('-', ''), ('-', ''), ('-of', 'of'), ('Experiments-', 'Experiments'), ('at-', 'at')] PUR19080507-V07-40-page3.txt: [('-T.', 'T.'), ('-', ''), ('-young', 'young'), ('-May', 'May'), ('-the', 'the'), ('-', ''), ('-', ''), ('-one', 'one'), ('-hundred', 'hundred'), ('at-', 'at'), ('-attended', 'attended'), ('twenty-', 'twenty')] PUR19080507-V07-40-page4.txt: [('-', ''), ('-prospective', 'prospective'), ('-', ''), ('-', ''), ('dis-', 'dis'), ('-', ''), ('-', ''), ('-Allen.', 'Allen.')] PUR19080507-V07-40-page5.txt: [('-along', 'along'), ('-Liberty', 'Liberty'), ('-who', 'who')] PUR19080507-V07-40-page6.txt: [('RE-', 'RE'), ('-in.', 'in.'), ('Con-', 'Con'), ('Executive-', 'Executive'), ('-t', 't'), ('-', ''), ('-route', 'route'), ('-Grangeville', 'Grangeville'), ('adults-', 'adults'), ('haptistp-', 'haptistp'), ('Xerecl...-', 'Xerecl...'), ('--Manager', '-Manager'), ('taking-', 'taking'), ("States'ef-", "States'ef"), ('-thehealth', 'thehealth'), ('-rat', 'rat'), ('-Conference', 'Conference'), ('-EO', 'EO'), ('at-', 'at'), ('-', ''), ('at-', 'at'), ('-.', '.'), ('-Knox.', 'Knox.'), ('-pet', 'pet')] PUR19080514-V07-41-page4.txt: [('of-', 'of')] PUR19080521-V07-42-page2.txt: [('-', '')] PUR19080521-V07-42-page3.txt: [('fol-', 'fol')] PUR19080521-V07-42-page4.txt: [('Mrs.-', 'Mrs.'), ('-if', 'if'), ('-Lodi', 'Lodi'), ('Tobacco-', 'Tobacco'), ('.-', '.'), ('.-', '.')] PUR19080521-V07-42-page5.txt: [('South-', 'South'), ('-', ''), ('-White', 'White')] PUR19080521-V07-42-page6.txt: [('D-', 'D'), ('thirty--', 'thirty-')] PUR19080604-V07-44-page1.txt: [('-what', 'what'), ('-as', 'as')] PUR19080604-V07-44-page2.txt: [('Camp-', 'Camp')] PUR19080604-V07-44-page3.txt: [('-', ''), ('-term', 'term')] PUR19080604-V07-44-page4.txt: [('-all', 'all'), ('-faith', 'faith')] PUR19080604-V07-44-page5.txt: [('-uniformity', 'uniformity')] PUR19080604-V07-44-page6.txt: [('-', ''), ('-', ''), ('at-', 'at')] PUR19080611-V07-45-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-lesson', 'lesson')] PUR19080611-V07-45-page3.txt: [('-', ''), ('.-', '.'), ('E-', 'E')] PUR19080611-V07-45-page4.txt: [('-', '')] PUR19080618-V07-46-page1.txt: [('-Leavens', 'Leavens'), ('-', ''), ('-', '')] PUR19080618-V07-46-page2.txt: [('-', ''), ("rf'-", "rf'")] PUR19080618-V07-46-page4.txt: [('-', '')] PUR19080625-V07-47-page1.txt: [('-', ''), ('eunei-', 'eunei')] PUR19080625-V07-47-page2.txt: [('-Fernando', 'Fernando'), ('-', ''), ('-', '')] PUR19080625-V07-47-page3.txt: [('-', ''), ('-', '')] PUR19080625-V07-47-page4.txt: [('-', '')] PUR19080625-V07-47-page6.txt: [('Ca-', 'Ca')] PUR19080625-V07-47-page7.txt: [('-Utah', 'Utah'), ('-', '')] PUR19080625-V07-47-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19080702-V07-48-page1.txt: [('-', ''), ('Dan-', 'Dan'), ('-', '')] PUR19080702-V07-48-page2.txt: [('end"-', 'end"'), ('de-', 'de')] PUR19080702-V07-48-page4.txt: [('-', '')] PUR19080702-V07-48-page6.txt: [('-', ''), ('-', ''), ('-missions', 'missions')] PUR19080709-V07-49-page1.txt: [('-', '')] PUR19080709-V07-49-page2.txt: [('-', ''), ('Me-', 'Me'), ('-', ''), ('Penman-', 'Penman'), ('"Man-', '"Man'), ('"Sadler-', '"Sadler'), ('-', '')] PUR19080709-V07-49-page5.txt: [('-men', 'men')] PUR19080709-V07-49-page6.txt: [('-', ''), ('-', '')] PUR19080716-V07-50-page2.txt: [('-by', 'by'), ('-', '')] PUR19080716-V07-50-page3.txt: [('-"conversation.', '"conversation.')] PUR19080716-V07-50-page4.txt: [('iniquity-', 'iniquity'), ('-Warm', 'Warm')] PUR19080716-V07-50-page5.txt: [('-', ''), ('-us', 'us'), ('-medical', 'medical'), ('-', ''), ('-conduct', 'conduct')] PUR19080716-V07-50-page6.txt: [('-', ''), ('-', ''), ('-UNION', 'UNION')] PUR19080723-V07-51-page1.txt: [('-', ''), ('-raen', 'raen'), ('-of', 'of'), ('-events', 'events'), ('-theworld', 'theworld')] PUR19080723-V07-51-page2.txt: [('-', ''), ('represented-', 'represented'), ('sub-', 'sub'), ('-', ''), ('her-', 'her')] PUR19080723-V07-51-page3.txt: [('whip-', 'whip'), ('-curiosity', 'curiosity'), ('-sejence.', 'sejence.'), ('-', ''), ('-', ''), ('-a-tr', 'a-tr'), ('-The', 'The'), ('-these', 'these'), ('.-', '.'), ('de-', 'de')] PUR19080723-V07-51-page5.txt: [('".-', '".'), ('-', ''), ('-of-the.grandest', 'of-the.grandest'), ("'Elan-", "'Elan"), ('-', ''), ('-Hall', 'Hall'), ('-', ''), ('--', '-'), ('C-', 'C'), ('-.Mir', '.Mir'), ('and-', 'and'), ('-.', '.'), ('-Cfoit', 'Cfoit'), ('fieient--', 'fieient-'), ('-to-', 'to-'), ('-warrant.', 'warrant.'), ('-', ''), ('expeett.-', 'expeett.'), ('-Altogether', 'Altogether')] PUR19080723-V07-51-page6.txt: [('-', ''), ('Sab-', 'Sab'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080730-V07-52-page1.txt: [('-', ''), ('iefkled-', 'iefkled'), ('-Mohammedans', 'Mohammedans'), ('-', '')] PUR19080730-V07-52-page3.txt: [('-During', 'During'), ('Noth-', 'Noth')] PUR19080730-V07-52-page4.txt: [('-Many', 'Many'), ('education.-', 'education.')] PUR19080730-V07-52-page5.txt: [('Ex-', 'Ex'), ('liz-', 'liz'), ('-', ''), ('Healds-', 'Healds'), ('de-', 'de'), ('beau-', 'beau'), ('depart-', 'depart'), ('-fihoritt', 'fihoritt'), ('sub-', 'sub'), ('nes-', 'nes'), ('-Win', 'Win'), ('es--', 'es-'), ('-"Ralph', '"Ralph'), ('-', '')] PUR19080730-V07-52-page6.txt: [('-', ''), ('-', '')] PUR19080806-V08-01-page1.txt: [('-', ''), ('tor-', 'tor'), ('months"-', 'months"'), ('contin-', 'contin')] PUR19080806-V08-01-page2.txt: [('-proclamation', 'proclamation')] PUR19080806-V08-01-page3.txt: [('-', '')] PUR19080806-V08-01-page5.txt: [('-endeavoring', 'endeavoring'), ('-Healing"', 'Healing"')] PUR19080806-V08-01-page6.txt: [('-no', 'no'), ('experi-', 'experi'), ('.-', '.')] PUR19080806-V08-01-page7.txt: [('-Hoare', 'Hoare'), ('larg-', 'larg'), ('-', '')] PUR19080806-V08-01-page8.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('-Cal.', 'Cal.'), ('-the', 'the')] PUR19080813-V08-02-page1.txt: [('-', ''), ('-full', 'full'), ('-to', 'to'), ('-labors', 'labors')] PUR19080813-V08-02-page2.txt: [('-Healing"', 'Healing"'), ('-', ''), ('substan-', 'substan')] PUR19080813-V08-02-page3.txt: [('-time.', 'time.'), ('-', ''), ('-new', 'new'), ('-Brother', 'Brother'), ('-Dr.', 'Dr.')] PUR19080813-V08-02-page4.txt: [('-red', 'red'), ('pro-', 'pro'), ('-ee', 'ee')] PUR19080813-V08-02-page5.txt: [('Guadala-', 'Guadala'), ('-offieers.', 'offieers.')] PUR19080813-V08-02-page6.txt: [('missions-', 'missions')] PUR19080813-V08-02-page7.txt: [('Testament-', 'Testament'), ('-he', 'he'), ("'-", "'")] PUR19080813-V08-02-page8.txt: [('RECORDER-', 'RECORDER'), ('-', ''), ('-', ''), ('Rosa.-', 'Rosa.'), ('-', '')] PUR19080820-V08-03-page1.txt: [('---Wolff', '--Wolff'), ('-the', 'the'), ('-.', '.'), ('Brit-', 'Brit'), ('-With', 'With'), ('-this', 'this')] PUR19080820-V08-03-page3.txt: [('re-', 're'), ('-affording', 'affording'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-.grand', '.grand'), ('"-', '"')] PUR19080820-V08-03-page4.txt: [('-', ''), ('-it', 'it'), ('fol-', 'fol')] PUR19080820-V08-03-page5.txt: [('-they', 'they'), ('-', ''), ('-', ''), ('-', ''), ('fai-', 'fai'), ('-', ''), ('-jading', 'jading'), ('-.', '.'), ('al-', 'al'), ('-bere', 'bere')] PUR19080820-V08-03-page6.txt: [('-', ''), ('Canadian-', 'Canadian'), ('at-', 'at')] PUR19080827-V08-04-page1.txt: [('-', ''), ('or-', 'or')] PUR19080827-V08-04-page2.txt: [('-the', 'the'), ('-that', 'that'), ('-any', 'any'), ('-', '')] PUR19080827-V08-04-page3.txt: [('-', ''), ('-.who', '.who'), ('UNION-', 'UNION'), ('-', ''), ('-never', 'never'), ('-', '')] PUR19080827-V08-04-page4.txt: [('why-', 'why')] PUR19080827-V08-04-page5.txt: [('them.-', 'them.'), ('-', ''), ('-', '')] PUR19080827-V08-04-page6.txt: [('-', ''), ('-', '')] PUR19080910-V08-06-page1.txt: [('-Vol.', 'Vol.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19080910-V08-06-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19080910-V08-06-page3.txt: [('-', ''), ('Sig-', 'Sig'), ('-', ''), ('leaflets-', 'leaflets')] PUR19080910-V08-06-page4.txt: [('in-', 'in')] PUR19080910-V08-06-page5.txt: [('or-', 'or'), ('prin-', 'prin'), ('customs-', 'customs'), ('e-', 'e'), ('ett-', 'ett')] PUR19080910-V08-06-page6.txt: [('-', ''), ('--ill', '-ill')] PUR19080917-V08-07-page1.txt: [('blind-', 'blind'), ('mi.-', 'mi.'), ('V-', 'V'), ('tho-follew-', 'tho-follew'), ('-', ''), ("Atstit'te-minRistersand-", "Atstit'te-minRistersand"), ('ad-', 'ad')] PUR19080917-V08-07-page2.txt: [('-', ''), ('three-', 'three'), ('-', ''), ('har-', 'har'), ('--', '-')] PUR19080917-V08-07-page3.txt: [('-with', 'with'), ('-and', 'and'), ('-account', 'account'), ('for-', 'for'), ('confer-', 'confer'), ('-', ''), ('ta.-', 'ta.')] PUR19080917-V08-07-page4.txt: [('and-', 'and')] PUR19080917-V08-07-page5.txt: [('-', ''), ('.-', '.'), ('-', '')] PUR19080917-V08-07-page6.txt: [('-', ''), ('-', ''), ('Text-', 'Text')] PUR19080924-V08-08-page1.txt: [('-', ''), ('-published', 'published'), ('-', ''), ('-', ''), ('-', ''), ("-and'", "and'"), ('-', '')] PUR19080924-V08-08-page2.txt: [('States-', 'States'), ('-', '')] PUR19080924-V08-08-page3.txt: [('-desk', 'desk'), ('-no-part', 'no-part')] PUR19080924-V08-08-page4.txt: [('-', ''), ('-', '')] PUR19080924-V08-08-page5.txt: [('-quickly', 'quickly'), ('finish-', 'finish'), ('-', ''), ('-', ''), ('re-', 're')] PUR19080924-V08-08-page6.txt: [('-', ''), ('-in', 'in'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19081001-V08-09-page1.txt: [('-tcerryiisg', 'tcerryiisg'), ('--Selected.', '-Selected.'), ('--it', '-it'), ('-the', 'the')] PUR19081001-V08-09-page2.txt: [('accomplish-', 'accomplish'), ('-foot', 'foot')] PUR19081001-V08-09-page3.txt: [('-T', 'T'), ('-enrolment', 'enrolment'), ('Pet-', 'Pet'), ('n.-', 'n.'), ('RECO-', 'RECO'), ('-the..', 'the..')] PUR19081001-V08-09-page4.txt: [('Church-', 'Church')] PUR19081001-V08-09-page5.txt: [('chil-', 'chil'), ('educa-', 'educa'), ('-', ''), ('tween-', 'tween')] PUR19081001-V08-09-page6.txt: [('G--', 'G-'), ('post-', 'post'), ('-it.', 'it.'), ('maga-', 'maga'), ('-', ''), ('-', '')] PUR19081008-V08-10-page1.txt: [('-', ''), ('-being', 'being'), ('-.at', '.at'), ('-Ckight', 'Ckight'), ("-whether'", "whether'")] PUR19081008-V08-10-page3.txt: [('-Haskell', 'Haskell'), ('-', ''), ('-any', 'any'), ('-cornit', 'cornit'), ('PhP.cy-', 'PhP.cy'), ('In-', 'In'), ('-', ''), ('-', ''), ('have.--', 'have.-')] PUR19081008-V08-10-page4.txt: [('-', ''), ('--PAOrric', '-PAOrric'), ('-', '')] PUR19081008-V08-10-page5.txt: [("-''Ministry", "''Ministry"), ('-ells', 'ells'), ('ftetitteittly-', 'ftetitteittly'), ('-and', 'and')] PUR19081008-V08-10-page6.txt: [('-', ''), ('-', ''), ('-attendance', 'attendance'), ('--rear-pre', '-rear-pre'), ('-', '')] PUR19081015-V08-11-page1.txt: [("ls'efere-", "ls'efere"), ('-It', 'It'), ('-a', 'a'), ('-', ''), ('-', ''), ('Mid-', 'Mid')] PUR19081015-V08-11-page2.txt: [('-opening', 'opening')] PUR19081015-V08-11-page3.txt: [('-dross', 'dross'), ('Co-', 'Co'), ('Amor-', 'Amor')] PUR19081015-V08-11-page4.txt: [('-C--', 'C--'), ('-', ''), ('-', ''), ('-', ''), ('---R', '--R'), ('-', ''), ('-R-D-', 'R-D-'), ('-message.', 'message.')] PUR19081015-V08-11-page5.txt: [('Rob-', 'Rob'), ('.-', '.'), ('-', ''), ('-year-iw', 'year-iw')] PUR19081015-V08-11-page6.txt: [('-', ''), ('-P-A-C', 'P-A-C'), ('CON-', 'CON'), ('to-', 'to'), ('-', '')] PUR19081022-V08-12-page1.txt: [('for-', 'for'), ('-given', 'given'), ('-thoroughly', 'thoroughly'), ('-organize', 'organize'), ('-', ''), ('-', ''), ('-', '')] PUR19081022-V08-12-page2.txt: [('-priest', 'priest')] PUR19081022-V08-12-page3.txt: [('Spiritu-', 'Spiritu'), ('-present', 'present'), ('inter-', 'inter'), ('obeying-', 'obeying')] PUR19081022-V08-12-page4.txt: [('-', ''), ('--', '-'), ('-', '')] PUR19081022-V08-12-page5.txt: [('-', ''), ('nature.-', 'nature.'), ('the-', 'the'), ('A-', 'A'), ('xVeritil-', 'xVeritil'), ('the-', 'the'), ('-', ''), ('-one', 'one')] PUR19081022-V08-12-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19081029-V08-13-page2.txt: [('-', ''), ('-IT', 'IT'), ('-', ''), ('-R-D', 'R-D'), ('-', ''), ('seventy-', 'seventy')] PUR19081029-V08-13-page3.txt: [('eon-', 'eon')] PUR19081029-V08-13-page4.txt: [('--', '-'), ('-', ''), ('--P', '-P'), ('-writer', 'writer'), ('-philosophical', 'philosophical'), ('-a', 'a')] PUR19081029-V08-13-page6.txt: [('-', ''), ('-', '')] PUR19081105-V08-14-page1.txt: [('-', ''), ('-', '')] PUR19081105-V08-14-page2.txt: [('-', ''), ('Danish-', 'Danish'), ('-what', 'what'), ('--PACIP', '-PACIP')] PUR19081105-V08-14-page3.txt: [('wa-', 'wa'), ('eon-', 'eon'), ('-the', 'the')] PUR19081105-V08-14-page4.txt: [('RE-C-O-R-DER--', 'RE-C-O-R-DER-')] PUR19081105-V08-14-page6.txt: [('---', '--'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19081112-V08-15-page1.txt: [('-', ''), ('-', '')] PUR19081112-V08-15-page2.txt: [('-', ''), ('-', '')] PUR19081112-V08-15-page3.txt: [('-', '')] PUR19081112-V08-15-page4.txt: [('-', ''), ('II-', 'II'), ('N-', 'N'), ('-', ''), ('-', '')] PUR19081112-V08-15-page6.txt: [('-', ''), ('Pa-', 'Pa')] PUR19081119-V08-16-page1.txt: [('-', ''), ('-Bridegroom', 'Bridegroom'), ('--', '-'), ('--watching', '-watching'), ('"re-', '"re'), ('--.c.eived', '-.c.eived'), ('sec-', 'sec')] PUR19081119-V08-16-page2.txt: [('-', ''), ('rehouse."-', 'rehouse."')] PUR19081119-V08-16-page3.txt: [('anti-', 'anti'), ('-until', 'until'), ('ren-', 'ren')] PUR19081119-V08-16-page4.txt: [('-', ''), ('-', '')] PUR19081119-V08-16-page5.txt: [('every-', 'every'), ('-', ''), ('Grat-', 'Grat')] PUR19081119-V08-16-page6.txt: [('-', '')] PUR19081126-V08-17-page1.txt: [('--', '-'), ('-', ''), ('-', ''), ('-the', 'the')] PUR19081126-V08-17-page2.txt: [('-', ''), ('-in', 'in'), ('madP.-', 'madP.')] PUR19081126-V08-17-page3.txt: [('--"', '-"')] PUR19081126-V08-17-page4.txt: [('and-', 'and'), ('-', ''), ('R--', 'R-'), ('-listened', 'listened'), ('--', '-'), ('Imman-', 'Imman'), ('-day', 'day')] PUR19081126-V08-17-page5.txt: [('--the', '-the'), ('-the', 'the'), ('-', ''), ('-', ''), ("-lip'", "lip'"), ('Ian-', 'Ian'), ('search-', 'search')] PUR19081126-V08-17-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('later.-', 'later.'), ('Watch-', 'Watch')] PUR19081203-V08-18-page1.txt: [('-', ''), ('one-', 'one'), ('--of', '-of'), ("-Of'", "Of'"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('X-', 'X'), ('-', '')] PUR19081203-V08-18-page2.txt: [('-rode', 'rode')] PUR19081203-V08-18-page3.txt: [('-', ''), ('mis-', 'mis'), ('-sion', 'sion'), ('-s', 's')] PUR19081203-V08-18-page4.txt: [('-Arecent', 'Arecent'), ('sis-', 'sis'), ('-', '')] PUR19081203-V08-18-page5.txt: [('Training-', 'Training'), ('-eenkSe', 'eenkSe')] PUR19081203-V08-18-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--"', '-"'), ('-', '')] PUR19081210-V08-19-page1.txt: [('-', ''), ('-to', 'to'), ('at-', 'at'), ('-', ''), ('-of', 'of'), ('be-', 'be')] PUR19081210-V08-19-page2.txt: [('--', '-'), ('-', ''), ('-United', 'United')] PUR19081210-V08-19-page3.txt: [("'Neil-", "'Neil")] PUR19081210-V08-19-page5.txt: [('-', ''), ('literature-', 'literature')] PUR19081210-V08-19-page6.txt: [('-', '')] PUR19081217-V08-20-page1.txt: [('--', '-'), ('-There', 'There'), ('-Following', 'Following'), ('-', ''), ('-amounting', 'amounting')] PUR19081217-V08-20-page2.txt: [('in-', 'in'), ('-and', 'and'), ('re-', 're'), ('-', ''), ('-instead', 'instead'), ('church-', 'church')] PUR19081217-V08-20-page3.txt: [('field-', 'field'), ('-and', 'and'), ('se-', 'se'), ('-Glendale', 'Glendale'), ('-', ''), ('IOORIV-', 'IOORIV')] PUR19081217-V08-20-page4.txt: [('-When', 'When')] PUR19081217-V08-20-page5.txt: [('-at', 'at'), ('en-', 'en'), ('IAgdrIS-', 'IAgdrIS'), ('-', ''), ('-', '')] PUR19081217-V08-20-page6.txt: [('-', ''), ('-', '')] PUR19081224-V08-21-page1.txt: [('coal-', 'coal'), ("-and'", "and'"), ('-charge', 'charge'), ('Seventh-day-', 'Seventh-day')] PUR19081224-V08-21-page3.txt: [('-', ''), ('-to', 'to'), ('Bus-', 'Bus'), ('-', ''), ('-temple', 'temple'), ('-', ''), ('-visit', 'visit')] PUR19081224-V08-21-page4.txt: [('re-', 're')] PUR19081224-V08-21-page5.txt: [('-', ''), ("'-", "'"), ('-', ''), ('spiritually-', 'spiritually'), ('PACIFIC-', 'PACIFIC'), ('--', '-')] PUR19081224-V08-21-page6.txt: [('-', ''), ('-', ''), ('-der', 'der'), ('-', ''), ('-New', 'New')] PUR19081231-V08-22-page1.txt: [('Wher-', 'Wher'), ('-apparel', 'apparel'), ('-was', 'was'), ('-Upon', 'Upon')] PUR19081231-V08-22-page2.txt: [('-', '')] PUR19081231-V08-22-page3.txt: [('it-', 'it'), ('-', ''), ('-', ''), ('-', ''), ('-whom', 'whom')] PUR19081231-V08-22-page4.txt: [('-', ''), ('PA-', 'PA')] PUR19081231-V08-22-page5.txt: [('-Volunteer', 'Volunteer'), ('South-', 'South'), ('-attendte', 'attendte'), ('-UNION', 'UNION')] PUR19081231-V08-22-page6.txt: [('in-', 'in'), ('-', ''), ('-', '')] PUR19090107-V08-23-page1.txt: [('appoint-', 'appoint'), ('-', '')] PUR19090107-V08-23-page2.txt: [('-Under', 'Under')] PUR19090107-V08-23-page3.txt: [('twenty-', 'twenty')] PUR19090107-V08-23-page4.txt: [('RE-', 'RE')] PUR19090107-V08-23-page5.txt: [('-to', 'to'), ('-it.', 'it.')] PUR19090107-V08-23-page6.txt: [('-', ''), ('-', '')] PUR19090114-V08-24-page1.txt: [('PRO-', 'PRO'), ("-tiof'", "tiof'")] PUR19090114-V08-24-page2.txt: [('CHAM-', 'CHAM'), ('BUILDING-', 'BUILDING'), ('AMEND-', 'AMEND')] PUR19090114-V08-24-page3.txt: [('-sent-trath', 'sent-trath')] PUR19090114-V08-24-page4.txt: [('-', '')] PUR19090114-V08-24-page5.txt: [('--', '-')] PUR19090114-V08-24-page6.txt: [('-', ''), ('-', ''), ('In-', 'In'), ('-', '')] PUR19090121-V08-25-page1.txt: [('-of', 'of'), ('-', ''), ('-', '')] PUR19090121-V08-25-page2.txt: [('-', ''), ('-', '')] PUR19090121-V08-25-page3.txt: [('-', ''), ('ellte-', 'ellte')] PUR19090121-V08-25-page4.txt: [('-we', 'we'), ('Sab-', 'Sab')] PUR19090121-V08-25-page5.txt: [('-', ''), ('-seven', 'seven'), ('and"bless-', 'and"bless')] PUR19090121-V08-25-page6.txt: [('-RECORDER', 'RECORDER'), ('-', ''), ('-', ''), ('-to', 'to')] PUR19090128-V08-26-page1.txt: [('-', ''), ('under-', 'under'), ('-said', 'said'), ('PV-', 'PV'), ('.-', '.'), ('-', ''), ('repentingsj-', 'repentingsj'), ('-', '')] PUR19090128-V08-26-page3.txt: [('-', ''), ('-pi', 'pi'), ('-', ''), ('repub-', 'repub'), ('-Niagara', 'Niagara'), ("'Feb.-", "'Feb."), ('-city', 'city'), ('-There-are', 'There-are'), ('-several', 'several'), ('con-', 'con')] PUR19090128-V08-26-page5.txt: [('-', ''), ('-', ''), ('-more', 'more'), ('-appointed', 'appointed'), ('-', ''), ('-therefore', 'therefore'), ('-firge', 'firge'), ('-that', 'that'), ('-the', 'the'), ('--lours', '-lours'), ('-', ''), ('cheer-', 'cheer'), ('-rid', 'rid'), ('-miles', 'miles'), ('-', ''), ('-the', 'the')] PUR19090128-V08-26-page6.txt: [('"W-e-', '"W-e'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19090204-V08-27-page1.txt: [('-', ''), ('of.-', 'of.'), ('at-', 'at'), ('IOU-', 'IOU'), ('-', ''), ('-I', 'I')] PUR19090204-V08-27-page2.txt: [('-successfully', 'successfully'), ('-be', 'be')] PUR19090204-V08-27-page3.txt: [('-', ''), ('-', ''), ('work.-', 'work.'), ('-faithful', 'faithful'), ('.sub-', '.sub'), ('Di-', 'Di')] PUR19090204-V08-27-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('eho-', 'eho')] PUR19090204-V08-27-page5.txt: [('Sunday-', 'Sunday'), ('-', '')] PUR19090204-V08-27-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-truth', 'truth')] PUR19090211-V08-28-page1.txt: [('anal-', 'anal'), ('Atm-', 'Atm'), ('con-', 'con'), ('Two-', 'Two'), ('-', ''), ('-', ''), ('toogues"-', 'toogues"'), ('re-', 're'), ('-', '')] PUR19090211-V08-28-page2.txt: [('-', '')] PUR19090211-V08-28-page3.txt: [('Tennes-', 'Tennes'), ('visit-', 'visit'), ('-and.', 'and.'), ('-sweet', 'sweet'), ('-', ''), ('-', ''), ('-stipp', 'stipp')] PUR19090211-V08-28-page5.txt: [('"Ob-', '"Ob'), ('-engineer', 'engineer'), ('-"Patriarchs', '"Patriarchs'), ('-ordOr', 'ordOr'), ('-bindings.-', 'bindings.-'), ('-old', 'old'), ('-"Thoughts', '"Thoughts'), ('prospectus--', 'prospectus-'), ('-its', 'its'), ('the-', 'the'), ('those-', 'those'), ('Mexican-', 'Mexican'), ('-', '')] PUR19090211-V08-28-page6.txt: [('-', ''), ('-', ''), ('Sabbath-', 'Sabbath'), ('-', ''), ('WANTED.-', 'WANTED.')] PUR19090218-V08-29-page11.txt: [('com-', 'com')] PUR19090218-V08-29-page12.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090218-V08-29-page2.txt: [('End-', 'End'), ('End-', 'End'), ('-', ''), ('Oak-', 'Oak')] PUR19090218-V08-29-page3.txt: [('-director', 'director'), ('re-', 're'), ('-Mrs.', 'Mrs.')] PUR19090218-V08-29-page5.txt: [('-', '')] PUR19090218-V08-29-page6.txt: [('PA-', 'PA')] PUR19090218-V08-29-page7.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090218-V08-29-page8.txt: [('-', '')] PUR19090218-V08-29-page9.txt: [('achieve-', 'achieve'), ('mem-', 'mem')] PUR19090225-V08-30-page2.txt: [('-', '')] PUR19090225-V08-30-page3.txt: [('-me', 'me'), ('-undoubtedly', 'undoubtedly')] PUR19090225-V08-30-page6.txt: [('-', ''), ('pres-', 'pres')] PUR19090304-V08-31-page1.txt: [('-', '')] PUR19090304-V08-31-page2.txt: [('PACIPI--', 'PACIPI-'), ('UNION-', 'UNION'), ('-', ''), ('-', '')] PUR19090304-V08-31-page3.txt: [('-other', 'other'), ('-the', 'the'), ('-surprise', 'surprise'), ('-with', 'with')] PUR19090304-V08-31-page4.txt: [('-', ''), ('-', ''), ('forty--', 'forty-'), ('mis-', 'mis')] PUR19090304-V08-31-page5.txt: [('-the', 'the'), ('-', ''), ('-', ''), ('-them', 'them'), ('-', '')] PUR19090304-V08-31-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('leg-', 'leg')] PUR19090311-V08-32-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('include-', 'include'), ('--itinerary', '-itinerary'), ('-', ''), ("eonld''Secure'-", "eonld''Secure'"), ('"field-', '"field'), ('-for', 'for'), ('Sandal--', 'Sandal-')] PUR19090311-V08-32-page2.txt: [('-was', 'was'), ('-', ''), ('I-', 'I'), ('-N', 'N'), ('like-', 'like'), ('-in', 'in'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19090311-V08-32-page3.txt: [('tie--', 'tie-'), ('Sab-', 'Sab'), ('--liatit', '-liatit'), ('-', ''), ('-a', 'a')] PUR19090311-V08-32-page4.txt: [('-great', 'great'), ('To-', 'To'), ('-the', 'the'), ('-', ''), ('-integrity', 'integrity'), ('-.G', '.G'), ('-', ''), ('pos-', 'pos'), ('-', ''), ('-yet', 'yet'), ('-', ''), ('-', ''), ('-', ''), ('distribu-', 'distribu'), ('-', ''), ('-', ''), ('del-', 'del'), ('en-', 'en'), ('-friends', 'friends'), ('-and', 'and'), ('-r', 'r'), ('-the', 'the'), ('-of', 'of'), ('members-', 'members'), ('-', ''), ('de-', 'de')] PUR19090311-V08-32-page5.txt: [('Obituary-', 'Obituary'), ('-', ''), ('of-', 'of'), ('ieg-', 'ieg'), ('Sab-', 'Sab')] PUR19090311-V08-32-page6.txt: [('-', ''), ('Is-', 'Is')] PUR19090318-V08-33-page1.txt: [('isnot-', 'isnot'), ('-e', 'e'), ('gT-', 'gT'), ('-', ''), ('-c', 'c')] PUR19090318-V08-33-page3.txt: [('-', ''), ('-headed', 'headed'), ('-offense', 'offense'), ("-preeipiti-ted'", "preeipiti-ted'")] PUR19090318-V08-33-page4.txt: [('hard-', 'hard'), ('TNION-', 'TNION')] PUR19090318-V08-33-page5.txt: [('re-', 're'), ('-Facile', 'Facile'), ('-house', 'house'), ('-hew', 'hew'), ('Bash-', 'Bash')] PUR19090318-V08-33-page6.txt: [('-', ''), ('-', ''), ('-Union', 'Union')] PUR19090325-V08-34-page1.txt: [('de-', 'de'), ('be-', 'be')] PUR19090325-V08-34-page3.txt: [('an-', 'an'), ('moun-', 'moun')] PUR19090325-V08-34-page4.txt: [('Camp-', 'Camp')] PUR19090325-V08-34-page5.txt: [('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090325-V08-34-page6.txt: [('-', ''), ('Training-', 'Training'), ('-', ''), ('in-', 'in')] PUR19090401-V08-35-page1.txt: [('Volun-', 'Volun'), ('-', '')] PUR19090401-V08-35-page5.txt: [("-'need", "'need"), ('regu-', 'regu')] PUR19090401-V08-35-page7.txt: [('-lb.', 'lb.'), ('-', ''), ('-lb.', 'lb.'), ('-', ''), ('-', ''), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-', ''), ('-lb', 'lb')] PUR19090401-V08-35-page8.txt: [('PACIFIC-', 'PACIFIC'), ('-', ''), ('se-', 'se'), ('Training-', 'Training')] PUR19090408-V08-36-page1.txt: [('---', '--'), ('al-', 'al'), ('-ready', 'ready'), ('-', '')] PUR19090408-V08-36-page3.txt: [('pro-', 'pro'), ('oc-', 'oc')] PUR19090408-V08-36-page4.txt: [('gov-', 'gov'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19090408-V08-36-page5.txt: [('-', ''), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090408-V08-36-page6.txt: [('-', ''), ('-', ''), ('-us', 'us')] PUR19090415-V08-37-page3.txt: [('-', ''), ('fam-', 'fam'), ('su-', 'su')] PUR19090415-V08-37-page4.txt: [('dis-', 'dis')] PUR19090415-V08-37-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-Upon', 'Upon')] PUR19090415-V08-37-page6.txt: [('-', ''), ('-', '')] PUR19090422-V08-38-page1.txt: [('-', ''), ('-', '')] PUR19090422-V08-38-page4.txt: [('-being', 'being')] PUR19090422-V08-38-page5.txt: [('-', ''), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090422-V08-38-page6.txt: [('-', ''), ('-', '')] PUR19090429-V08-39-page1.txt: [('-', ''), ('-', ''), ('in-', 'in')] PUR19090429-V08-39-page2.txt: [('--', '-'), ('highlyex-', 'highlyex')] PUR19090429-V08-39-page5.txt: [('de-', 'de'), ('-lb.', 'lb.'), ('-', ''), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090429-V08-39-page6.txt: [('-', ''), ('-', ''), ('-charge', 'charge')] PUR19090506-V08-40-page1.txt: [('-Very', 'Very')] PUR19090506-V08-40-page2.txt: [('-', '')] PUR19090506-V08-40-page3.txt: [('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon')] PUR19090506-V08-40-page4.txt: [('-', ''), ('-', '')] PUR19090513-V08-41-page4.txt: [('souls.-', 'souls.')] PUR19090513-V08-41-page5.txt: [('e.-', 'e.'), ('-lb.', 'lb.'), ('-', ''), ('-lb.', 'lb.'), ('-', ''), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('.Sale.--', '.Sale.-'), ('aged-', 'aged'), ('char-', 'char')] PUR19090513-V08-41-page6.txt: [('-', '')] PUR19090520-V08-42-page2.txt: [('RE-', 'RE')] PUR19090520-V08-42-page3.txt: [('-', ''), ('eve-', 'eve'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-I', 'I')] PUR19090520-V08-42-page4.txt: [('pre-', 'pre')] PUR19090520-V08-42-page6.txt: [('-', ''), ('-', '')] PUR19090527-V08-43-page1.txt: [('An-', 'An')] PUR19090527-V08-43-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090527-V08-43-page3.txt: [('-United', 'United'), ('photog-', 'photog'), ('scat-', 'scat'), ('-eyed', 'eyed')] PUR19090527-V08-43-page4.txt: [('-', ''), ('-', '')] PUR19090527-V08-43-page5.txt: [('-Press', 'Press'), ('-One', 'One')] PUR19090527-V08-43-page6.txt: [('-', ''), ('-the', 'the'), ('Sunday-', 'Sunday'), ('-.', '.'), ('-lb.', 'lb.'), ('-', ''), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090603-V08-44-page2.txt: [('al-', 'al'), ('-meetings', 'meetings')] PUR19090603-V08-44-page3.txt: [('-.tucly', '.tucly')] PUR19090603-V08-44-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-', ''), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('mes-', 'mes')] PUR19090603-V08-44-page6.txt: [('-', '')] PUR19090610-V08-45-page1.txt: [('Methodist-', 'Methodist')] PUR19090610-V08-45-page2.txt: [('-When', 'When')] PUR19090610-V08-45-page3.txt: [('--', '-'), ('------------------------', '-----------------------')] PUR19090610-V08-45-page4.txt: [('-a', 'a')] PUR19090610-V08-45-page5.txt: [('at-', 'at'), ('instruc-', 'instruc'), ('-', ''), ('-on', 'on')] PUR19090610-V08-45-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('sew-', 'sew'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb.', 'lb.'), ('-lb', 'lb'), ('-lb', 'lb'), ('-gallon', 'gallon'), ('-lb.', 'lb.'), ('-lb', 'lb')] PUR19090617-V08-46-page1.txt: [('di-', 'di'), ('-', ''), ('-', '')] PUR19090617-V08-46-page3.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090617-V08-46-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('E-', 'E'), ('-', ''), ('-', ''), ('-', '')] PUR19090617-V08-46-page6.txt: [('-', ''), ('-.', '.'), ('-', '')] PUR19090624-V08-47-page1.txt: [('-this', 'this'), ('-what', 'what')] PUR19090624-V08-47-page2.txt: [('at-', 'at')] PUR19090624-V08-47-page3.txt: [('regu-', 'regu')] PUR19090624-V08-47-page4.txt: [('-----', '----')] PUR19090624-V08-47-page5.txt: [('-', '')] PUR19090624-V08-47-page6.txt: [('-', ''), ('-', ''), ('-the', 'the'), ('-spend', 'spend'), ('-ia', 'ia')] PUR19090701-V08-48-page1.txt: [('--', '-')] PUR19090701-V08-48-page2.txt: [('-a', 'a')] PUR19090701-V08-48-page3.txt: [('--', '-'), ('edu-', 'edu'), ('-', ''), ('p-', 'p'), ('pre-', 'pre')] PUR19090701-V08-48-page4.txt: [('-', '')] PUR19090701-V08-48-page5.txt: [('-see', 'see'), ('-Up', 'Up'), ('.-', '.'), ('-', ''), ('the-', 'the')] PUR19090701-V08-48-page6.txt: [('-', ''), ('Sale.--', 'Sale.-')] PUR19090708-V08-49-page3.txt: [('-very', 'very'), ('-Roy', 'Roy'), ('-water', 'water')] PUR19090708-V08-49-page4.txt: [('ad-', 'ad'), ('been-', 'been')] PUR19090708-V08-49-page5.txt: [('-', ''), ('-', '')] PUR19090708-V08-49-page6.txt: [('-A', 'A'), ('-Arizona', 'Arizona'), ('i--', 'i-'), ('-', ''), ('-', '')] PUR19090715-V08-50-page1.txt: [('exhort-', 'exhort'), ('Alaska-', 'Alaska'), ('nu-', 'nu')] PUR19090715-V08-50-page2.txt: [('Alaska-Yukon-', 'Alaska-Yukon'), ('com-', 'com')] PUR19090715-V08-50-page5.txt: [('-Many', 'Many'), ('capital-', 'capital'), ('-', '')] PUR19090715-V08-50-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-the', 'the'), ('-were', 'were'), ('-Washington', 'Washington'), ('-of', 'of'), ('-about', 'about')] PUR19090722-V08-51-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090722-V08-51-page3.txt: [('-', ''), ('.-', '.'), ('---', '--'), ('-spiritual', 'spiritual'), ('-could', 'could')] PUR19090722-V08-51-page4.txt: [('-unfailing', 'unfailing'), ('the-', 'the'), ('oc-', 'oc')] PUR19090722-V08-51-page5.txt: [('-', '')] PUR19090722-V08-51-page6.txt: [('-', ''), ('-', ''), ('Camp-', 'Camp'), ('Cali-', 'Cali')] PUR19090729-V08-52-page1.txt: [('-', '')] PUR19090729-V08-52-page3.txt: [('Ctn.-', 'Ctn.'), ('-very', 'very'), ('-', ''), ('-will', 'will'), ('lee-', 'lee'), ('-fares', 'fares'), ('F.-', 'F.')] PUR19090729-V08-52-page4.txt: [('-', '')] PUR19090729-V08-52-page5.txt: [('Camp-', 'Camp'), ('-', '')] PUR19090729-V08-52-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('WANTED.-', 'WANTED.'), ('-Good', 'Good'), ('-of', 'of'), ("-EGOJUDER'.", "EGOJUDER'.")] PUR19090805-V09-01-page1.txt: [('stand-', 'stand')] PUR19090805-V09-01-page3.txt: [('-', ''), ('-', ''), ('-one', 'one')] PUR19090805-V09-01-page5.txt: [('"-', '"')] PUR19090805-V09-01-page6.txt: [('-', ''), ('-', ''), ('WANTED.-', 'WANTED.'), ('-', ''), ('-up', 'up')] PUR19090812-V09-02-page3.txt: [('--', '-')] PUR19090812-V09-02-page4.txt: [('services.-', 'services.')] PUR19090812-V09-02-page5.txt: [('-', ''), ('Sta-', 'Sta'), ('-', '')] PUR19090812-V09-02-page6.txt: [('-', ''), ('-', ''), ('Sec-', 'Sec')] PUR19090819-V09-03-page1.txt: [('-overcoat.', 'overcoat.'), ('scat-', 'scat'), ('-good-cheer-', 'good-cheer-'), ('-after', 'after'), ('-to', 'to'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-f.th-e', 'f.th-e'), ('-to', 'to'), ("-'WOmmandments", "'WOmmandments"), ('-', '')] PUR19090819-V09-03-page2.txt: [('AGRI-', 'AGRI'), ('-We', 'We')] PUR19090819-V09-03-page3.txt: [('Coil-', 'Coil'), ('-reeently', 'reeently'), ('-ther', 'ther'), ("-H.'", "H.'"), ('L-', 'L')] PUR19090819-V09-03-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-As', 'As')] PUR19090826-V09-04-page1.txt: [('-', ''), ('-condition', 'condition'), ('oi--', 'oi-'), ('-', ''), ('-deisek', 'deisek'), ('tiag-', 'tiag'), ('-', ''), ('-', ''), ('carry--', 'carry-'), ('--was', '-was'), ('demandfrom-', 'demandfrom'), ("wOrld-'-", "wOrld-'"), ('-of', 'of'), ('-.Thatthe', '.Thatthe'), ("-begia-'", "begia-'"), ('M.-', 'M.')] PUR19090826-V09-04-page2.txt: [('-', ''), ('-', ''), ('-twenty', 'twenty')] PUR19090826-V09-04-page3.txt: [('one-', 'one'), ('-', ''), ("-several'", "several'"), ('-sec-', 'sec-'), ('-capita', 'capita'), ('-', ''), ('--', '-'), ('-...', '...'), ('-ond', 'ond'), ('-', ''), ('faith-', 'faith'), ('-', ''), ('ef-', 'ef'), ('for-', 'for')] PUR19090826-V09-04-page4.txt: [('-', '')] PUR19090826-V09-04-page5.txt: [('-faithful', 'faithful'), ('-', ''), ('re-', 're'), ('Therefore-', 'Therefore'), ('-', ''), ('-ef', 'ef'), ('-fested', 'fested'), ('route-', 'route'), ('befote-', 'befote')] PUR19090826-V09-04-page6.txt: [('-', ''), ('-to', 'to'), ('-our', 'our')] PUR19090826-V09-04-page7.txt: [('con-', 'con'), ('-cert', 'cert')] PUR19090826-V09-04-page8.txt: [('-', ''), ('-', ''), ('season-', 'season'), ('Con-', 'Con')] PUR19090902-V09-05-page3.txt: [('-for', 'for'), ('-', '')] PUR19090902-V09-05-page4.txt: [('-', ''), ('WANTED.--', 'WANTED.-'), ('-', '')] PUR19090902-V09-05-page5.txt: [('ad-', 'ad')] PUR19090902-V09-05-page6.txt: [('-', ''), ('-', ''), ('liq-', 'liq')] PUR19090909-V09-06-page5.txt: [('re-', 're')] PUR19090909-V09-06-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19090916-V09-07-page1.txt: [('-', ''), ('-which', 'which'), ('-has.\'"', 'has.\'"'), ('-was', 'was')] PUR19090916-V09-07-page2.txt: [('-', ''), ('town-', 'town'), ('-campaign-', 'campaign-'), ('-units', 'units'), ('-feeling', 'feeling')] PUR19090916-V09-07-page3.txt: [('-the', 'the'), ('pros-', 'pros'), ('See-', 'See'), ('work-', 'work'), ('-wire-Cais', 'wire-Cais'), ('-', '')] PUR19090916-V09-07-page4.txt: [('-', ''), ('WANTED.-', 'WANTED.'), ('WANTED.-', 'WANTED.'), ('-', '')] PUR19090923-V09-08-page1.txt: [('-', '')] PUR19090923-V09-08-page2.txt: [('Present-', 'Present')] PUR19090923-V09-08-page3.txt: [('-a', 'a')] PUR19090923-V09-08-page4.txt: [('-in', 'in')] PUR19090923-V09-08-page5.txt: [('-', '')] PUR19090923-V09-08-page6.txt: [('-', ''), ('WANTED.-', 'WANTED.')] PUR19090930-V09-09-page1.txt: [('-', ''), ('-', ''), ('-six', 'six'), ('will-', 'will'), ('-', '')] PUR19090930-V09-09-page2.txt: [('-', ''), ('WANTED.-', 'WANTED.')] PUR19090930-V09-09-page3.txt: [('con-', 'con')] PUR19090930-V09-09-page5.txt: [('-room', 'room'), ('fif-', 'fif'), ('se-', 'se')] PUR19090930-V09-09-page6.txt: [('-', ''), ('-', ''), ('WANTED.-', 'WANTED.')] PUR19091007-V09-10-page1.txt: [('--all', '-all'), ('-bitildings', 'bitildings'), ("-lia.Ve'Sufffeient", "lia.Ve'Sufffeient"), ('fol-', 'fol'), ('-expeetation', 'expeetation'), ('ttreti-', 'ttreti')] PUR19091007-V09-10-page10.txt: [('com-', 'com'), ('-', ''), ('-means', 'means'), ('extraordinary-', 'extraordinary'), ('-', ''), ('-', '')] PUR19091007-V09-10-page11.txt: [('-of', 'of'), ('to-', 'to'), ('People-', 'People'), ('to-', 'to'), ('-Early', 'Early')] PUR19091007-V09-10-page12.txt: [('-', ''), ('-', ''), ('Sabbath-', 'Sabbath')] PUR19091007-V09-10-page2.txt: [('ex-', 'ex')] PUR19091007-V09-10-page3.txt: [('old-', 'old')] PUR19091007-V09-10-page5.txt: [('-done', 'done')] PUR19091007-V09-10-page6.txt: [('-in', 'in'), ('-heard', 'heard')] PUR19091007-V09-10-page7.txt: [('Bath-', 'Bath')] PUR19091007-V09-10-page9.txt: [('praeti--', 'praeti-'), ('TJnlim-', 'TJnlim')] PUR19091014-V09-11-page1.txt: [('propletie-', 'propletie'), ('ut-', 'ut'), ('---', '--')] PUR19091014-V09-11-page2.txt: [('-deciding', 'deciding')] PUR19091014-V09-11-page3.txt: [('bap-', 'bap'), ('-', ''), ('etary-', 'etary'), ('Training-', 'Training'), ('-', '')] PUR19091014-V09-11-page4.txt: [('calcu-', 'calcu'), ('-i', 'i')] PUR19091014-V09-11-page5.txt: [('message-', 'message'), ('-fewInOle', 'fewInOle'), ("'coopera-", "'coopera"), ('act--', 'act-'), ('alter-', 'alter'), ('de..-', 'de..')] PUR19091014-V09-11-page6.txt: [('-', ''), ('-', ''), ('un-', 'un'), ('-der', 'der'), ('-the', 'the'), ('-of', 'of'), ('-in', 'in'), ('-side', 'side')] PUR19091021-V09-12-page1.txt: [('-the', 'the'), ('Col-', 'Col')] PUR19091021-V09-12-page2.txt: [('con-', 'con')] PUR19091021-V09-12-page3.txt: [('-', ''), ('the-', 'the')] PUR19091021-V09-12-page4.txt: [('regu-', 'regu'), ('-', '')] PUR19091021-V09-12-page5.txt: [('in--', 'in-')] PUR19091021-V09-12-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19091028-V09-13-page1.txt: [('-', ''), ('-Who', 'Who'), ('-', ''), ('-', ''), ('-', ''), ("Baul-'swere's-", "Baul-'swere's"), ('-to', 'to'), ('-', ''), ("-sins'", "sins'"), ('-', ''), ('spend-', 'spend'), ('-', ''), ('neighbor-', 'neighbor')] PUR19091028-V09-13-page2.txt: [('-not', 'not'), ('--', '-')] PUR19091028-V09-13-page3.txt: [('-the', 'the'), ('-Understood', 'Understood'), ('-work.', 'work.'), ('-to-Ccod.', 'to-Ccod.'), ('-Babbath', 'Babbath')] PUR19091028-V09-13-page4.txt: [('-', ''), ('--', '-'), ('-', ''), ('-', '')] PUR19091104-V09-14-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19091104-V09-14-page3.txt: [('-Union.', 'Union.'), ('-', ''), ('Mis-', 'Mis')] PUR19091104-V09-14-page4.txt: [("''-", "''"), ('-', '')] PUR19091104-V09-14-page5.txt: [('de-', 'de'), ('man-', 'man'), ('ex-', 'ex')] PUR19091104-V09-14-page6.txt: [('-', '')] PUR19091111-V09-15-page1.txt: [('-first', 'first'), ('-', '')] PUR19091111-V09-15-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19091111-V09-15-page5.txt: [('Les-', 'Les')] PUR19091111-V09-15-page6.txt: [('-', '')] PUR19091118-V09-16-page1.txt: [('-', '')] PUR19091118-V09-16-page2.txt: [('-fire', 'fire')] PUR19091118-V09-16-page4.txt: [('-New', 'New')] PUR19091118-V09-16-page5.txt: [('-Colcord', 'Colcord')] PUR19091118-V09-16-page6.txt: [('-', '')] PUR19091125-V09-17-page1.txt: [('-', ''), ('-er-', 'er-'), ('haYC.-', 'haYC.'), ('-ineetingl', 'ineetingl'), ('evening--', 'evening-'), ('-were.', 'were.'), ('e--', 'e-'), ('connection-', 'connection'), ('-.', '.')] PUR19091125-V09-17-page2.txt: [('-by', 'by'), ('-eX-', 'eX-'), ('-PressionS', 'PressionS'), ('-careful', 'careful'), ('-give', 'give'), ('-suggested', 'suggested'), ("'any.-", "'any."), ('-the', 'the'), ('-question', 'question'), ('-we', 'we'), ('-', ''), ('-sacred', 'sacred'), ('-', ''), ('-', ''), ('down.-', 'down.'), ('-', ''), ('enact-', 'enact')] PUR19091125-V09-17-page3.txt: [('-may', 'may'), ('-flake', 'flake'), ('-r', 'r'), ('-the', 'the'), ('-', ''), ('Mission-', 'Mission'), ('-with', 'with')] PUR19091125-V09-17-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Two', 'Two')] PUR19091125-V09-17-page5.txt: [('ac-', 'ac'), ('-', ''), ('-all', 'all')] PUR19091125-V09-17-page6.txt: [('-', ''), ('-', '')] PUR19091202-V09-18-page1.txt: [('-', '')] PUR19091202-V09-18-page2.txt: [('possible.-', 'possible.')] PUR19091202-V09-18-page3.txt: [('periodic-', 'periodic'), ('testa-', 'testa')] PUR19091202-V09-18-page4.txt: [('-----', '----'), ('stu-', 'stu')] PUR19091202-V09-18-page5.txt: [('-of', 'of'), ('-Christmas', 'Christmas'), ("-December'", "December'"), ('-or', 'or'), ('-', '')] PUR19091202-V09-18-page6.txt: [('-', '')] PUR19091209-V09-19-page1.txt: [('swim-', 'swim'), ('"iii-', '"iii'), ('-', ''), ('to-', 'to')] PUR19091209-V09-19-page2.txt: [('twenty-', 'twenty'), ('-', ''), ('-', '')] PUR19091209-V09-19-page3.txt: [('-from', 'from'), ('V-', 'V'), ('-', ''), ('-', ''), ('-RI', 'RI')] PUR19091209-V09-19-page4.txt: [('-', '')] PUR19091209-V09-19-page5.txt: [('Hayes.-', 'Hayes.'), ('-enteredit', 'enteredit'), ('Goci-', 'Goci'), ('A-', 'A'), ('--Gernian', '-Gernian'), ('-', ''), ('-at', 'at')] PUR19091209-V09-19-page6.txt: [('-', ''), ('-', '')] PUR19091216-V09-20-page1.txt: [('take.-', 'take.')] PUR19091216-V09-20-page2.txt: [('-Jewish', 'Jewish'), ('lit-', 'lit'), ('-', ''), ('-', '')] PUR19091216-V09-20-page4.txt: [('-', ''), ('-', ''), ('con-', 'con')] PUR19091216-V09-20-page5.txt: [('-ducted', 'ducted'), ('-we', 'we'), ('-United', 'United'), ('-', '')] PUR19091216-V09-20-page6.txt: [('-', ''), ('-', ''), ('re-', 're')] PUR19091223-V09-21-page2.txt: [('-', ''), ('-do', 'do'), ('-We', 'We'), ('-', '')] PUR19091223-V09-21-page3.txt: [('-the', 'the'), ('Mc-', 'Mc')] PUR19091223-V09-21-page5.txt: [('-is', 'is'), ('sac-', 'sac'), ('-xifiee.', 'xifiee.')] PUR19091223-V09-21-page6.txt: [('-', ''), ('-work', 'work'), ('them-', 'them'), ('UNION-', 'UNION')] PUR19091230-V09-22-page1.txt: [('school-', 'school'), ('-me', 'me')] PUR19091230-V09-22-page2.txt: [('-', ''), ('Testi-', 'Testi'), ('-Vallejo', 'Vallejo'), ('-Wonderful', 'Wonderful'), ('se-', 'se')] PUR19091230-V09-22-page3.txt: [('-', '')] PUR19091230-V09-22-page5.txt: [('exceptionally-', 'exceptionally'), ('ef-', 'ef'), ('-he', 'he')] PUR19091230-V09-22-page6.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('-be', 'be')] PUR19100106-V09-23-page1.txt: [('-e', 'e'), ('-it', 'it'), ('and-', 'and'), ('-whothe', 'whothe')] PUR19100106-V09-23-page2.txt: [('pre-', 'pre'), ('-', ''), ('-with', 'with')] PUR19100106-V09-23-page3.txt: [('-itcomes', 'itcomes'), ('-', ''), ('--sib.', '-sib.'), ('-..', '..'), ("'divine-author-", "'divine-author"), ('-', '')] PUR19100106-V09-23-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19100113-V09-24-page3.txt: [('-session', 'session'), ('MCCLURE.-', 'MCCLURE.'), ('Mc-', 'Mc')] PUR19100113-V09-24-page4.txt: [('-', ''), ('-', '')] PUR19100120-V09-25-page1.txt: [('---', '--'), ('-', ''), ('-', ''), ('-put', 'put'), ('per-', 'per')] PUR19100120-V09-25-page2.txt: [('in-', 'in'), ('them.-', 'them.')] PUR19100120-V09-25-page3.txt: [('-er', 'er'), ('KANE.-', 'KANE.'), ('im-', 'im')] PUR19100120-V09-25-page4.txt: [('-', ''), ('-', ''), ('-room', 'room'), ('-', ''), ('-so', 'so')] PUR19100127-V09-26-page2.txt: [('-UNION', 'UNION')] PUR19100127-V09-26-page3.txt: [('at-', 'at'), ('-City', 'City'), ('asfol-', 'asfol'), ('-mot.sokiety', 'mot.sokiety'), ('-work', 'work')] PUR19100127-V09-26-page4.txt: [('-and', 'and')] PUR19100127-V09-26-page5.txt: [('-page', 'page'), ('-try', 'try')] PUR19100127-V09-26-page6.txt: [('-', '')] PUR19100127-V09-26-page7.txt: [('-', ''), ('-', ''), ('RECORDER-', 'RECORDER')] PUR19100127-V09-26-page8.txt: [('Cot-', 'Cot'), ('February-', 'February'), ('SALE.-', 'SALE.'), ('-room', 'room'), ('-', ''), ('-', '')] PUR19100203-V09-27-page1.txt: [('-', '')] PUR19100203-V09-27-page10.txt: [('know-', 'know'), ('ELDER-', 'ELDER')] PUR19100203-V09-27-page11.txt: [('longer.-', 'longer.')] PUR19100203-V09-27-page12.txt: [('night--', 'night-')] PUR19100203-V09-27-page13.txt: [('word--', 'word-'), ('-word', 'word'), ('-of', 'of')] PUR19100203-V09-27-page14.txt: [('PACIFIC-', 'PACIFIC'), ('prophecy-', 'prophecy'), ('in--', 'in-'), ('-', '')] PUR19100203-V09-27-page15.txt: [('Ai-', 'Ai'), ('-dismission', 'dismission')] PUR19100203-V09-27-page16.txt: [('-', ''), ('SALE.-', 'SALE.'), ('-room', 'room')] PUR19100203-V09-27-page2.txt: [('UNION-', 'UNION'), ('-', ''), ('-yids-', 'yids-'), ('-warning', 'warning'), ('-', ''), ('medical-', 'medical'), ('-', '')] PUR19100203-V09-27-page3.txt: [('-', ''), ('un-', 'un'), ('.-', '.'), ('DENOMINA-', 'DENOMINA'), ('WO-', 'WO')] PUR19100203-V09-27-page4.txt: [('-', '')] PUR19100203-V09-27-page5.txt: [('de-', 'de'), ('-each', 'each')] PUR19100203-V09-27-page6.txt: [('Redlands-', 'Redlands')] PUR19100203-V09-27-page7.txt: [('De-', 'De'), ('W-', 'W'), ('-', '')] PUR19100203-V09-27-page9.txt: [('--', '-')] PUR19100210-V09-28-page1.txt: [('finan-', 'finan')] PUR19100210-V09-28-page10.txt: [('-', ''), ('.-', '.'), ('-', '')] PUR19100210-V09-28-page11.txt: [('-', ''), ('-At', 'At'), ('-', ''), ('l-T-', 'l-T'), ('-r', 'r'), ('-', ''), ('-', ''), ('suit-', 'suit'), ('-able', 'able'), ('--removals.', '-removals.'), ('au-', 'au')] PUR19100210-V09-28-page13.txt: [('-AtivIttrkrblit', 'AtivIttrkrblit'), ('-AmetrtiAli', 'AmetrtiAli'), ('-', '')] PUR19100210-V09-28-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Pa-', 'Pa')] PUR19100210-V09-28-page15.txt: [("-UNTO'S", "UNTO'S"), ('require-', 'require')] PUR19100210-V09-28-page16.txt: [('-', ''), ('-', ''), ('-', '')] PUR19100210-V09-28-page2.txt: [('-', '')] PUR19100210-V09-28-page3.txt: [('-', ''), ('-', '')] PUR19100210-V09-28-page4.txt: [('Text-', 'Text'), ('RE-', 'RE'), ('Les-', 'Les'), ('Ex-', 'Ex'), ('RE-', 'RE')] PUR19100210-V09-28-page7.txt: [('-dollars.', 'dollars.')] PUR19100210-V09-28-page8.txt: [('Healds-', 'Healds')] PUR19100210-V09-28-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19100217-V09-29-page1.txt: [('of"-', 'of"')] PUR19100217-V09-29-page10.txt: [('-pray', 'pray')] PUR19100217-V09-29-page11.txt: [('Danish-', 'Danish'), ('Wood-', 'Wood')] PUR19100217-V09-29-page12.txt: [('-', ''), ('-', ''), ('--', '-')] PUR19100217-V09-29-page2.txt: [('-symmetrical', 'symmetrical'), ('-', ''), ('eon-', 'eon')] PUR19100217-V09-29-page3.txt: [('-', ''), ('re-', 're')] PUR19100217-V09-29-page4.txt: [('-', '')] PUR19100217-V09-29-page5.txt: [('-', '')] PUR19100217-V09-29-page6.txt: [('-', '')] PUR19100217-V09-29-page7.txt: [('--', '-')] PUR19100217-V09-29-page9.txt: [('-ill', 'ill')] PUR19100224-V09-30-page1.txt: [('-...', '...'), ('-Gardier', 'Gardier'), ('-Coming-', 'Coming-'), ('mein-', 'mein'), ('-', ''), ('wet-', 'wet'), ('-', ''), ('-', ''), ("-'", "'"), ('-', ''), ('-', ''), ('-', '')] PUR19100224-V09-30-page10.txt: [('-', ''), ('-', ''), ('oa-D-Eat-', 'oa-D-Eat'), ('-', ''), ('memft-', 'memft'), ('circu-', 'circu'), ('-', ''), ('-', '')] PUR19100224-V09-30-page11.txt: [('place.-', 'place.'), ('-whereby', 'whereby'), ('-', ''), ('ow-', 'ow'), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('thoughtless-', 'thoughtless'), ('blew-', 'blew')] PUR19100224-V09-30-page12.txt: [('-EDITOR.', 'EDITOR.'), ('Con-', 'Con'), ('-', ''), ('-', '')] PUR19100224-V09-30-page13.txt: [('-', ''), ('-', ''), ('the-', 'the'), ('-Visits', 'Visits'), ('-', ''), ('no-', 'no'), ('-and.', 'and.'), ('-', '')] PUR19100224-V09-30-page14.txt: [('-Want', 'Want')] PUR19100224-V09-30-page15.txt: [('-', ''), ('-to', 'to'), ('-', '')] PUR19100224-V09-30-page16.txt: [('-', ''), ('-', ''), ('our-', 'our')] PUR19100224-V09-30-page2.txt: [('-', ''), ('-', ''), ('January-', 'January')] PUR19100224-V09-30-page3.txt: [('-', ''), ('-', ''), ('lead-', 'lead'), ('-', '')] PUR19100224-V09-30-page4.txt: [('-', ''), ('P-A-', 'P-A'), ('-IF', 'IF'), ('-', ''), ('-N', 'N'), ('R-E-', 'R-E'), ('-its', 'its'), ('-', '')] PUR19100224-V09-30-page5.txt: [('RE-', 'RE'), ('-attend', 'attend'), ('-tnis', 'tnis')] PUR19100224-V09-30-page6.txt: [('-', '')] PUR19100224-V09-30-page7.txt: [('-and', 'and'), ('-', ''), ('-', ''), ('-', '')] PUR19100224-V09-30-page8.txt: [('-I', 'I'), ('-', ''), ('ability-', 'ability')] PUR19100224-V09-30-page9.txt: [('UNION-', 'UNION'), ('-"', '"'), ('-interested', 'interested'), ('-yet', 'yet'), ('confer-', 'confer'), ('re-', 're')] PUR19100303-V09-31-page3.txt: [('RE-', 'RE')] PUR19100303-V09-31-page5.txt: [('BEEBE.-', 'BEEBE.'), ('KEITHLY.-', 'KEITHLY.')] PUR19100310-V09-32-page3.txt: [('-wherefore', 'wherefore')] PUR19100310-V09-32-page4.txt: [('in-', 'in')] PUR19100310-V09-32-page6.txt: [('accommo-', 'accommo'), ('grad-', 'grad'), ('-', ''), ('-', ''), ('-', '')] PUR19100317-V09-33-page2.txt: [('PACIFIC-', 'PACIFIC')] PUR19100317-V09-33-page4.txt: [('Day-', 'Day')] PUR19100317-V09-33-page6.txt: [('-', ''), ('-', '')] PUR19100324-V09-34-page1.txt: [('Sani-', 'Sani'), ('-innared-iiiore', 'innared-iiiore'), ('-I.', 'I.'), ('sso-', 'sso'), ('appreeia-', 'appreeia'), ('-', ''), ('itete-', 'itete'), ('-', ''), ('the-', 'the'), ('-', '')] PUR19100324-V09-34-page2.txt: [('-', ''), ('California-', 'California'), ('Vliscellaneo-', 'Vliscellaneo'), ('depart-', 'depart'), ('-', ''), ('se-', 'se'), ('--Curing', '-Curing')] PUR19100324-V09-34-page3.txt: [('-their', 'their'), ("'sold-", "'sold"), ('-', ''), ('-', ''), ('-presented', 'presented'), ('-', ''), ('-.', '.')] PUR19100324-V09-34-page4.txt: [('Chin-', 'Chin'), ('-Francisco', 'Francisco'), ('Sev-', 'Sev')] PUR19100324-V09-34-page5.txt: [('-.', '.'), ("-'I", "'I"), ('-much', 'much'), ('re-', 're'), ('-good', 'good'), ('mvo-', 'mvo'), ('-', ''), ('t-', 't')] PUR19100324-V09-34-page6.txt: [('-We', 'We'), ('"-', '"'), ('cdmmu-', 'cdmmu')] PUR19100324-V09-34-page7.txt: [('W.-', 'W.'), ('August-', 'August')] PUR19100324-V09-34-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-to', 'to'), ('-a', 'a'), ('-n', 'n')] PUR19100331-V09-35-page1.txt: [('ya-', 'ya'), ('-NY.QT', 'NY.QT'), ('that-', 'that'), ('-fer', 'fer'), ('-our', 'our'), ('-are', 'are')] PUR19100331-V09-35-page10.txt: [('-', ''), ('C-', 'C'), ('-', ''), ('-I-C-', 'I-C-'), ('con-', 'con')] PUR19100331-V09-35-page11.txt: [('Oak-', 'Oak'), ('Cali-', 'Cali'), ('there.-', 'there.'), ('elistribu-', 'elistribu'), ('-Moler', 'Moler'), ('-writes', 'writes'), ('con-', 'con'), ('-', ''), ('-', ''), ('-been', 'been'), ('-Eresumelsorsiva', 'Eresumelsorsiva'), ('-', ''), ('-', ''), ('-', '')] PUR19100331-V09-35-page12.txt: [('-', '')] PUR19100331-V09-35-page2.txt: [('na-', 'na'), ('-Eons', 'Eons'), ('-we', 'we'), ('-', ''), ('point.-', 'point.'), ('-They', 'They'), ('-industrial', 'industrial'), ('-have', 'have')] PUR19100331-V09-35-page3.txt: [('-iii', 'iii'), ('-', ''), ('-when', 'when')] PUR19100331-V09-35-page5.txt: [('organ-', 'organ'), ('con-', 'con'), ('-over', 'over')] PUR19100331-V09-35-page6.txt: [('-Irwin', 'Irwin')] PUR19100331-V09-35-page7.txt: [('-few', 'few'), ('-Se', 'Se'), ('-oftalking', 'oftalking')] PUR19100331-V09-35-page8.txt: [('-P', 'P'), ('-', ''), ('-as', 'as')] PUR19100331-V09-35-page9.txt: [('-', ''), ("'C.-", "'C."), ('third-', 'third'), ('-.', '.'), ('Marvin-', 'Marvin'), ('having-', 'having'), ('-very', 'very'), ('-', ''), ('-has', 'has')] PUR19100407-V09-36-page1.txt: [('prov-', 'prov'), ('dis-', 'dis')] PUR19100407-V09-36-page10.txt: [('"Self-', '"Self'), ('EVE-', 'EVE'), ('were-', 'were')] PUR19100407-V09-36-page11.txt: [('-to', 'to'), ('wllat-', 'wllat'), ('-large', 'large')] PUR19100407-V09-36-page12.txt: [('--', '-')] PUR19100407-V09-36-page13.txt: [('-been"-published', 'been"-published')] PUR19100407-V09-36-page15.txt: [('inter-', 'inter'), ('-Man', 'Man')] PUR19100407-V09-36-page16.txt: [('-', ''), ('-', ''), ('-cent', 'cent')] PUR19100407-V09-36-page2.txt: [('-was', 'was'), ('Wells-', 'Wells')] PUR19100407-V09-36-page3.txt: [('calami-', 'calami'), ('-', '')] PUR19100407-V09-36-page5.txt: [('what-', 'what'), ('H-', 'H'), ('id-', 'id')] PUR19100407-V09-36-page6.txt: [('-rift', 'rift'), ('-', ''), ('-R-D-ER', 'R-D-ER')] PUR19100407-V09-36-page7.txt: [('-has', 'has'), ('-ItD', 'ItD'), ('inti-', 'inti')] PUR19100407-V09-36-page9.txt: [('re-', 're'), ('de-', 'de')] PUR19100414-V09-37-page1.txt: [('-', ''), ('-', '')] PUR19100414-V09-37-page2.txt: [('-on', 'on')] PUR19100414-V09-37-page5.txt: [('Cali-', 'Cali')] PUR19100414-V09-37-page6.txt: [('-', ''), ('THURSDAY-', 'THURSDAY')] PUR19100421-V09-38-page1.txt: [('-."', '."')] PUR19100421-V09-38-page2.txt: [('Master-', 'Master')] PUR19100421-V09-38-page3.txt: [('-ar', 'ar')] PUR19100421-V09-38-page5.txt: [('--.--', '-.--'), ('services-', 'services')] PUR19100428-V09-39-page1.txt: [('-', '')] PUR19100428-V09-39-page2.txt: [('UNION-', 'UNION'), ('sus-', 'sus'), ('testi-', 'testi'), ('poison-', 'poison'), ('eve-', 'eve'), ('car-', 'car')] PUR19100428-V09-39-page3.txt: [('pa-', 'pa')] PUR19100428-V09-39-page4.txt: [('con-', 'con')] PUR19100428-V09-39-page5.txt: [('-message', 'message'), ('instruc-', 'instruc')] PUR19100428-V09-39-page6.txt: [('take-', 'take')] PUR19100428-V09-39-page7.txt: [('pub-', 'pub'), ('--theistart.', '-theistart.')] PUR19100428-V09-39-page8.txt: [('--naenta', '-naenta'), ('-', '')] PUR19100505-V09-40-page1.txt: [('-mach', 'mach'), ('men-', 'men')] PUR19100505-V09-40-page3.txt: [('-Wherever', 'Wherever')] PUR19100505-V09-40-page4.txt: [('mission-', 'mission'), ('-', '')] PUR19100505-V09-40-page5.txt: [('-', ''), ('-thamto', 'thamto'), ('-', ''), ('.ef--', '.ef-')] PUR19100505-V09-40-page7.txt: [('-', '')] PUR19100505-V09-40-page8.txt: [('-', ''), ('-', ''), ('Camp-', 'Camp')] PUR19100512-V09-41-page2.txt: [('Drs..-', 'Drs..')] PUR19100512-V09-41-page3.txt: [('-', ''), ('Sabbath-', 'Sabbath'), ('followed-', 'followed')] PUR19100512-V09-41-page4.txt: [('-lee', 'lee')] PUR19100512-V09-41-page5.txt: [('ca-', 'ca')] PUR19100512-V09-41-page7.txt: [('-', '')] PUR19100512-V09-41-page8.txt: [('-', ''), ('-', ''), ('Wood-', 'Wood')] PUR19100519-V09-42-page10.txt: [('-It', 'It'), ('seri-', 'seri')] PUR19100519-V09-42-page11.txt: [('-C.', 'C.'), ('-U', 'U'), ('-Conference', 'Conference')] PUR19100519-V09-42-page12.txt: [('self-suf-', 'self-suf')] PUR19100519-V09-42-page13.txt: [('-will', 'will'), ('-the', 'the'), ('build-', 'build'), ('--', '-')] PUR19100519-V09-42-page14.txt: [('-', ''), ('-', ''), ('-', '')] PUR19100519-V09-42-page15.txt: [('-', ''), ('-they', 'they'), ('--', '-'), ('-CORDtit', 'CORDtit'), ('Wood-', 'Wood')] PUR19100519-V09-42-page16.txt: [('-', ''), ('-Visalia', 'Visalia'), ('-Volunteer', 'Volunteer')] PUR19100519-V09-42-page4.txt: [('-labor', 'labor'), ('-', '')] PUR19100519-V09-42-page5.txt: [('-', '')] PUR19100519-V09-42-page6.txt: [('-is', 'is'), ("---'", "--'"), ('Scrip-', 'Scrip')] PUR19100519-V09-42-page8.txt: [('hu-', 'hu'), ('-morons', 'morons'), ('-', ''), ('-', ''), ('ob-', 'ob')] PUR19100519-V09-42-page9.txt: [('-', '')] PUR19100526-V09-43-page1.txt: [('-', ''), ('Hisap-', 'Hisap')] PUR19100526-V09-43-page2.txt: [('PACIFIC-', 'PACIFIC'), ('from-', 'from'), ('-', ''), ('Mc-', 'Mc')] PUR19100526-V09-43-page3.txt: [('-Work', 'Work'), ('-missionary', 'missionary')] PUR19100526-V09-43-page5.txt: [('-', ''), ('-Let', 'Let'), ('RITCHEY.-', 'RITCHEY.'), ('-', ''), ('at-', 'at')] PUR19100526-V09-43-page6.txt: [('-', ''), ('-', ''), ('Wood-', 'Wood')] PUR19100602-V09-44-page1.txt: [('phys-', 'phys')] PUR19100602-V09-44-page2.txt: [('-pond', 'pond'), ('-no', 'no'), ('-world', 'world'), ('-', '')] PUR19100602-V09-44-page5.txt: [('"Com-', '"Com')] PUR19100602-V09-44-page6.txt: [('-', ''), ('-', '')] PUR19100609-V09-45-page1.txt: [('-', ''), ('.-', '.')] PUR19100609-V09-45-page2.txt: [('-', ''), ('Advent-', 'Advent'), ('RE-', 'RE'), ('Confer-', 'Confer')] PUR19100609-V09-45-page4.txt: [('-', '')] PUR19100609-V09-45-page5.txt: [('-', ''), ('-making', 'making'), ('Wood-', 'Wood')] PUR19100609-V09-45-page6.txt: [('-', ''), ('-by', 'by'), ('-', '')] PUR19100616-V09-46-page1.txt: [('Feather-', 'Feather')] PUR19100616-V09-46-page2.txt: [('-', ''), ('-', ''), ('-kindly', 'kindly'), ('Pacific-', 'Pacific'), ('-', ''), ('-', ''), ('-', '')] PUR19100616-V09-46-page3.txt: [('Camp-', 'Camp'), ('RECO.kin-', 'RECO.kin')] PUR19100616-V09-46-page5.txt: [('Anti-', 'Anti')] PUR19100616-V09-46-page6.txt: [('-', ''), ('King-', 'King')] PUR19100623-V09-47-page1.txt: [('Chris-', 'Chris'), ('Ber-', 'Ber')] PUR19100623-V09-47-page2.txt: [('Scyth-', 'Scyth')] PUR19100623-V09-47-page3.txt: [('-these', 'these'), ('corre-', 'corre')] PUR19100623-V09-47-page4.txt: [('-done.', 'done.'), ('-for-', 'for-')] PUR19100623-V09-47-page5.txt: [('Danish-', 'Danish')] PUR19100623-V09-47-page6.txt: [('-', ''), ('-ie.', 'ie.'), ('Camp-', 'Camp'), ('-Glendale', 'Glendale')] PUR19100630-V09-48-page1.txt: [('-the', 'the')] PUR19100630-V09-48-page2.txt: [('-', ''), ('gentle-', 'gentle')] PUR19100630-V09-48-page4.txt: [('-two', 'two')] PUR19100630-V09-48-page5.txt: [('-', ''), ('se-', 'se')] PUR19100630-V09-48-page6.txt: [('-', '')] PUR19100630-V09-48-page7.txt: [("-Word'", "Word'")] PUR19100630-V09-48-page8.txt: [('-', ''), ('-', ''), ('-Bible', 'Bible'), ('Camp-', 'Camp')] PUR19100707-V09-49-page1.txt: [('-', '')] PUR19100707-V09-49-page2.txt: [('-be', 'be'), ('-an', 'an')] PUR19100707-V09-49-page3.txt: [('Camp-', 'Camp'), ('-.', '.')] PUR19100707-V09-49-page4.txt: [('-', ''), ('away--', 'away-'), ('-', ''), ('-on', 'on')] PUR19100707-V09-49-page5.txt: [('-', '')] PUR19100707-V09-49-page6.txt: [('-', ''), ('-', '')] PUR19100721-V09-51-page2.txt: [('-of', 'of'), ('-', ''), ('RE-', 'RE'), ('-charge', 'charge'), ('-Weight', 'Weight'), ('-many', 'many')] PUR19100721-V09-51-page3.txt: [('q-', 'q'), ('-', ''), ('Fur-', 'Fur'), ('-PACIFIC', 'PACIFIC')] PUR19100721-V09-51-page4.txt: [('--', '-'), ('-', ''), ('wish-', 'wish')] PUR19100721-V09-51-page5.txt: [('-', ''), ('-', '')] PUR19100721-V09-51-page6.txt: [('Mc-', 'Mc'), ('"Family-', '"Family'), ('-May', 'May'), ('meet-', 'meet'), ('-', '')] PUR19100721-V09-51-page7.txt: [('difficult"-', 'difficult"'), ('Wolfsen-', 'Wolfsen'), ('-', ''), ('-', ''), ('-', '')] PUR19100721-V09-51-page8.txt: [('-', ''), ('-', ''), ('-work', 'work'), ('PA-', 'PA'), ('-', '')] PUR19100728-V09-52-page1.txt: [('-', ''), ('or-', 'or')] PUR19100728-V09-52-page2.txt: [('San-', 'San'), ('Broadway-', 'Broadway'), ('-', ''), ('-the', 'the'), ('W.-', 'W.')] PUR19100728-V09-52-page4.txt: [('-go', 'go'), ('eX-', 'eX'), ('-PACIFIC', 'PACIFIC'), ('-', '')] PUR19100728-V09-52-page5.txt: [('-of', 'of')] PUR19100728-V09-52-page6.txt: [('-', ''), ('-', ''), ('-the', 'the'), ('-"When', '"When')] PUR19100804-V10-01-page1.txt: [('mis-', 'mis')] PUR19100804-V10-01-page10.txt: [('-', '')] PUR19100804-V10-01-page11.txt: [('-Be', 'Be'), ('--', '-')] PUR19100804-V10-01-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('Camp-', 'Camp'), ('The-', 'The'), ('Fe-', 'Fe'), ('the-', 'the'), ('Grove-', 'Grove'), ('Southern-', 'Southern'), ('the-', 'the'), ('to-', 'to')] PUR19100804-V10-01-page2.txt: [('-fifteen', 'fifteen')] PUR19100804-V10-01-page3.txt: [("'.-", "'."), ('then--', 'then-')] PUR19100804-V10-01-page5.txt: [('in-', 'in')] PUR19100804-V10-01-page6.txt: [('-children', 'children')] PUR19100804-V10-01-page7.txt: [('-', ''), ('-severe', 'severe')] PUR19100804-V10-01-page9.txt: [('-', ''), ('Parrine-', 'Parrine')] PUR19100811-V10-02-page2.txt: [('-is', 'is'), ('-', '')] PUR19100811-V10-02-page6.txt: [('Camp-', 'Camp'), ('Port-', 'Port')] PUR19100811-V10-02-page7.txt: [('--', '-'), ('--', '-'), ('camp-meet-', 'camp-meet')] PUR19100811-V10-02-page8.txt: [('-', ''), ('-', ''), ('Camp-', 'Camp'), ('-', '')] PUR19100818-V10-03-page1.txt: [('smart-', 'smart'), ('prin-', 'prin'), ('-Pacific', 'Pacific'), ('op-', 'op'), ('-that', 'that')] PUR19100818-V10-03-page11.txt: [('copy-', 'copy'), ('-', '')] PUR19100818-V10-03-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('Camp-', 'Camp')] PUR19100818-V10-03-page2.txt: [('-go', 'go')] PUR19100818-V10-03-page3.txt: [('X-', 'X')] PUR19100818-V10-03-page4.txt: [('Missis-', 'Missis')] PUR19100818-V10-03-page5.txt: [('exhorts-', 'exhorts')] PUR19100818-V10-03-page6.txt: [('ad-', 'ad'), ('-', ''), ('-to', 'to')] PUR19100818-V10-03-page7.txt: [('min-', 'min')] PUR19100818-V10-03-page8.txt: [('througltorl-', 'througltorl'), ('con-', 'con')] PUR19100825-V10-04-page2.txt: [('at-', 'at')] PUR19100825-V10-04-page3.txt: [('-came', 'came')] PUR19100825-V10-04-page4.txt: [('-', ''), ('-', ''), ('-the', 'the'), ('RE-', 'RE')] PUR19100901-V10-05-page2.txt: [('-.eyes', '.eyes'), ('-"', '"'), ('-', ''), ('Wood-', 'Wood')] PUR19100901-V10-05-page3.txt: [('-', ''), ('the-', 'the'), ("'St.-", "'St."), ('-IL', 'IL'), ('-X', 'X'), ('-', '')] PUR19100901-V10-05-page4.txt: [('-', ''), ('-', ''), ('-the', 'the'), ('-', ''), ('-Conference.', 'Conference.'), ('peo-', 'peo'), ('---', '--'), ('-and', 'and'), ('re-', 're')] PUR19100901-V10-05-page5.txt: [('-about', 'about'), ('-all', 'all'), ('.-', '.')] PUR19100901-V10-05-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('camp-', 'camp')] PUR19100908-V10-06-page1.txt: [('-', ''), ('-', '')] PUR19100908-V10-06-page2.txt: [('-', ''), ('-', ''), ('John-', 'John')] PUR19100908-V10-06-page6.txt: [('-', ''), ('-', ''), ('San-', 'San'), ('be-', 'be')] PUR19100915-V10-07-page1.txt: [('-', ''), ('-which', 'which')] PUR19100915-V10-07-page2.txt: [('Stopover-', 'Stopover'), ('-is', 'is')] PUR19100915-V10-07-page3.txt: [('Missionary-', 'Missionary'), ('-the', 'the'), ('RE-', 'RE')] PUR19100915-V10-07-page4.txt: [('-', ''), ('Miss-', 'Miss'), ('-', '')] PUR19100915-V10-07-page5.txt: [('-that', 'that'), ('-the', 'the'), ('-.', '.'), ('in-', 'in')] PUR19100915-V10-07-page6.txt: [('-twenty-five', 'twenty-five'), ('-', '')] PUR19100915-V10-07-page7.txt: [('-oxen', 'oxen'), ('-', ''), ('to-', 'to'), ('-', ''), ('-vvho', 'vvho')] PUR19100915-V10-07-page8.txt: [('-', ''), ('-', ''), ('-San', 'San'), ('-upon', 'upon'), ('Ad.-', 'Ad.'), ('-', ''), ('-.', '.'), ('Utah-', 'Utah'), ('-.', '.'), ('-aceredited', 'aceredited'), ('National-', 'National'), ('-oodoiog', 'oodoiog'), ('way-', 'way')] PUR19100922-V10-08-page1.txt: [('-You', 'You'), ('--', '-')] PUR19100922-V10-08-page2.txt: [('RE-', 'RE'), ('-although', 'although'), ('-', '')] PUR19100922-V10-08-page4.txt: [('the-', 'the'), ('-', ''), ('-', ''), ('anti-Sunday-', 'anti-Sunday'), ('court-', 'court')] PUR19100922-V10-08-page5.txt: [('-this', 'this'), ('-', ''), ('-the', 'the')] PUR19100922-V10-08-page6.txt: [('-Work', 'Work')] PUR19100922-V10-08-page7.txt: [('-and-pupilto', 'and-pupilto'), ('-was', 'was'), ('As-', 'As'), ('California-', 'California')] PUR19100922-V10-08-page8.txt: [('-', ''), ('-', ''), ('courses-', 'courses'), ('-as', 'as')] PUR19100929-V10-09-page1.txt: [('-purchase', 'purchase'), ('-With', 'With'), ('-their', 'their'), ('-own', 'own'), ('-spangly', 'spangly'), ('-brethren', 'brethren'), ('to-', 'to'), ('-reap', 'reap'), ('-', ''), ('-at', 'at'), ('-and', 'and'), ('-the', 'the'), ('-meeting', 'meeting'), ('-waited', 'waited'), ('-that', 'that'), ('-b.', 'b.'), ('-flharpe', 'flharpe'), ('-where', 'where'), ('-the', 'the')] PUR19100929-V10-09-page10.txt: [('distribu-', 'distribu'), ('cam-', 'cam'), ('and-', 'and'), ('--', '-'), ('-', '')] PUR19100929-V10-09-page11.txt: [('Witt-', 'Witt'), ('Camp-', 'Camp')] PUR19100929-V10-09-page12.txt: [('-', ''), ('-', ''), ('or-', 'or'), ('-Utah', 'Utah'), ('-more', 'more'), ('-the', 'the'), ('-some', 'some')] PUR19100929-V10-09-page2.txt: [('Mc-', 'Mc'), ('San-', 'San'), ('place.-', 'place.'), ('-he', 'he'), ('-', '')] PUR19100929-V10-09-page3.txt: [('-si', 'si')] PUR19100929-V10-09-page5.txt: [('-expression', 'expression')] PUR19100929-V10-09-page6.txt: [('-for', 'for'), ('se-', 'se')] PUR19100929-V10-09-page7.txt: [('invigora-', 'invigora'), ('be-', 'be')] PUR19100929-V10-09-page8.txt: [('-', '')] PUR19101006-V10-10-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-on', 'on')] PUR19101006-V10-10-page3.txt: [('accom-', 'accom')] PUR19101006-V10-10-page4.txt: [('pa-', 'pa'), ('appara-', 'appara')] PUR19101006-V10-10-page5.txt: [('the-', 'the'), ('-UNION', 'UNION'), ('-', '')] PUR19101006-V10-10-page6.txt: [('"Educa-', '"Educa')] PUR19101006-V10-10-page7.txt: [('-not', 'not'), ('-', '')] PUR19101006-V10-10-page8.txt: [('-', ''), ('-', ''), ('-For', 'For')] PUR19101013-V10-11-page1.txt: [('vendaho-', 'vendaho'), ('-.Day', '.Day'), ('in-', 'in')] PUR19101013-V10-11-page2.txt: [('-', ''), ('fel--', 'fel-')] PUR19101013-V10-11-page3.txt: [('-German', 'German'), ('-', '')] PUR19101013-V10-11-page4.txt: [('edu-', 'edu')] PUR19101013-V10-11-page5.txt: [('principal.-', 'principal.')] PUR19101013-V10-11-page6.txt: [('LOWRY.-', 'LOWRY.')] PUR19101013-V10-11-page7.txt: [('r-', 'r')] PUR19101013-V10-11-page8.txt: [('-', ''), ('-', '')] PUR19101020-V10-12-page1.txt: [('Maria-', 'Maria')] PUR19101020-V10-12-page2.txt: [('-Sixteen', 'Sixteen'), ('Me-', 'Me'), ('on-', 'on'), ('year.-', 'year.'), ('-the', 'the')] PUR19101020-V10-12-page4.txt: [('-Lord', 'Lord'), ('arithme-', 'arithme')] PUR19101020-V10-12-page6.txt: [('by-', 'by')] PUR19101020-V10-12-page7.txt: [('RE-', 'RE')] PUR19101020-V10-12-page8.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('-', ''), ('-on', 'on'), ('-', ''), ('-', ''), ('-can', 'can')] PUR19101027-V10-13-page11.txt: [('-necessities', 'necessities'), ('-', '')] PUR19101027-V10-13-page12.txt: [('booklet-', 'booklet'), ('-.', '.'), ('al-', 'al')] PUR19101027-V10-13-page15.txt: [('-', ''), ('RE-', 'RE')] PUR19101027-V10-13-page16.txt: [('-', '')] PUR19101027-V10-13-page2.txt: [('-persons', 'persons'), ('or-', 'or'), ('Mc-', 'Mc'), ('to-', 'to'), ('-well', 'well'), ('-responded', 'responded'), ('-bf', 'bf'), ('donations-', 'donations'), ('-adopted', 'adopted')] PUR19101027-V10-13-page3.txt: [('-.', '.')] PUR19101027-V10-13-page5.txt: [('re-', 're'), ('insti-', 'insti')] PUR19101027-V10-13-page6.txt: [('-as', 'as'), ('-granted', 'granted'), ('CIL-is--', 'CIL-is-')] PUR19101027-V10-13-page7.txt: [('RE-', 'RE'), ('-on', 'on')] PUR19101027-V10-13-page8.txt: [('-on', 'on'), ('andweigh-', 'andweigh'), ('-', '')] PUR19101103-V10-14-page1.txt: [('-', ''), ('-', ''), ('-just', 'just')] PUR19101103-V10-14-page2.txt: [('Religio-', 'Religio'), ('.-', '.'), ('-and', 'and'), ('-consecrated', 'consecrated'), ('-sanitariums', 'sanitariums'), ('-', ''), ('-the', 'the')] PUR19101103-V10-14-page3.txt: [('--', '-')] PUR19101103-V10-14-page4.txt: [('-The', 'The')] PUR19101103-V10-14-page6.txt: [('--', '-'), ('us-', 'us'), ('-', ''), ('-once', 'once'), ('-', ''), ('-again', 'again'), ('-old', 'old'), ('-', ''), ('--hedge', '-hedge'), ('-your', 'your'), ('-to', 'to'), ('-', ''), ('-where', 'where')] PUR19101103-V10-14-page7.txt: [('-School', 'School'), ('theolog-', 'theolog'), ('per-', 'per'), ('-earnestly', 'earnestly'), ('-continue.', 'continue.'), ('-furnish', 'furnish')] PUR19101103-V10-14-page8.txt: [('-', ''), ('-', ''), ('death.-', 'death.')] PUR19101110-V10-15-page2.txt: [('-', ''), ('-the', 'the'), ('ex-', 'ex')] PUR19101110-V10-15-page3.txt: [('-', ''), ('-', ''), ('-', '')] PUR19101110-V10-15-page4.txt: [('-', ''), ('CONMEKEANWISSING-', 'CONMEKEANWISSING'), ('-', ''), ('-', '')] PUR19101110-V10-15-page5.txt: [('-appointment', 'appointment')] PUR19101110-V10-15-page8.txt: [('-', ''), ('-', ''), ('-we', 'we')] PUR19101117-V10-16-page1.txt: [('Secretary.--', 'Secretary.-'), ('forth-', 'forth')] PUR19101117-V10-16-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19101117-V10-16-page3.txt: [('meet-', 'meet')] PUR19101117-V10-16-page4.txt: [('peo-', 'peo'), ('--', '-')] PUR19101117-V10-16-page5.txt: [('-sugar', 'sugar'), ('-interests', 'interests'), ('re-', 're')] PUR19101117-V10-16-page6.txt: [('September-', 'September'), ('-', ''), ('twice-', 'twice')] PUR19101117-V10-16-page7.txt: [('"Be-', '"Be'), ('imme-', 'imme')] PUR19101117-V10-16-page8.txt: [('-', ''), ('-', ''), ('-United', 'United')] PUR19101124-V10-17-page2.txt: [('-liberty', 'liberty'), ('-in', 'in'), ('-E.', 'E.'), ('from-', 'from'), ('-moved', 'moved'), ('-', '')] PUR19101124-V10-17-page3.txt: [('-The', 'The'), ('Church-', 'Church'), ('-Mus', 'Mus'), ('an-', 'an'), ('-UNION', 'UNION')] PUR19101124-V10-17-page4.txt: [('-L.', 'L.'), ('-', ''), ('-brought', 'brought')] PUR19101124-V10-17-page5.txt: [('-Solb', 'Solb'), ('-', ''), ('Neigh-', 'Neigh')] PUR19101124-V10-17-page6.txt: [('puk--', 'puk-')] PUR19101124-V10-17-page7.txt: [('-', ''), ('-', '')] PUR19101124-V10-17-page8.txt: [('-', ''), ('-', ''), ('-through', 'through'), ('-his', 'his')] PUR19101201-V10-18-page1.txt: [('evangeliza-', 'evangeliza'), ('-', ''), ('num-', 'num'), ('-', ''), ('-', '')] PUR19101201-V10-18-page2.txt: [('en-', 'en')] PUR19101201-V10-18-page3.txt: [('gen-', 'gen'), ('-', '')] PUR19101201-V10-18-page4.txt: [('-', ''), ('accom-', 'accom'), ('-', '')] PUR19101201-V10-18-page5.txt: [('confer-', 'confer'), ('PA-', 'PA'), ('-', ''), ('-That', 'That')] PUR19101201-V10-18-page6.txt: [('-', ''), ('-', '')] PUR19101208-V10-19-page1.txt: [('intol-', 'intol'), ('fol-', 'fol')] PUR19101208-V10-19-page2.txt: [('por-', 'por')] PUR19101208-V10-19-page4.txt: [('-', ''), ('min-', 'min')] PUR19101208-V10-19-page5.txt: [('in-', 'in'), ('-', ''), ('-', ''), ('Neg-', 'Neg'), ('PACIFIC-', 'PACIFIC')] PUR19101208-V10-19-page6.txt: [('-A', 'A')] PUR19101208-V10-19-page7.txt: [('-Utah', 'Utah'), ('-', ''), ('RE-', 'RE')] PUR19101208-V10-19-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19101215-V10-20-page1.txt: [('-entitled.', 'entitled.'), ('--', '-'), ('cireum-', 'cireum')] PUR19101215-V10-20-page2.txt: [('-tord', 'tord'), ('y-t-', 'y-t'), ('rifice.-', 'rifice.'), ('-strangers', 'strangers'), ('-with', 'with'), ('suf-', 'suf'), ('brethren-', 'brethren'), ('-in', 'in'), ('-the', 'the'), ('--dowith-', '-dowith-'), ('Brother-', 'Brother'), ('-the-conference', 'the-conference'), ('-', ''), ('-', ''), ('-and', 'and'), ('-forthem', 'forthem'), ('-effort', 'effort')] PUR19101215-V10-20-page3.txt: [('Sab--', 'Sab-'), ('-', ''), ('-liat', 'liat'), ('-of', 'of')] PUR19101215-V10-20-page4.txt: [('-a', 'a'), ('-be', 'be')] PUR19101215-V10-20-page5.txt: [('strug-', 'strug'), ('"Meditation"-', '"Meditation"'), ('-', ''), ('Solo.-', 'Solo.')] PUR19101215-V10-20-page6.txt: [('-and', 'and'), ('PACIFIC-', 'PACIFIC'), ('fiafi-', 'fiafi'), ('hill-', 'hill'), ('-', ''), ('J.-', 'J.')] PUR19101215-V10-20-page7.txt: [('-', ''), ('-', ''), ('-few', 'few'), ('-no', 'no'), ('can-', 'can'), ('-vassers.', 'vassers.'), ('-', ''), ('-C.', 'C.'), ('Iv.-', 'Iv.'), ("vineyard'-", "vineyard'"), ('-for', 'for'), ('-the', 'the'), ('-orking', 'orking'), ('for-', 'for')] PUR19101215-V10-20-page8.txt: [('-', ''), ('-', '')] PUR19101222-V10-21-page2.txt: [('California-', 'California')] PUR19101222-V10-21-page3.txt: [('-', ''), ('-', ''), ('-', '')] PUR19101222-V10-21-page5.txt: [('-herds.', 'herds.'), ('in-', 'in'), ('-', '')] PUR19101222-V10-21-page6.txt: [('RE-', 'RE')] PUR19101222-V10-21-page7.txt: [('-forth', 'forth')] PUR19101222-V10-21-page8.txt: [('-', '')] PUR19101229-V10-22-page1.txt: [('-View', 'View'), ('-', ''), ('-', ''), ('-', '')] PUR19101229-V10-22-page2.txt: [('ap-', 'ap')] PUR19101229-V10-22-page3.txt: [('-', ''), ('California-', 'California')] PUR19101229-V10-22-page4.txt: [('-', '')] PUR19101229-V10-22-page5.txt: [('-scraping', 'scraping'), ('so-called-', 'so-called'), ('se-', 'se'), ('-will', 'will'), ('-Societies', 'Societies')] PUR19101229-V10-22-page6.txt: [('-', ''), ('-precious', 'precious'), ('uPt-', 'uPt'), ('-', ''), ('-this', 'this')] PUR19101229-V10-22-page7.txt: [('-', ''), ('-United.', 'United.')] PUR19101229-V10-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-considered', 'considered')] PUR19110105-V10-23-page1.txt: [('Office.-', 'Office.'), ('President.-', 'President.'), ('Treasurer.-', 'Treasurer.'), ('Secretary.-', 'Secretary.'), ('Secretary.-', 'Secretary.'), ('Agent.-', 'Agent.'), ('-', ''), ('-', ''), ('California-', 'California'), ('-', '')] PUR19110105-V10-23-page2.txt: [('-cups', 'cups'), ('-and-', 'and-')] PUR19110105-V10-23-page3.txt: [('-', ''), ('-mirk', 'mirk'), ('-acre', 'acre'), ('--', '-'), ('not.-', 'not.')] PUR19110105-V10-23-page4.txt: [('-Volunteers', 'Volunteers')] PUR19110105-V10-23-page5.txt: [('organi-', 'organi'), ('-', ''), ('Mc-', 'Mc'), ('work-', 'work')] PUR19110105-V10-23-page6.txt: [('-View', 'View'), ('-', ''), ('-', ''), ('yea-', 'yea')] PUR19110112-V10-24-page1.txt: [('-ivalked', 'ivalked'), ('experi-', 'experi')] PUR19110112-V10-24-page2.txt: [('-have', 'have'), ('or-', 'or')] PUR19110112-V10-24-page3.txt: [('California-', 'California'), ('-', '')] PUR19110112-V10-24-page4.txt: [('-', ''), ('Brother-', 'Brother'), ('---', '--'), ('-', '')] PUR19110112-V10-24-page5.txt: [('through-', 'through'), ('peo-', 'peo'), ('-', '')] PUR19110112-V10-24-page6.txt: [('-it.', 'it.'), ('-bee', 'bee')] PUR19110112-V10-24-page7.txt: [('cam-', 'cam'), ('abil-', 'abil')] PUR19110112-V10-24-page8.txt: [('-', ''), ('-', '')] PUR19110119-V10-25-page1.txt: [('-done', 'done'), ('My--', 'My-'), ('-Florence', 'Florence'), ('ex-', 'ex'), ('-sent', 'sent'), ('-a', 'a'), ('-Pirit', 'Pirit'), ("-alt.'.", "alt.'."), ('-', ''), ('-', '')] PUR19110119-V10-25-page2.txt: [('-', ''), ('-important', 'important'), ('California-', 'California')] PUR19110119-V10-25-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-fall', 'fall'), ('-rich', 'rich')] PUR19110119-V10-25-page4.txt: [('instancesre-', 'instancesre'), ('-in', 'in'), ('inter-', 'inter'), ('-', '')] PUR19110119-V10-25-page5.txt: [('-vork.', 'vork.')] PUR19110119-V10-25-page6.txt: [('-work', 'work'), ('KILEY.-', 'KILEY.'), ('RODMAN.-', 'RODMAN.'), ('-', '')] PUR19110119-V10-25-page7.txt: [('per-', 'per'), ('re-', 're'), ('-Unvarnished', 'Unvarnished'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110119-V10-25-page8.txt: [('-', ''), ('-', ''), ('-View', 'View'), ('-', '')] PUR19110126-V10-26-page1.txt: [('-', '')] PUR19110126-V10-26-page2.txt: [('-', ''), ('-', '')] PUR19110126-V10-26-page3.txt: [('-thatthey', 'thatthey')] PUR19110126-V10-26-page4.txt: [('PACIFIC-', 'PACIFIC'), ('-in', 'in'), ('-', ''), ('-', '')] PUR19110126-V10-26-page5.txt: [('-', ''), ('-Anna', 'Anna'), ('-and', 'and'), ('-debt', 'debt'), ('-', ''), ('-', ''), ('-coining.-', 'coining.-'), ('--of', '-of'), ('-', ''), ('-', ''), ('-', '')] PUR19110126-V10-26-page6.txt: [('-PACIFIC', 'PACIFIC'), ('-Was', 'Was'), ('and-', 'and'), ('RE-', 'RE'), ('Sister-', 'Sister'), ('-Wilcox', 'Wilcox'), ('-minutes', 'minutes')] PUR19110126-V10-26-page7.txt: [('splen-', 'splen'), ('-', ''), ('mds-', 'mds'), ('-where', 'where'), ('.hasrea-', '.hasrea'), ('-His', 'His'), ('-true', 'true'), ('-this', 'this'), ('astron-', 'astron'), ('-and', 'and'), ('-presentations', 'presentations'), ('-', ''), ('-', ''), ('-jutt', 'jutt'), ('--slipsho', '-slipsho'), ('-workbot.e.hed', 'workbot.e.hed'), ('-honest', 'honest'), ('how-', 'how')] PUR19110126-V10-26-page8.txt: [('-', ''), ('-', '')] PUR19110202-V10-27-page1.txt: [('in-', 'in'), ('-..', '..'), ('in-', 'in'), ('-', ''), ('neigh-', 'neigh'), ('-knowlektl', 'knowlektl'), ('ohureheri-', 'ohureheri')] PUR19110202-V10-27-page2.txt: [('"-', '"'), ('-incumbent', 'incumbent'), ('urgentlyre-', 'urgentlyre'), ('-branch', 'branch'), ('-have', 'have')] PUR19110202-V10-27-page3.txt: [('-', ''), ('-', ''), ('se-', 'se'), ('-fay', 'fay'), ('-', ''), ('Sabbath-', 'Sabbath'), ('Ob-', 'Ob'), ('-.', '.'), ('-', '')] PUR19110202-V10-27-page4.txt: [('pcn-', 'pcn'), ('-that', 'that'), ('-that', 'that')] PUR19110202-V10-27-page5.txt: [('relig-', 'relig'), ('-ious', 'ious'), ('-', ''), ('-', ''), ('-talking', 'talking'), ('-', ''), ('tocoun-', 'tocoun'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('Saera-', 'Saera')] PUR19110202-V10-27-page6.txt: [('-but', 'but'), ('-work', 'work'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('meet-', 'meet'), ('-occasions', 'occasions'), ('-', ''), ('-known', 'known'), ('"Church-', '"Church'), ('-which', 'which'), ('members-', 'members'), ('ELDER.-', 'ELDER.')] PUR19110202-V10-27-page7.txt: [('-member', 'member'), ('-inissioaltal', 'inissioaltal'), (".Tee'-", ".Tee'"), ('-', ''), ("'COntaing--", "'COntaing-"), ('Surgical-', 'Surgical'), ("-set-'", "set-'"), ('-council', 'council'), ('-conference', 'conference'), ('Confer-', 'Confer'), ('-state', 'state'), ('-', ''), ('-', ''), ('-J..', 'J..'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110202-V10-27-page8.txt: [('-', ''), ('Seventh-Day-', 'Seventh-Day'), ('February-', 'February'), ('-', ''), ('-', ''), ('-', '')] PUR19110209-V10-28-page1.txt: [('tes-', 'tes'), ("-Ye'", "Ye'"), ('-.is', '.is'), ('-riceOttnt', 'riceOttnt'), ('-', ''), ('-', ''), ('pre-', 'pre'), ('-', ''), ('-', '')] PUR19110209-V10-28-page2.txt: [('orderly-', 'orderly'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110209-V10-28-page3.txt: [('-', ''), ('-at', 'at'), ('ae-', 'ae'), ('dis-', 'dis'), ('-lhatiiig...', 'lhatiiig...'), ('-giving', 'giving'), ('--Bible', '-Bible'), ('-', ''), ('truth-', 'truth'), ('Orr-', 'Orr'), ('-meeting-house', 'meeting-house'), ('-tompleted.........', 'tompleted.........'), ('--', '-')] PUR19110209-V10-28-page4.txt: [('-Litt', 'Litt'), ('-gathered', 'gathered')] PUR19110209-V10-28-page5.txt: [('utter-', 'utter'), ('prae-', 'prae'), ('-an', 'an'), ('-had', 'had'), ('-', ''), ('was-', 'was'), ('-We', 'We'), ('-so', 'so')] PUR19110209-V10-28-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-had', 'had'), ('-oar', 'oar')] PUR19110209-V10-28-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110216-V10-29-page1.txt: [('preach-', 'preach')] PUR19110216-V10-29-page2.txt: [('Food-', 'Food')] PUR19110216-V10-29-page3.txt: [('Sabbath-school.-', 'Sabbath-school.')] PUR19110216-V10-29-page4.txt: [('-of', 'of')] PUR19110216-V10-29-page5.txt: [('de-', 'de'), ('-UNION', 'UNION')] PUR19110216-V10-29-page7.txt: [('un-', 'un')] PUR19110216-V10-29-page8.txt: [('-', ''), ('-', ''), ('prac-', 'prac')] PUR19110223-V10-30-page1.txt: [('-', ''), ('-her', 'her'), ('-', ''), ('-Vermont.', 'Vermont.'), ('-selling.', 'selling.'), ('-next', 'next'), ('Iiit"-t.-', 'Iiit"-t.'), ('-tat', 'tat'), ('-', '')] PUR19110223-V10-30-page3.txt: [('-our', 'our'), ('insti-', 'insti')] PUR19110223-V10-30-page4.txt: [('-has', 'has'), ('-in', 'in')] PUR19110223-V10-30-page5.txt: [('-Olsen', 'Olsen'), ('corn-', 'corn')] PUR19110223-V10-30-page6.txt: [('-of', 'of')] PUR19110223-V10-30-page7.txt: [('-', ''), ('-', '')] PUR19110223-V10-30-page8.txt: [('-', ''), ('-', ''), ('-Volunteer', 'Volunteer'), ('-UNION', 'UNION')] PUR19110302-V10-31-page1.txt: [('mem-', 'mem'), ('or-', 'or'), ('-', ''), ('mem-', 'mem')] PUR19110302-V10-31-page10.txt: [('-', ''), ('-', ''), ('-', '')] PUR19110302-V10-31-page11.txt: [('con-', 'con')] PUR19110302-V10-31-page13.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110302-V10-31-page14.txt: [('only-', 'only')] PUR19110302-V10-31-page15.txt: [('-', ''), ('-', '')] PUR19110302-V10-31-page16.txt: [('-', ''), ('-', ''), ('-', '')] PUR19110302-V10-31-page2.txt: [('Mac-', 'Mac'), ('ORNIA-', 'ORNIA')] PUR19110302-V10-31-page3.txt: [('-San', 'San'), ('Oak-', 'Oak'), ('-', ''), ('Transporta-', 'Transporta')] PUR19110302-V10-31-page4.txt: [('-', ''), ('Bar-', 'Bar'), ('-', '')] PUR19110302-V10-31-page5.txt: [('-tree', 'tree'), ('California-', 'California'), ('Member-', 'Member')] PUR19110302-V10-31-page6.txt: [('-', '')] PUR19110302-V10-31-page7.txt: [('-', '')] PUR19110302-V10-31-page8.txt: [('-urer', 'urer'), ('commit-', 'commit')] PUR19110309-V10-32-page1.txt: [('-reasons', 'reasons'), ('-We', 'We'), ('-', ''), ('-Spaulding', 'Spaulding')] PUR19110309-V10-32-page10.txt: [('-', ''), ('-', ''), ('-preqious', 'preqious'), ('-"-', '"-')] PUR19110309-V10-32-page11.txt: [('-field', 'field'), ('-system', 'system'), ('-there', 'there'), ('-', '')] PUR19110309-V10-32-page12.txt: [('-invite', 'invite'), ('-teresting', 'teresting'), ('-Miss', 'Miss'), ('-The', 'The'), ('-quick', 'quick'), ('-with', 'with'), ('-', '')] PUR19110309-V10-32-page13.txt: [('with-', 'with'), ('-Man-As', 'Man-As'), ('-', '')] PUR19110309-V10-32-page14.txt: [('-clone', 'clone'), ('CARE-', 'CARE')] PUR19110309-V10-32-page15.txt: [('-froin', 'froin'), ("-sante'", "sante'"), ('-ASAast', 'ASAast'), ('copy-', 'copy'), ('-', ''), ('SPEAR.--', 'SPEAR.-'), ('-', '')] PUR19110309-V10-32-page16.txt: [('-', ''), ('Los-', 'Los'), ('-will', 'will'), ('-MARCH', 'MARCH'), ('sayrela-', 'sayrela')] PUR19110309-V10-32-page2.txt: [('-', ''), ('-to', 'to')] PUR19110309-V10-32-page3.txt: [('Com-', 'Com'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-their', 'their')] PUR19110309-V10-32-page4.txt: [('-', ''), ('tiOL-', 'tiOL')] PUR19110309-V10-32-page5.txt: [('excep-', 'excep')] PUR19110309-V10-32-page7.txt: [('-tried', 'tried'), ('-ktp.d', 'ktp.d'), ('of-', 'of')] PUR19110309-V10-32-page8.txt: [('Sabbath-', 'Sabbath'), ('-advantage', 'advantage')] PUR19110309-V10-32-page9.txt: [('-', ''), ('-through', 'through'), ('Sabbath-', 'Sabbath')] PUR19110316-V10-33-page1.txt: [('-sell', 'sell'), ('-', '')] PUR19110316-V10-33-page2.txt: [('Mc-', 'Mc'), ('-', '')] PUR19110316-V10-33-page4.txt: [('-people', 'people'), ('Pied-', 'Pied'), ('-Luther', 'Luther'), ('-encouraging', 'encouraging'), ('attendance-', 'attendance'), ('-', '')] PUR19110316-V10-33-page5.txt: [('-Los', 'Los'), ('Mel-', 'Mel'), ('-', ''), ('SonOinrc-', 'SonOinrc'), ('-', ''), ('-Work', 'Work'), ('-it', 'it'), ('time-', 'time')] PUR19110316-V10-33-page7.txt: [('-permitted.', 'permitted.'), ('Waterman-', 'Waterman')] PUR19110316-V10-33-page8.txt: [('-', ''), ('-March', 'March'), ('-will', 'will')] PUR19110323-V10-34-page1.txt: [('-', '')] PUR19110323-V10-34-page2.txt: [('-reedy', 'reedy'), ('-audience', 'audience')] PUR19110323-V10-34-page3.txt: [('pre-', 'pre'), ('-', ''), ('cheat-', 'cheat')] PUR19110323-V10-34-page4.txt: [('-well', 'well'), ('-day.', 'day.'), ('-is', 'is'), ('priests.-', 'priests.')] PUR19110323-V10-34-page5.txt: [('MSG-', 'MSG'), ('T-', 'T'), ('-', '')] PUR19110323-V10-34-page6.txt: [('-United', 'United'), ('-are', 'are'), ('-the', 'the'), ('-assist', 'assist')] PUR19110323-V10-34-page7.txt: [('-these', 'these'), ('-oilr', 'oilr'), ('"Redeem-', '"Redeem'), ('-not', 'not'), ('-of', 'of'), ('PALMER.-', 'PALMER.')] PUR19110323-V10-34-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19110330-V10-35-page1.txt: [('President.--', 'President.-'), ('-', ''), ('-in', 'in')] PUR19110330-V10-35-page2.txt: [('-time', 'time'), ('-the', 'the'), ('-', '')] PUR19110330-V10-35-page3.txt: [('-institution', 'institution'), ('co-', 'co'), ('-air', 'air'), ('-sufficient', 'sufficient'), ('-', ''), ('Mc-', 'Mc')] PUR19110330-V10-35-page4.txt: [('corpora-', 'corpora'), ('-', ''), ('-many', 'many'), ('stu-', 'stu'), ('-', '')] PUR19110330-V10-35-page6.txt: [('-winds', 'winds'), ('cir-', 'cir')] PUR19110330-V10-35-page8.txt: [('-', ''), ('-through', 'through'), ('-', ''), ('-to', 'to')] PUR19110406-V10-36-page1.txt: [('fitiiiii-', 'fitiiiii'), ('ather-', 'ather'), ('-carry', 'carry'), ("'advance-", "'advance")] PUR19110406-V10-36-page3.txt: [('-strife', 'strife'), ("-seemed'", "seemed'"), ('How-', 'How'), ('--', '-'), ('audience-', 'audience'), ('church-', 'church')] PUR19110406-V10-36-page4.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-church.', 'church.'), ('-', '')] PUR19110406-V10-36-page5.txt: [("--thiS-etrat'saing", "-thiS-etrat'saing")] PUR19110406-V10-36-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19110406-V10-36-page7.txt: [('-stating', 'stating'), ('-', ''), ('s-', 's')] PUR19110406-V10-36-page8.txt: [('-', ''), ('-', ''), ('second-', 'second'), ('-Work', 'Work'), ('-', '')] PUR19110413-V10-37-page1.txt: [('-', ''), ('-', ''), ('-this', 'this'), ('-', ''), ('President.--', 'President.-'), ('-office', 'office'), ('the...Boston-cimiparty-', 'the...Boston-cimiparty'), ('Sar-', 'Sar')] PUR19110413-V10-37-page2.txt: [('-we', 'we'), ('-make', 'make'), ('-turn', 'turn'), ('-during', 'during'), ('-', ''), ('-that', 'that'), ('expres-', 'expres'), ('-sion', 'sion'), ('-with', 'with')] PUR19110413-V10-37-page3.txt: [('gen-', 'gen'), ('and-', 'and'), ('good-', 'good')] PUR19110413-V10-37-page4.txt: [('-"', '"'), ('by-', 'by'), ('Veryfa-', 'Veryfa'), ('-', ''), ('-his', 'his'), ('-', ''), ('-.two', '.two'), ('PACEPTC-', 'PACEPTC')] PUR19110413-V10-37-page5.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('ns-', 'ns'), ('-.', '.'), ('-Sri', 'Sri'), ('thr-', 'thr'), ('-', ''), ('ad-', 'ad'), ('-', '')] PUR19110413-V10-37-page6.txt: [('.-', '.'), ('rlif--', 'rlif-'), ('-been', 'been'), ('-to', 'to'), ('-', ''), ('-o', 'o'), ('CALIFORNIA-', 'CALIFORNIA'), ('demon-', 'demon')] PUR19110413-V10-37-page7.txt: [('ob-', 'ob'), ('student-', 'student'), ('Ortalit-', 'Ortalit'), ('-than', 'than'), ('-', ''), ('-', '')] PUR19110413-V10-37-page8.txt: [('-', ''), ('-to', 'to')] PUR19110420-V10-38-page1.txt: [('-were', 'were'), ('-broug', 'broug'), ('-Oir', 'Oir'), ('Irememberedthat.Ihadbeenan-', 'Irememberedthat.Ihadbeenan'), ('-larather', 'larather'), ('-ii', 'ii')] PUR19110420-V10-38-page2.txt: [('CATAVORNIA-', 'CATAVORNIA'), ('-', '')] PUR19110420-V10-38-page3.txt: [('-', ''), ('isf-', 'isf')] PUR19110420-V10-38-page4.txt: [('-up', 'up'), ('encoura-', 'encoura')] PUR19110420-V10-38-page5.txt: [('-', ''), ('-the', 'the'), ('CALIFORNIA-', 'CALIFORNIA'), ('-', ''), ('ee.M-', 'ee.M'), ('-sous', 'sous'), ('in-', 'in'), ('therVette"-', 'therVette"'), ('-factor', 'factor'), ('-of', 'of'), ('In-', 'In'), ('-issue', 'issue'), ('-th.', 'th.')] PUR19110420-V10-38-page6.txt: [('-', ''), ('-.Thecrw', '.Thecrw'), ('-', '')] PUR19110420-V10-38-page7.txt: [('ago.-', 'ago.'), ('--This', '-This'), ('---Sp', '--Sp'), ('ter-', 'ter'), ('Mc-', 'Mc'), ('-His', 'His'), ('--tia', '-tia'), ('-', '')] PUR19110420-V10-38-page8.txt: [('-', ''), ('Wan-', 'Wan'), ('-', ''), ('-cently', 'cently'), ('-in', 'in'), ('it.--', 'it.-'), ('-', ''), ('-tracts', 'tracts'), ('-to', 'to'), ('See.-', 'See.'), ('-Camp', 'Camp'), ('-piped', 'piped'), ("-GOd'S", "GOd'S"), ('-and', 'and'), ('-these', 'these'), ('Ange-', 'Ange')] PUR19110427-V10-39-page1.txt: [('issue-', 'issue'), ('-tociebte', 'tociebte'), ('-ffrall.', 'ffrall.'), ('of-', 'of'), ('-No', 'No'), ('pub-', 'pub'), ('-ix', 'ix'), ('-', '')] PUR19110427-V10-39-page2.txt: [('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('-', '')] PUR19110427-V10-39-page3.txt: [('-of.', 'of.'), ('Sab-', 'Sab')] PUR19110427-V10-39-page4.txt: [('SUM.-', 'SUM.'), ("souls'-", "souls'")] PUR19110427-V10-39-page5.txt: [('-', ''), ('-of', 'of'), ('Or-', 'Or'), ('principles-', 'principles'), ('-', '')] PUR19110427-V10-39-page6.txt: [('-Files', 'Files'), ("'lag-", "'lag")] PUR19110427-V10-39-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('of-', 'of'), ('No-', 'No')] PUR19110504-V10-40-page1.txt: [('liter-', 'liter'), ('Depart-', 'Depart'), ('-', '')] PUR19110504-V10-40-page2.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110504-V10-40-page3.txt: [('per-', 'per'), ('interellowship----', 'interellowship---'), ('--', '-'), ('-work', 'work'), ('Ad-', 'Ad'), ('by-', 'by'), ('-xneetingnAt', 'xneetingnAt'), ('--.to', '-.to')] PUR19110504-V10-40-page4.txt: [('chosen.--', 'chosen.-'), ('-Watchman', 'Watchman')] PUR19110504-V10-40-page5.txt: [('intro-', 'intro'), ('-', '')] PUR19110504-V10-40-page6.txt: [('faith-', 'faith'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19110504-V10-40-page7.txt: [('-', ''), ('-"Deliveries', '"Deliveries')] PUR19110504-V10-40-page8.txt: [('-', ''), ('-', ''), ('-"Liberty"', '"Liberty"'), ('Camp-', 'Camp')] PUR19110511-V10-41-page1.txt: [('President.--', 'President.-'), ('CALIFORNIA-', 'CALIFORNIA'), ('litte-', 'litte'), ('-and', 'and'), ('-edniiiig', 'edniiiig'), ('-eqiiter', 'eqiiter'), ('-tic.id', 'tic.id'), ('-gotten', 'gotten'), ('-', ''), ('-', ''), ('-house', 'house'), ('-', '')] PUR19110511-V10-41-page2.txt: [('-', '')] PUR19110511-V10-41-page3.txt: [('Missions-', 'Missions'), ('Record-', 'Record'), ('DIS-', 'DIS')] PUR19110511-V10-41-page4.txt: [('at-', 'at'), ('that-', 'that'), ('-minutes.', 'minutes.')] PUR19110511-V10-41-page5.txt: [('-', ''), ('Up-', 'Up'), ('-e', 'e'), ("h'-", "h'"), ('-a', 'a'), ('-', '')] PUR19110511-V10-41-page7.txt: [('re-', 're'), ('-', ''), ('-', ''), ('-.', '.')] PUR19110511-V10-41-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Camp-', 'Camp'), ('WiI-', 'WiI')] PUR19110518-V10-42-page1.txt: [('-weeks', 'weeks'), ('-', ''), ('-', '')] PUR19110518-V10-42-page2.txt: [('-', ''), ('-use', 'use'), ('-voice', 'voice'), ('-shares', 'shares'), ('r-', 'r'), ('-Will', 'Will'), ('-materialize', 'materialize'), ('-Aliaspuds', 'Aliaspuds')] PUR19110518-V10-42-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110518-V10-42-page4.txt: [('-class', 'class')] PUR19110518-V10-42-page5.txt: [('-in', 'in')] PUR19110518-V10-42-page7.txt: [('examinations-', 'examinations'), ('de-', 'de')] PUR19110518-V10-42-page8.txt: [('-', ''), ('-', ''), ('-stopped', 'stopped'), ('-North', 'North'), ('camp-', 'camp'), ('-work', 'work'), ('-with', 'with'), ('-', ''), ('-class', 'class')] PUR19110525-V10-43-page1.txt: [('-', ''), ('-that', 'that')] PUR19110525-V10-43-page2.txt: [('-', ''), ('-the', 'the'), ('-to', 'to'), ('-every', 'every'), ('-people', 'people'), ('-the', 'the'), ('--', '-'), ('-', ''), ('and-', 'and'), ('-', ''), ('-', '')] PUR19110525-V10-43-page3.txt: [('ap-', 'ap'), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('-press', 'press'), ('-reduced', 'reduced'), ('MOIL--', 'MOIL-'), ('-ealk', 'ealk'), ('I-', 'I')] PUR19110525-V10-43-page4.txt: [('work-', 'work'), ('-', ''), ('--Verah', '-Verah'), ('-trittbli.', 'trittbli.'), ('-', ''), ('-', ''), ('-memory', 'memory'), ('-children', 'children'), ('-Our', 'Our'), ('-always', 'always'), ('-of', 'of'), ('-', ''), ('-the', 'the'), ('-six', 'six'), ('-the', 'the'), ('-', ''), ('-', '')] PUR19110525-V10-43-page5.txt: [('Un-', 'Un'), ('Holtville-', 'Holtville'), ('--', '-'), ('-Every', 'Every')] PUR19110525-V10-43-page6.txt: [('-', ''), ('-in', 'in'), ('-for', 'for'), ('pa-', 'pa'), ('-Guide"', 'Guide"')] PUR19110525-V10-43-page7.txt: [("unusually'-", "unusually'"), ('-', ''), ('-', ''), ('-', ''), ('I.-', 'I.'), ('"Re-', '"Re'), ('-view', 'view')] PUR19110525-V10-43-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-years', 'years')] PUR19110601-V10-44-page1.txt: [('-', ''), ('-wonder', 'wonder'), ('-then', 'then'), ('-bays', 'bays'), ('-enclosure', 'enclosure')] PUR19110601-V10-44-page2.txt: [('Chang-', 'Chang'), ('meet-', 'meet'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19110601-V10-44-page3.txt: [('-Racine', 'Racine')] PUR19110601-V10-44-page5.txt: [('sug-', 'sug')] PUR19110601-V10-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110608-V10-45-page1.txt: [('-Spirit', 'Spirit'), ('-', ''), ('the-', 'the'), ('-the', 'the'), ('-', '')] PUR19110608-V10-45-page2.txt: [('-and', 'and'), ('to-', 'to'), ('of-', 'of'), ('-RV', 'RV')] PUR19110608-V10-45-page3.txt: [('-', ''), ('-akland', 'akland'), ('CALIFORNIA-', 'CALIFORNIA'), ('-Q.', 'Q.'), ('closing-', 'closing'), ('-', ''), ('-furtherance', 'furtherance'), ('per-', 'per')] PUR19110608-V10-45-page4.txt: [('-', ''), ('-', ''), ('Note.-', 'Note.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('homes-', 'homes'), ('-', ''), ('-July', 'July')] PUR19110608-V10-45-page5.txt: [('Sun.-', 'Sun.'), ('-', '')] PUR19110608-V10-45-page6.txt: [('ALTPORNIA-', 'ALTPORNIA')] PUR19110608-V10-45-page7.txt: [('"Sa-', '"Sa'), ('-mind', 'mind'), ('-.', '.'), ('-Wondered', 'Wondered'), ('-', ''), ('-', ''), ('-', ''), ('work-', 'work'), ('-', ''), ('-', ''), ('-', '')] PUR19110608-V10-45-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Camp-', 'Camp'), ('-', ''), ('-', ''), ('-', '')] PUR19110615-V10-46-page1.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110615-V10-46-page3.txt: [('--', '-')] PUR19110615-V10-46-page4.txt: [('Con-', 'Con'), ('Sabbath-', 'Sabbath')] PUR19110615-V10-46-page5.txt: [('Sabbath-', 'Sabbath'), ('-', '')] PUR19110615-V10-46-page6.txt: [('-', ''), ('dis-', 'dis'), ('in-', 'in'), ('Camp-', 'Camp')] PUR19110615-V10-46-page7.txt: [('July-', 'July'), ('-German', 'German')] PUR19110615-V10-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Union', 'Union'), ('-Union', 'Union')] PUR19110622-V10-47-page1.txt: [('Office.-', 'Office.'), ('President.-', 'President.'), ('Treasurer.-', 'Treasurer.'), ('Secretary.-', 'Secretary.'), ('Secretary.-', 'Secretary.'), ('Secretary.-', 'Secretary.'), ('Agent.-', 'Agent.'), ('bur-', 'bur')] PUR19110622-V10-47-page3.txt: [('Berke-', 'Berke')] PUR19110622-V10-47-page4.txt: [('UNION-', 'UNION'), ('re-', 're'), ('--', '-')] PUR19110622-V10-47-page5.txt: [('-', ''), ('-works', 'works'), ('-upon', 'upon'), ('six.-', 'six.'), ('-been', 'been')] PUR19110622-V10-47-page7.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110622-V10-47-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ("-God's", "God's"), ('-unqualified', 'unqualified'), ('-booklet', 'booklet'), ('-Several', 'Several'), ('-one', 'one')] PUR19110629-V10-48-page1.txt: [('presi-', 'presi')] PUR19110629-V10-48-page2.txt: [('-', ''), ('-cover', 'cover')] PUR19110629-V10-48-page4.txt: [('-', ''), ('-.', '.')] PUR19110629-V10-48-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-In', 'In'), ('hold-', 'hold'), ('-Adventist', 'Adventist'), ('nine-', 'nine')] PUR19110629-V10-48-page6.txt: [('Fin-', 'Fin'), ('-"If', '"If'), ('Advent-', 'Advent')] PUR19110629-V10-48-page7.txt: [('--', '-')] PUR19110629-V10-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-not', 'not'), ('-', ''), ('-', '')] PUR19110706-V10-49-page1.txt: [('prepared--', 'prepared-'), ('-.', '.')] PUR19110706-V10-49-page3.txt: [('-weal', 'weal'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110706-V10-49-page4.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('Gail--', 'Gail-'), ('breath"--.--', 'breath"--.-')] PUR19110706-V10-49-page5.txt: [('-', ''), ('-', '')] PUR19110706-V10-49-page6.txt: [('-Him', 'Him'), ('-', '')] PUR19110706-V10-49-page7.txt: [('-the', 'the'), ('-fines', 'fines'), ('CRISLER.-', 'CRISLER.'), ('-born', 'born'), ('-', '')] PUR19110706-V10-49-page8.txt: [('PACIFI.-', 'PACIFI.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110713-V10-50-page1.txt: [('-followed', 'followed')] PUR19110713-V10-50-page2.txt: [('pres-', 'pres'), ('-entation', 'entation'), ('-course', 'course'), ('Text-', 'Text')] PUR19110713-V10-50-page3.txt: [('-"Practical', '"Practical'), ('-', ''), ('-', ''), ('de-', 'de'), ('-', ''), ('-week', 'week'), ('-Brethren', 'Brethren')] PUR19110713-V10-50-page4.txt: [('RE-', 'RE')] PUR19110713-V10-50-page5.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110713-V10-50-page7.txt: [('-make', 'make'), ('at-', 'at'), ('-work.', 'work.')] PUR19110713-V10-50-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-the', 'the'), ('-', ''), ('-', ''), ('Cali-', 'Cali')] PUR19110720-V10-51-page1.txt: [('---', '--'), ('-', ''), ('is-', 'is'), ('ole-', 'ole'), ('-Z.rgsrirr', 'Z.rgsrirr')] PUR19110720-V10-51-page2.txt: [('-of', 'of'), ('-harmony', 'harmony')] PUR19110720-V10-51-page4.txt: [('-glad', 'glad'), ('-Cal.', 'Cal.')] PUR19110720-V10-51-page5.txt: [('-', ''), ('-T.', 'T.'), ("'de-", "'de"), ('-Ose', 'Ose'), ('-', ''), ('God.-', 'God.')] PUR19110720-V10-51-page6.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-or', 'or')] PUR19110720-V10-51-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con')] PUR19110727-V10-52-page1.txt: [('-twe-', 'twe-'), ('Rus-', 'Rus')] PUR19110727-V10-52-page2.txt: [('-prayer', 'prayer'), ('-', '')] PUR19110727-V10-52-page3.txt: [('di-', 'di')] PUR19110727-V10-52-page4.txt: [('-Napa', 'Napa')] PUR19110727-V10-52-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-', ''), ('-ho', 'ho')] PUR19110727-V10-52-page6.txt: [('-', '')] PUR19110727-V10-52-page7.txt: [('--', '-')] PUR19110727-V10-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110803-V11-01-page1.txt: [('weak-', 'weak'), ('Treasurer.--', 'Treasurer.-'), ('Secretary.--', 'Secretary.-')] PUR19110803-V11-01-page2.txt: [('-', '')] PUR19110803-V11-01-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19110803-V11-01-page4.txt: [('California-', 'California'), ('porch-', 'porch')] PUR19110803-V11-01-page5.txt: [('and-', 'and'), ('-', ''), ('and-', 'and'), ('-', '')] PUR19110803-V11-01-page7.txt: [('-in', 'in'), ('-knit', 'knit'), ('-', '')] PUR19110803-V11-01-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-their', 'their'), ('-the', 'the'), ('-just', 'just'), ('-', '')] PUR19110810-V11-02-page6.txt: [('Mac-', 'Mac'), ('con-', 'con'), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('Beaqh-', 'Beaqh'), ('-attended.', 'attended.'), ('result-of-', 'result-of'), ('RE-', 'RE')] PUR19110810-V11-02-page7.txt: [('Mac-', 'Mac'), ('tem-', 'tem'), ('lead-', 'lead')] PUR19110810-V11-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('un-', 'un')] PUR19110817-V11-03-page1.txt: [('Thurs-', 'Thurs')] PUR19110817-V11-03-page2.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('California-', 'California')] PUR19110817-V11-03-page3.txt: [('-various', 'various'), ('-', ''), ('-others', 'others')] PUR19110817-V11-03-page4.txt: [('fin-', 'fin')] PUR19110817-V11-03-page5.txt: [('un-', 'un')] PUR19110817-V11-03-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110824-V11-04-page1.txt: [('thou-', 'thou'), ('-a', 'a')] PUR19110824-V11-04-page2.txt: [('-', ''), ('-', ''), ('.-', '.'), ('.-', '.')] PUR19110824-V11-04-page3.txt: [('-', ''), ('-', ''), ('con-', 'con'), ('Member-', 'Member'), ('Evan-', 'Evan')] PUR19110824-V11-04-page4.txt: [('-', ''), ('-', ''), ('meet-', 'meet'), ('-', ''), ('-', '')] PUR19110824-V11-04-page5.txt: [('-', ''), ('Ac-', 'Ac'), ('-', ''), ('-', '')] PUR19110824-V11-04-page6.txt: [('ac-', 'ac'), ('recommenda-', 'recommenda')] PUR19110824-V11-04-page7.txt: [('-', ''), ('es-', 'es')] PUR19110824-V11-04-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('life.-', 'life.'), ('ENDING-', 'ENDING')] PUR19110831-V11-05-page1.txt: [('-with', 'with'), ('Secretary.--', 'Secretary.-'), ('-help', 'help')] PUR19110831-V11-05-page2.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('California-', 'California'), ('pros-', 'pros')] PUR19110831-V11-05-page3.txt: [('as-', 'as')] PUR19110831-V11-05-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19110831-V11-05-page5.txt: [('-', ''), ('-', '')] PUR19110831-V11-05-page6.txt: [('RE-', 'RE'), ('Con-', 'Con')] PUR19110831-V11-05-page7.txt: [('-Unquestionably', 'Unquestionably')] PUR19110831-V11-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110907-V11-06-page11.txt: [('-', ''), ('cer-', 'cer'), ('-The', 'The')] PUR19110907-V11-06-page13.txt: [('-', ''), ('contem-', 'contem')] PUR19110907-V11-06-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-spending', 'spending'), ('-', '')] PUR19110907-V11-06-page2.txt: [('-provided', 'provided')] PUR19110907-V11-06-page3.txt: [('-and', 'and'), ('-', '')] PUR19110907-V11-06-page6.txt: [('-a', 'a'), ('-', '')] PUR19110907-V11-06-page7.txt: [('-tbsence', 'tbsence'), ('-Union', 'Union')] PUR19110907-V11-06-page8.txt: [('-Will', 'Will')] PUR19110907-V11-06-page9.txt: [('-these', 'these')] PUR19110914-V11-07-page1.txt: [('disci-', 'disci'), ('dif-', 'dif')] PUR19110914-V11-07-page2.txt: [('-', '')] PUR19110914-V11-07-page6.txt: [('ag-', 'ag')] PUR19110914-V11-07-page7.txt: [('Johnson-', 'Johnson')] PUR19110914-V11-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19110921-V11-08-page2.txt: [('-', ''), ('-reception.', 'reception.'), ('.-', '.'), ('aceommoda-', 'aceommoda')] PUR19110921-V11-08-page3.txt: [('-our', 'our'), ('-', '')] PUR19110921-V11-08-page4.txt: [('efforts.-', 'efforts.'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19110921-V11-08-page5.txt: [('WALL.-', 'WALL.'), ('-', '')] PUR19110921-V11-08-page6.txt: [('lum-', 'lum'), ('prom-', 'prom')] PUR19110921-V11-08-page7.txt: [('t-.-', 't-.')] PUR19110921-V11-08-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('un-', 'un'), ('-', '')] PUR19110928-V11-09-page1.txt: [('occa-', 'occa')] PUR19110928-V11-09-page2.txt: [('-', ''), ('-', ''), ('-when', 'when'), ('tamp-', 'tamp')] PUR19110928-V11-09-page3.txt: [('-', ''), ('control.-', 'control.'), ('--', '-'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19110928-V11-09-page4.txt: [('secretary-', 'secretary'), ('-', ''), ('-talk', 'talk'), ('an-', 'an')] PUR19110928-V11-09-page5.txt: [('PACIFIC-', 'PACIFIC')] PUR19110928-V11-09-page6.txt: [('Amer-', 'Amer')] PUR19110928-V11-09-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111005-V11-10-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111005-V11-10-page5.txt: [('book-', 'book')] PUR19111005-V11-10-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19111012-V11-11-page2.txt: [('-', '')] PUR19111012-V11-11-page3.txt: [('con-', 'con'), ('tem-', 'tem')] PUR19111012-V11-11-page4.txt: [('CATIFORNIA-', 'CATIFORNIA'), ('build-', 'build'), ('-.', '.')] PUR19111012-V11-11-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111019-V11-12-page2.txt: [('---', '--'), ('your--', 'your-'), ('-', ''), ('-', ''), ('-', '')] PUR19111019-V11-12-page3.txt: [('-It', 'It')] PUR19111019-V11-12-page5.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111019-V11-12-page6.txt: [('fol-', 'fol'), ('-Week', 'Week'), ('-the', 'the'), ('CALIFORNIA-', 'CALIFORNIA'), ('-one', 'one'), ('-', '')] PUR19111019-V11-12-page7.txt: [('appli-', 'appli'), ('-o', 'o'), ('--', '-'), ('-', ''), ('Span-', 'Span'), ('-Viola', 'Viola'), ('-', '')] PUR19111019-V11-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111026-V11-13-page1.txt: [('-Why', 'Why')] PUR19111026-V11-13-page3.txt: [('fast-', 'fast')] PUR19111026-V11-13-page5.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111026-V11-13-page6.txt: [('-', '')] PUR19111026-V11-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('greet-', 'greet')] PUR19111102-V11-14-page1.txt: [('-urge', 'urge')] PUR19111102-V11-14-page2.txt: [('reach-', 'reach')] PUR19111102-V11-14-page3.txt: [('-a', 'a')] PUR19111102-V11-14-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111102-V11-14-page5.txt: [('YAZIFIC-', 'YAZIFIC')] PUR19111102-V11-14-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-as', 'as')] PUR19111109-V11-15-page1.txt: [('-the', 'the'), ('to-', 'to')] PUR19111109-V11-15-page2.txt: [('-', ''), ('-Ukiah', 'Ukiah')] PUR19111109-V11-15-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111109-V11-15-page6.txt: [('California-', 'California'), ('keep-', 'keep')] PUR19111109-V11-15-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111116-V11-16-page1.txt: [('-', '')] PUR19111116-V11-16-page2.txt: [('of-', 'of'), ('giv-', 'giv')] PUR19111116-V11-16-page3.txt: [('-day.', 'day.'), ('be-', 'be'), ('ap-', 'ap'), ('-', ''), ('-at', 'at')] PUR19111116-V11-16-page4.txt: [('-my', 'my'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19111116-V11-16-page5.txt: [('-', ''), ('ef-', 'ef')] PUR19111116-V11-16-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-California', 'California'), ('-', ''), ('-', ''), ('-', ''), ('-he', 'he'), ('-.Fith', '.Fith')] PUR19111123-V11-17-page1.txt: [('Switzerland.-', 'Switzerland.'), ('a-', 'a')] PUR19111123-V11-17-page2.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111123-V11-17-page3.txt: [('-that', 'that'), ('-overlooked', 'overlooked'), ('-wheneducation', 'wheneducation'), ('-', ''), ('-', ''), ('-becoming-awake', 'becoming-awake'), ('-the', 'the'), ('-fact', 'fact'), ('OS-DER-', 'OS-DER')] PUR19111123-V11-17-page4.txt: [('radia-', 'radia')] PUR19111123-V11-17-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('Be-', 'Be'), ('fin-', 'fin')] PUR19111123-V11-17-page7.txt: [('then-', 'then'), ('-His', 'His'), ('danger.-', 'danger.'), ('FRANK.-', 'FRANK.'), ('-', ''), ('.-', '.'), ('-', ''), ('UNION-', 'UNION')] PUR19111123-V11-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111130-V11-18-page1.txt: [('Office.--', 'Office.-'), ('-The', 'The'), ('avor-', 'avor'), ('-', ''), ('-general', 'general')] PUR19111130-V11-18-page3.txt: [('-', ''), ('-', '')] PUR19111130-V11-18-page4.txt: [('RE-', 'RE'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111130-V11-18-page5.txt: [('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19111130-V11-18-page6.txt: [('-', ''), ('-will', 'will'), ('-day', 'day')] PUR19111130-V11-18-page7.txt: [('-', ''), ('F-', 'F'), ('-.', '.'), ('.S-', '.S'), ('-', ''), ('-', '')] PUR19111130-V11-18-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111207-V11-19-page2.txt: [('prog-', 'prog'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111207-V11-19-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19111207-V11-19-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111207-V11-19-page5.txt: [('for-', 'for')] PUR19111207-V11-19-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('mul-', 'mul'), ('-', '')] PUR19111214-V11-20-page1.txt: [('-', ''), ('-', '')] PUR19111214-V11-20-page2.txt: [('-of', 'of'), ('pre-', 'pre')] PUR19111214-V11-20-page3.txt: [('--', '-'), ('-', ''), ('brothgen-', 'brothgen')] PUR19111214-V11-20-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19111214-V11-20-page5.txt: [('-', ''), ('California-', 'California'), ('-', ''), ('-View', 'View')] PUR19111214-V11-20-page6.txt: [('-cvho', 'cvho'), ('translation-', 'translation')] PUR19111214-V11-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('too-', 'too')] PUR19111221-V11-21-page1.txt: [('Secretary.--', 'Secretary.-'), ('-meetint', 'meetint'), ('CALIFORNIA-', 'CALIFORNIA'), ('fain-', 'fain'), ('-', '')] PUR19111221-V11-21-page3.txt: [('-God', 'God'), ('-medical', 'medical'), ('-afnkt', 'afnkt'), ('-devices', 'devices'), ('"Putri-', '"Putri')] PUR19111221-V11-21-page4.txt: [('have-', 'have'), ('-United', 'United'), ('-lack', 'lack'), ('-', '')] PUR19111221-V11-21-page5.txt: [('-to', 'to'), ('-A', 'A'), ('-w', 'w'), ('-', ''), ('-', ''), ('-of', 'of'), ('-t', 't'), ('-pit', 'pit')] PUR19111221-V11-21-page7.txt: [('-.', '.'), ('pub-', 'pub'), ("'sorrows.-shirret-", "'sorrows.-shirret"), ('-', ''), ('faith-', 'faith'), ("'--", "'-"), ('more.-', 'more.')] PUR19111221-V11-21-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19111228-V11-22-page1.txt: [('-are', 'are'), ('-realtreasure.', 'realtreasure.'), ('-o', 'o'), ('-', ''), ('We-', 'We'), ('-', ''), ('-e', 'e')] PUR19111228-V11-22-page2.txt: [('PACIFICITNION-', 'PACIFICITNION'), ('-', ''), ('-', '')] PUR19111228-V11-22-page3.txt: [('-promises', 'promises'), ('success.-', 'success.'), ('-', ''), ('-', ''), ('-or', 'or'), ('ex-', 'ex'), ('thosewho-', 'thosewho'), ('-of', 'of'), ('-new', 'new'), ('-while', 'while'), ('-', ''), ("'My-", "'My"), ('-in', 'in')] PUR19111228-V11-22-page4.txt: [('California-', 'California')] PUR19111228-V11-22-page5.txt: [('-prayer', 'prayer'), ('-saying', 'saying'), ('ad-', 'ad'), ('-', ''), ('erta-', 'erta'), ('-to', 'to'), ('-recognized', 'recognized'), ('-RE', 'RE'), ('-boys', 'boys'), ('sum-', 'sum')] PUR19111228-V11-22-page6.txt: [('-mile', 'mile')] PUR19111228-V11-22-page7.txt: [('-young', 'young'), ('-', ''), ('-', ''), ('Ari-', 'Ari'), ('--', '-')] PUR19111228-V11-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120104-V11-23-page1.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Summer', 'Summer'), ('-', ''), ('-', ''), ('-', ''), ('-bip', 'bip'), ('achaale--', 'achaale-'), ('Seve-', 'Seve'), ('-Christian', 'Christian'), ('ar-', 'ar')] PUR19120104-V11-23-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-Union', 'Union'), ('-Voted', 'Voted')] PUR19120104-V11-23-page3.txt: [('and--', 'and-'), ('-That', 'That'), ('bm-', 'bm'), ('-the', 'the'), ('coun-', 'coun'), ('Grade-', 'Grade'), ('-', ''), ('-', ''), ('Be-', 'Be'), ('-time', 'time')] PUR19120104-V11-23-page4.txt: [('-unseal', 'unseal')] PUR19120104-V11-23-page5.txt: [('-', ''), ('-Lord', 'Lord'), ('-', ''), ('-writ', 'writ')] PUR19120104-V11-23-page6.txt: [('RE-', 'RE')] PUR19120104-V11-23-page7.txt: [('pagoora----', 'pagoora---'), ('pre-', 'pre'), ('-', ''), ('"chances-', '"chances')] PUR19120104-V11-23-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120111-V11-24-page1.txt: [('-', '')] PUR19120111-V11-24-page2.txt: [('gath-', 'gath')] PUR19120111-V11-24-page3.txt: [('Battle-', 'Battle'), ('-nitaininatiiiiiSi', 'nitaininatiiiiiSi'), ('-', '')] PUR19120111-V11-24-page4.txt: [('-', ''), ('Reading-', 'Reading'), ('-', ''), ('-the', 'the')] PUR19120111-V11-24-page5.txt: [('-', ''), ('-', ''), ('eoun-', 'eoun')] PUR19120111-V11-24-page6.txt: [('-RECaRDER', 'RECaRDER'), ('-arious', 'arious')] PUR19120111-V11-24-page7.txt: [('-', ''), ('-', ''), ('BrPTENCORT.---', 'BrPTENCORT.--'), ('-Irwin', 'Irwin')] PUR19120111-V11-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('inter-', 'inter'), ('Care-', 'Care')] PUR19120118-V11-25-page1.txt: [('fun-', 'fun'), ('-', '')] PUR19120118-V11-25-page2.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-', '')] PUR19120118-V11-25-page3.txt: [('-', '')] PUR19120118-V11-25-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Intoler-', 'Intoler'), ('the-', 'the'), ('-.', '.'), ('-', ''), ('-', ''), ('the-', 'the')] PUR19120125-V11-26-page1.txt: [('-their', 'their')] PUR19120125-V11-26-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-', ''), ('understand-', 'understand'), ('-', ''), ('Jan.-', 'Jan.'), ('Sabbath-', 'Sabbath')] PUR19120125-V11-26-page4.txt: [('-December', 'December'), ('-interested', 'interested'), ('-out', 'out')] PUR19120125-V11-26-page5.txt: [('-.I', '.I'), ('-shall', 'shall'), ('-was', 'was'), ('Miss-', 'Miss')] PUR19120125-V11-26-page7.txt: [('Healds-', 'Healds'), ('-.', '.')] PUR19120125-V11-26-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-just', 'just'), ('-to', 'to'), ('RE-', 'RE'), ('or-', 'or')] PUR19120201-V11-27-page10.txt: [('AT.TVORNIA-', 'AT.TVORNIA'), ('-Missionary', 'Missionary')] PUR19120201-V11-27-page11.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('mils-', 'mils'), ('there-', 'there')] PUR19120201-V11-27-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mc-', 'Mc'), ('-', ''), ('-time', 'time'), ('-also', 'also')] PUR19120201-V11-27-page2.txt: [('-', ''), ('em-', 'em')] PUR19120201-V11-27-page3.txt: [('-', ''), ('-invested', 'invested')] PUR19120201-V11-27-page4.txt: [('-PACIFIC', 'PACIFIC'), ('Danish-', 'Danish'), ('-', '')] PUR19120201-V11-27-page5.txt: [('-', ''), ('gentle-', 'gentle'), ('-inch', 'inch')] PUR19120201-V11-27-page7.txt: [('-principles', 'principles'), ('-', ''), ('-a', 'a'), ('in-', 'in'), ("-Pft''", "Pft''")] PUR19120201-V11-27-page8.txt: [('get-', 'get'), ('-ting', 'ting'), ('-', ''), ('Southern-', 'Southern'), ('fea-', 'fea')] PUR19120201-V11-27-page9.txt: [('portion-', 'portion'), ('-UNION', 'UNION')] PUR19120208-V11-28-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120208-V11-28-page5.txt: [('LYTTAKER.-', 'LYTTAKER.'), ('REITZELL.-', 'REITZELL.')] PUR19120208-V11-28-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('les-', 'les')] PUR19120215-V11-29-page1.txt: [('seventy-seven-', 'seventy-seven'), ('mission-', 'mission'), ('ap-', 'ap'), ('-it', 'it')] PUR19120215-V11-29-page10.txt: [('-', ''), ('-in', 'in'), ('unde-', 'unde'), ('cir-', 'cir')] PUR19120215-V11-29-page11.txt: [('PACIFIC.-', 'PACIFIC.'), ('UNION-', 'UNION')] PUR19120215-V11-29-page13.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120215-V11-29-page15.txt: [('-UNION', 'UNION'), ('-', '')] PUR19120215-V11-29-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Wednesday', 'Wednesday'), ('en-', 'en')] PUR19120215-V11-29-page2.txt: [('-', '')] PUR19120215-V11-29-page3.txt: [('-', '')] PUR19120215-V11-29-page6.txt: [('foun-', 'foun')] PUR19120215-V11-29-page7.txt: [('-', ''), ('CON-', 'CON'), ('DECEM-', 'DECEM'), ('-UNION', 'UNION'), ('END-', 'END'), ('offer-', 'offer')] PUR19120215-V11-29-page8.txt: [('DECEM-', 'DECEM'), ('-', ''), ('-', ''), ('Jan.-', 'Jan.'), ('Sabbath-', 'Sabbath'), ('corn-', 'corn'), ('Con-', 'Con')] PUR19120215-V11-29-page9.txt: [('Gott-', 'Gott')] PUR19120222-V11-30-page2.txt: [('SABBATH-', 'SABBATH'), ('-week', 'week'), ('-', ''), ('b.c.-', 'b.c.'), ('-', '')] PUR19120222-V11-30-page3.txt: [('recovery-', 'recovery'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120222-V11-30-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Value', 'Value'), ('Findlay-', 'Findlay'), ('-the', 'the'), ('-', '')] PUR19120229-V11-31-page1.txt: [('PA-', 'PA'), ('among-', 'among'), ('-the', 'the'), ('-men', 'men'), ('were-', 'were')] PUR19120229-V11-31-page2.txt: [('-', '')] PUR19120229-V11-31-page3.txt: [('Chang-', 'Chang'), ('bat-', 'bat'), ('-had', 'had'), ('revolu-', 'revolu')] PUR19120229-V11-31-page4.txt: [('conclusions.-', 'conclusions.'), ('SABBATH-', 'SABBATH'), ('issue.-', 'issue.'), ('deserves.-', 'deserves.')] PUR19120229-V11-31-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-Nye', 'Nye')] PUR19120229-V11-31-page6.txt: [('-', ''), ('-', '')] PUR19120229-V11-31-page7.txt: [('DEETKIN.--', 'DEETKIN.-')] PUR19120229-V11-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120307-V11-32-page1.txt: [('work-', 'work'), ('se-', 'se'), ('South.-', 'South.'), ('tperolvh-', 'tperolvh')] PUR19120307-V11-32-page2.txt: [('-', ''), ('-', '')] PUR19120307-V11-32-page3.txt: [('-', ''), ('-N', 'N')] PUR19120307-V11-32-page4.txt: [('-the', 'the'), ('-of', 'of')] PUR19120307-V11-32-page5.txt: [('-engaged', 'engaged'), ('-we', 'we'), ('-', '')] PUR19120307-V11-32-page6.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120307-V11-32-page7.txt: [('-', ''), ('-', ''), ('--', '-'), ('-', '')] PUR19120307-V11-32-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120314-V11-33-page1.txt: [('-', ''), ('-', '')] PUR19120314-V11-33-page3.txt: [('-', ''), ('Inter-', 'Inter'), ('-', ''), ('-Solet', 'Solet')] PUR19120314-V11-33-page4.txt: [('Anti-', 'Anti'), ('-', '')] PUR19120314-V11-33-page6.txt: [('pur--', 'pur-'), ('CALIFORNIA-', 'CALIFORNIA'), ('-', '')] PUR19120314-V11-33-page7.txt: [('entitled-', 'entitled')] PUR19120314-V11-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('RE-', 'RE')] PUR19120321-V11-34-page1.txt: [('thegos-', 'thegos'), ('-', ''), ('-', ''), ('-share', 'share'), ('-and', 'and'), ('-', ''), ('-no--blessing', 'no--blessing')] PUR19120321-V11-34-page10.txt: [('-', '')] PUR19120321-V11-34-page11.txt: [('worship.--', 'worship.-'), ('-thought', 'thought'), ('CALIFORNIA-', 'CALIFORNIA'), ('convic-', 'convic'), ('-Aim', 'Aim'), ('ofsins-', 'ofsins'), ('-in', 'in')] PUR19120321-V11-34-page12.txt: [('-of', 'of')] PUR19120321-V11-34-page13.txt: [('-financial', 'financial'), ('-', ''), ('-it', 'it'), ('-', ''), ('-than', 'than'), ('-of', 'of')] PUR19120321-V11-34-page14.txt: [('-', ''), ('mis-', 'mis'), ('-', ''), ('Corn-', 'Corn')] PUR19120321-V11-34-page15.txt: [('to-', 'to'), ('-', ''), ('-', ''), ('neighborhoods.--', 'neighborhoods.-')] PUR19120321-V11-34-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-of', 'of')] PUR19120321-V11-34-page4.txt: [('---', '--')] PUR19120321-V11-34-page5.txt: [('-', ''), ('-', ''), ('-maintained', 'maintained'), ('-', ''), ('-of', 'of'), ('-are', 'are'), ('-', ''), ('-', ''), ('-', ''), ('Sam-', 'Sam')] PUR19120321-V11-34-page6.txt: [('-kept', 'kept'), ('night-', 'night'), ('-went', 'went'), ('-not', 'not'), ('-after', 'after'), ('-', ''), ('-', ''), ("'Wonder-", "'Wonder")] PUR19120321-V11-34-page7.txt: [("-up'", "up'"), ('-Ete-vras', 'Ete-vras'), ('the-', 'the'), ('-of', 'of'), ('-', ''), ('-look', 'look'), ('-', ''), ('-', ''), ('-Q', 'Q')] PUR19120321-V11-34-page8.txt: [('-', '')] PUR19120321-V11-34-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-is', 'is'), ('-', ''), ('-', ''), ('-', ''), ('--JesiisaflOonatWr.', '-JesiisaflOonatWr.'), ("-'", "'"), ('epatF"ef.-', 'epatF"ef.'), ('directing-', 'directing'), ('-oriea', 'oriea'), ('--', '-'), ('-led', 'led')] PUR19120328-V11-35-page1.txt: [('said-', 'said'), ('-such', 'such'), ('-sin', 'sin'), ('-labors', 'labors'), ('en-', 'en'), ("-the'", "the'"), ('-sad', 'sad'), ('-pretedi', 'pretedi'), ('-of', 'of'), ('reprove"-', 'reprove"')] PUR19120328-V11-35-page3.txt: [('at-', 'at'), ('-called', 'called'), ('-We', 'We'), ('-', ''), ('-', ''), ('-living', 'living'), ('bringsome-', 'bringsome'), ('-The', 'The'), ('-', ''), ('-', ''), ('measure-', 'measure'), ('-UNION', 'UNION')] PUR19120328-V11-35-page4.txt: [('REGORDE-R---', 'REGORDE-R--'), ('-', ''), ('-.', '.'), ('con-', 'con')] PUR19120328-V11-35-page5.txt: [('-.shown', '.shown'), ('Mess.-', 'Mess.'), ('-told', 'told'), ('-open', 'open'), ('---', '--'), ('-What', 'What'), ('comei--', 'comei-'), ('---', '--'), ('of-', 'of'), ('-', ''), ('-', ''), ('into-', 'into')] PUR19120328-V11-35-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('be-', 'be'), ('Theydis-', 'Theydis'), ('-', ''), ('them-', 'them')] PUR19120328-V11-35-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-His', 'His'), ('-', ''), ('-EDgit', 'EDgit')] PUR19120328-V11-35-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120404-V11-36-page1.txt: [('-', ''), ('-to', 'to'), ('-Very', 'Very'), ('ex-', 'ex'), ('-tent.', 'tent.')] PUR19120404-V11-36-page2.txt: [('-which', 'which'), ('-audience', 'audience'), ('-', ''), ('--', '-'), ('--', '-'), ('-', ''), ('message-', 'message'), ('s-', 's'), ('-', '')] PUR19120404-V11-36-page3.txt: [('every-', 'every')] PUR19120404-V11-36-page4.txt: [('-', '')] PUR19120404-V11-36-page5.txt: [('-', ''), ('-', ''), ('-', '')] PUR19120404-V11-36-page6.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120404-V11-36-page7.txt: [('-and', 'and'), ('Ore-', 'Ore'), ('sister-', 'sister'), ('-R', 'R')] PUR19120404-V11-36-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('E.-', 'E.'), ('Ne-', 'Ne'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120411-V11-37-page1.txt: [('-fficY', 'fficY'), ('-where', 'where')] PUR19120411-V11-37-page2.txt: [('-into', 'into')] PUR19120411-V11-37-page3.txt: [('ley-', 'ley')] PUR19120411-V11-37-page4.txt: [('-Sad', 'Sad')] PUR19120411-V11-37-page5.txt: [('sis-', 'sis'), ('-terq', 'terq'), ('-who', 'who'), ('-they', 'they'), ('-burning', 'burning')] PUR19120411-V11-37-page7.txt: [('-.', '.'), ('-.', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('tO-', 'tO')] PUR19120411-V11-37-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120418-V11-38-page1.txt: [('earth-', 'earth'), ('-a', 'a'), ('-whole', 'whole')] PUR19120418-V11-38-page10.txt: [('-number', 'number'), ('-of', 'of')] PUR19120418-V11-38-page11.txt: [('-', ''), ('-', ''), ('-under', 'under')] PUR19120418-V11-38-page12.txt: [('California-', 'California'), ('-', ''), ('-', ''), ('-The', 'The')] PUR19120418-V11-38-page13.txt: [('-and', 'and'), ('Thepeo-', 'Thepeo'), ('-lamps', 'lamps')] PUR19120418-V11-38-page14.txt: [('-.off', '.off'), ('as-', 'as'), ('-Union', 'Union'), ('-fl', 'fl'), ('-', ''), ('culti-', 'culti')] PUR19120418-V11-38-page15.txt: [('-not', 'not'), ('therued-', 'therued')] PUR19120418-V11-38-page17.txt: [('-', ''), ('-', ''), ('-', '')] PUR19120418-V11-38-page18.txt: [('-a', 'a'), ('-', ''), ('--', '-')] PUR19120418-V11-38-page2.txt: [('de-', 'de'), ('-', '')] PUR19120418-V11-38-page20.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120418-V11-38-page3.txt: [('-With', 'With'), ('-agencies', 'agencies'), ('-we', 'we'), ('-', '')] PUR19120418-V11-38-page4.txt: [('Seventh-', 'Seventh'), ('-', ''), ('RE-', 'RE'), ('Expenses-', 'Expenses'), ('RE-', 'RE')] PUR19120418-V11-38-page5.txt: [('-', ''), ('-', '')] PUR19120418-V11-38-page6.txt: [('-', ''), ('confer-', 'confer'), ('-and', 'and'), ('re-', 're'), ('-Conferences', 'Conferences'), ('-', '')] PUR19120418-V11-38-page8.txt: [('-', '')] PUR19120418-V11-38-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-', ''), ('-Union', 'Union'), ('-', ''), ('-UNION-RECORDER', 'UNION-RECORDER')] PUR19120425-V11-39-page1.txt: [('-saz', 'saz'), ('-', ''), ('e-', 'e'), ('-the', 'the'), ('-', '')] PUR19120425-V11-39-page2.txt: [('-their', 'their'), ('-', '')] PUR19120425-V11-39-page3.txt: [('-', ''), ('-', ''), ('-"Who', '"Who'), ('-', '')] PUR19120425-V11-39-page5.txt: [('-', ''), ('by-', 'by'), ('-Beddoe.', 'Beddoe.'), ('the-', 'the')] PUR19120425-V11-39-page6.txt: [('--', '-'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120425-V11-39-page7.txt: [('-in', 'in'), ('-Bidwell', 'Bidwell'), ('-of', 'of'), ('-us', 'us')] PUR19120425-V11-39-page8.txt: [('-room', 'room'), ('-room', 'room'), ('-', ''), ('-room', 'room'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120502-V11-40-page1.txt: [('-nurses.', 'nurses.')] PUR19120502-V11-40-page4.txt: [('Sabbath-', 'Sabbath'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120502-V11-40-page5.txt: [('recom-', 'recom'), ('-mended', 'mended'), ('-their', 'their'), ('uncle-', 'uncle')] PUR19120502-V11-40-page6.txt: [('-of', 'of'), ('-a', 'a')] PUR19120502-V11-40-page7.txt: [('-', ''), ('--', '-'), ('--', '-'), ('-z', 'z')] PUR19120502-V11-40-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-room', 'room'), ('-room', 'room'), ('-', ''), ('-room', 'room')] PUR19120509-V11-41-page1.txt: [('ben-', 'ben')] PUR19120509-V11-41-page2.txt: [('Sabbath-', 'Sabbath'), ('-', ''), ('-short', 'short')] PUR19120509-V11-41-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120509-V11-41-page5.txt: [('-', ''), ('-', ''), ('-have', 'have')] PUR19120509-V11-41-page6.txt: [('-among', 'among')] PUR19120509-V11-41-page7.txt: [('-', ''), ('prin-', 'prin'), ('REID.-', 'REID.'), ('-wide', 'wide')] PUR19120509-V11-41-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120516-V11-42-page1.txt: [('-', ''), ('-has', 'has'), ('-in', 'in')] PUR19120516-V11-42-page2.txt: [('-meeting.', 'meeting.')] PUR19120516-V11-42-page4.txt: [('-to', 'to')] PUR19120516-V11-42-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('attend-', 'attend')] PUR19120516-V11-42-page7.txt: [('king-', 'king'), ('-to', 'to')] PUR19120516-V11-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('edu-', 'edu')] PUR19120523-V11-43-page1.txt: [('La-', 'La')] PUR19120523-V11-43-page2.txt: [('-', '')] PUR19120523-V11-43-page3.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120523-V11-43-page4.txt: [('-', '')] PUR19120523-V11-43-page5.txt: [('Sun-', 'Sun')] PUR19120523-V11-43-page7.txt: [('-with', 'with')] PUR19120523-V11-43-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120530-V11-44-page1.txt: [('-', ''), ('-conference', 'conference'), ('announce-', 'announce')] PUR19120530-V11-44-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120530-V11-44-page5.txt: [('Mc-', 'Mc'), ('recre-', 'recre'), ('-', '')] PUR19120530-V11-44-page7.txt: [('---', '--'), ('...www.--', '...www.-'), ('-', ''), ('-', ''), ('----', '---'), ('....-', '....'), ('-', ''), ('PEARSON.-', 'PEARSON.')] PUR19120530-V11-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('California-', 'California')] PUR19120606-V11-45-page1.txt: [('-', '')] PUR19120606-V11-45-page2.txt: [('-I', 'I'), ('Ex-', 'Ex')] PUR19120606-V11-45-page5.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120606-V11-45-page7.txt: [('at-', 'at'), ('experi-', 'experi')] PUR19120606-V11-45-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120613-V11-46-page1.txt: [('-held', 'held')] PUR19120613-V11-46-page3.txt: [('-', '')] PUR19120613-V11-46-page7.txt: [('BINGHAM.-', 'BINGHAM.')] PUR19120613-V11-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('th-', 'th'), ('-', '')] PUR19120620-V11-47-page1.txt: [('-', ''), ('-', '')] PUR19120620-V11-47-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19120620-V11-47-page4.txt: [('-', ''), ('money--', 'money-'), ('ter-', 'ter')] PUR19120620-V11-47-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mac-', 'Mac'), ('-', '')] PUR19120627-V11-48-page2.txt: [('-one', 'one'), ("People's-", "People's")] PUR19120627-V11-48-page3.txt: [('divi-', 'divi'), ('Confer-', 'Confer')] PUR19120627-V11-48-page5.txt: [('-', ''), ('California-', 'California'), ('California-', 'California'), ('Depart-', 'Depart')] PUR19120627-V11-48-page6.txt: [('-', ''), ('Ad-', 'Ad'), ('Doubt-', 'Doubt'), ('March-', 'March')] PUR19120627-V11-48-page7.txt: [('Al-', 'Al')] PUR19120627-V11-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120704-V11-49-page1.txt: [('-the', 'the')] PUR19120704-V11-49-page10.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120704-V11-49-page11.txt: [('Sabbath-', 'Sabbath'), ('"Sabbath-', '"Sabbath')] PUR19120704-V11-49-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Seventh-', 'Seventh')] PUR19120704-V11-49-page6.txt: [('-', ''), ('-', ''), ('Cal.-', 'Cal.'), ('stand-', 'stand')] PUR19120704-V11-49-page7.txt: [('-', ''), ('min-', 'min'), ('CALI-', 'CALI')] PUR19120704-V11-49-page8.txt: [('-', ''), ('and-', 'and')] PUR19120704-V11-49-page9.txt: [('ac-', 'ac')] PUR19120711-V11-50-page1.txt: [('hopelessly-', 'hopelessly'), ('"property-', '"property')] PUR19120711-V11-50-page3.txt: [('near-', 'near'), ('en-', 'en')] PUR19120711-V11-50-page4.txt: [('-RECORI', 'RECORI'), ('Seventh-', 'Seventh'), ('-before', 'before'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120711-V11-50-page6.txt: [('-', '')] PUR19120711-V11-50-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-cent', 'cent'), ('-', ''), ('-', '')] PUR19120718-V11-51-page1.txt: [('Gen-', 'Gen')] PUR19120718-V11-51-page2.txt: [('tre-', 'tre')] PUR19120718-V11-51-page4.txt: [('-', ''), ('De-', 'De')] PUR19120718-V11-51-page5.txt: [('-page', 'page')] PUR19120718-V11-51-page6.txt: [('Ad-', 'Ad'), ('-', ''), ('Seventh-', 'Seventh')] PUR19120718-V11-51-page7.txt: [('HARPER.-', 'HARPER.'), ('-', ''), ('PETERSON.-', 'PETERSON.'), ('-', ''), ('BECKWITH.--', 'BECKWITH.-'), ('-time', 'time')] PUR19120718-V11-51-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120725-V11-52-page1.txt: [('-', '')] PUR19120725-V11-52-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120725-V11-52-page3.txt: [('-workers', 'workers'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120725-V11-52-page4.txt: [('-', '')] PUR19120725-V11-52-page5.txt: [('-.', '.')] PUR19120725-V11-52-page6.txt: [('fore-', 'fore')] PUR19120725-V11-52-page7.txt: [('-copy', 'copy')] PUR19120725-V11-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('un-', 'un'), ('-to', 'to'), ('-copy', 'copy'), ('-page', 'page'), ('-work', 'work'), ('-work', 'work')] PUR19120801-V12-01-page2.txt: [('--UNION', '-UNION'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120801-V12-01-page3.txt: [('-', '')] PUR19120801-V12-01-page4.txt: [('--', '-')] PUR19120801-V12-01-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120808-V12-02-page2.txt: [('mes-', 'mes')] PUR19120808-V12-02-page5.txt: [('Superintend-', 'Superintend'), ('-', '')] PUR19120808-V12-02-page6.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120808-V12-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120815-V12-03-page1.txt: [('-', '')] PUR19120815-V12-03-page2.txt: [('-', ''), ('-', '')] PUR19120815-V12-03-page3.txt: [('-', ''), ('Fer-', 'Fer'), ('-', ''), ('mes-', 'mes')] PUR19120815-V12-03-page4.txt: [('-', '')] PUR19120815-V12-03-page5.txt: [('-', ''), ('Mis-', 'Mis'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120815-V12-03-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ef-', 'ef'), ('contin-', 'contin'), ('-', ''), ('-', '')] PUR19120815-V12-03-page7.txt: [('PA-', 'PA'), ('Mc-', 'Mc')] PUR19120815-V12-03-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Depart-', 'Depart'), ('-', '')] PUR19120822-V12-04-page1.txt: [('Missionary.--', 'Missionary.-'), ('-', ''), ('-', '')] PUR19120822-V12-04-page2.txt: [('-', ''), ('-readers', 'readers'), ('-', '')] PUR19120822-V12-04-page3.txt: [('-', ''), ('-.RE.COltakR', '.RE.COltakR')] PUR19120822-V12-04-page4.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-children', 'children'), ('-the', 'the')] PUR19120822-V12-04-page5.txt: [('-while', 'while')] PUR19120822-V12-04-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120829-V12-05-page1.txt: [('Lesson-', 'Lesson'), ('.-', '.'), ('sehodis.---', 'sehodis.--')] PUR19120829-V12-05-page3.txt: [('-all', 'all')] PUR19120829-V12-05-page4.txt: [('-', ''), ('-', ''), ('-church', 'church')] PUR19120829-V12-05-page5.txt: [('-', '')] PUR19120829-V12-05-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Agents', 'Agents')] PUR19120905-V12-06-page5.txt: [('-', ''), ('breth-', 'breth'), ('Chris-', 'Chris')] PUR19120905-V12-06-page6.txt: [('-that', 'that'), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120905-V12-06-page7.txt: [('ob-', 'ob'), ('en-', 'en'), ('at-', 'at'), ('re-', 're')] PUR19120905-V12-06-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('"-', '"')] PUR19120912-V12-07-page1.txt: [('-', '')] PUR19120912-V12-07-page2.txt: [('-Will', 'Will')] PUR19120912-V12-07-page3.txt: [('-year.', 'year.')] PUR19120912-V12-07-page4.txt: [('McSib-', 'McSib')] PUR19120912-V12-07-page5.txt: [('history-', 'history'), ('-Weep', 'Weep'), ('r-', 'r')] PUR19120912-V12-07-page6.txt: [('-', ''), ('camp-', 'camp')] PUR19120912-V12-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120919-V12-08-page10.txt: [('-as', 'as'), ('peo-', 'peo')] PUR19120919-V12-08-page11.txt: [('pulpit."--', 'pulpit."-')] PUR19120919-V12-08-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120919-V12-08-page2.txt: [('RE-', 'RE')] PUR19120919-V12-08-page3.txt: [('at-', 'at'), ('Member-', 'Member'), ('Attend-', 'Attend'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120919-V12-08-page4.txt: [('California-', 'California')] PUR19120919-V12-08-page5.txt: [('-', ''), ('ac-', 'ac'), ('-While', 'While')] PUR19120919-V12-08-page7.txt: [('-visiting', 'visiting'), ('sug-', 'sug'), ('completely-', 'completely')] PUR19120919-V12-08-page8.txt: [('-', '')] PUR19120919-V12-08-page9.txt: [('-', ''), ('-', '')] PUR19120926-V12-09-page1.txt: [('-', ''), ('pur-', 'pur')] PUR19120926-V12-09-page2.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19120926-V12-09-page3.txt: [('mission-', 'mission'), ('Sunday-', 'Sunday')] PUR19120926-V12-09-page4.txt: [('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19120926-V12-09-page5.txt: [('G-', 'G'), ('-', '')] PUR19120926-V12-09-page6.txt: [('pro-', 'pro'), ('-phetic', 'phetic'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19121003-V12-10-page2.txt: [('-', ''), ('-', ''), ('RE-', 'RE')] PUR19121003-V12-10-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19121003-V12-10-page4.txt: [('-', ''), ('hun-', 'hun'), ('-', ''), ('pub-', 'pub'), ('Period-', 'Period'), ('Enrol-', 'Enrol')] PUR19121003-V12-10-page5.txt: [('Denomina-', 'Denomina'), ('-', ''), ('-', '')] PUR19121003-V12-10-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Urquhart', 'Urquhart')] PUR19121010-V12-11-page1.txt: [('-Lucas', 'Lucas')] PUR19121010-V12-11-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19121010-V12-11-page4.txt: [('-', ''), ('-', ''), ('Everyfollow-', 'Everyfollow'), ('-entered', 'entered')] PUR19121010-V12-11-page5.txt: [('Oakland-', 'Oakland'), ('Oakland-', 'Oakland'), ('Col-', 'Col'), ('CALIFORNIA-', 'CALIFORNIA'), ('-end', 'end')] PUR19121010-V12-11-page7.txt: [('-the', 'the')] PUR19121010-V12-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-nd', 'nd')] PUR19121017-V12-12-page1.txt: [('-to', 'to')] PUR19121017-V12-12-page2.txt: [('Ameri-', 'Ameri')] PUR19121017-V12-12-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('de-', 'de')] PUR19121017-V12-12-page4.txt: [('asso-', 'asso')] PUR19121017-V12-12-page5.txt: [('Mc-', 'Mc')] PUR19121017-V12-12-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('bun-', 'bun')] PUR19121024-V12-13-page1.txt: [('Secreiar.-', 'Secreiar.'), ('-we', 'we'), ('hasnot-', 'hasnot'), ('-', ''), ('-', ''), ('confer-', 'confer')] PUR19121024-V12-13-page3.txt: [('per-', 'per'), ('de-', 'de'), ('-toted-', 'toted-'), ('-', '')] PUR19121024-V12-13-page5.txt: [('-God', 'God'), ('-', ''), ('"To-', '"To'), ('-far', 'far'), ('-.', '.'), ('-', ''), ('-ee', 'ee'), ('-', '')] PUR19121024-V12-13-page6.txt: [('Member-', 'Member')] PUR19121024-V12-13-page7.txt: [('CALIFORNIA-', 'CALIFORNIA'), ("-'work", "'work"), ('.-', '.')] PUR19121024-V12-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19121031-V12-14-page1.txt: [('-', ''), ('-', ''), ('-dust', 'dust'), ('-oquestion', 'oquestion'), ('-settled', 'settled'), ('lurthPral.-', 'lurthPral.'), ('-near-by', 'near-by'), ('-fast', 'fast'), ('-', '')] PUR19121031-V12-14-page2.txt: [('-The', 'The'), ('--', '-'), ('this."-', 'this."'), ('world."-', 'world."'), ('"needed."-', '"needed."'), ("church.''-", "church.''"), ('accountl-', 'accountl'), ('-Christ', 'Christ'), ('be-', 'be'), ("-accomplished'", "accomplished'"), ('-.much', '.much'), ('-sermonizing', 'sermonizing'), ('-', ''), ('-themselvesL', 'themselvesL'), ('theprivi-', 'theprivi'), ('-', '')] PUR19121031-V12-14-page3.txt: [('-the', 'the'), ('kind-', 'kind'), ('-given', 'given'), ('-faith.', 'faith.'), ('-for', 'for'), ('-', ''), ('benefiting-', 'benefiting'), ('-', ''), ('-', ''), ('-', ''), ('-may', 'may'), ('-', ''), ("-in.'neelkY", "in.'neelkY"), ("'eduea.-", "'eduea."), ('-', ''), ('-tge', 'tge'), ('-..', '..'), ('-the', 'the'), ('-', ''), ('-join', 'join'), ('-workers', 'workers'), ('-', ''), ('-ms', 'ms'), ('T-', 'T'), ('-slothfulcand-Whe', 'slothfulcand-Whe'), ('-', ''), ('-', '')] PUR19121031-V12-14-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19121031-V12-14-page5.txt: [('-tie', 'tie'), ('con-', 'con'), ('-', ''), ("-Iffre-ns'", "Iffre-ns'"), ('gkalW-', 'gkalW'), ('GertnIrieh-', 'GertnIrieh'), ('-', ''), ('-true', 'true'), ('-Ottindebt', 'Ottindebt'), ('-.Oar', '.Oar'), ('-UNION', 'UNION')] PUR19121031-V12-14-page6.txt: [('-', '')] PUR19121031-V12-14-page7.txt: [('friends-', 'friends'), ('-ENDING', 'ENDING'), ('li-', 'li'), ('-Christmas', 'Christmas'), ('-', ''), ('-', ''), ('-', ''), ('-H.', 'H.'), ('-gips', 'gips'), ('-', ''), ('-', ''), ('-are-.Eureka', 'are-.Eureka'), ('ruler-', 'ruler'), ('-work.i', 'work.i'), ('be-', 'be')] PUR19121031-V12-14-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19121107-V12-15-page1.txt: [('Office.-', 'Office.'), ('-office', 'office'), ('Vice-president.-', 'Vice-president.'), ('Treasurer.-', 'Treasurer.'), ('Secretary.-', 'Secretary.'), ('Secretary.-', 'Secretary.'), ('Missionary.-', 'Missionary.'), ('con-', 'con'), ('-', ''), ('-', ''), ('RE-', 'RE'), ('Confer-', 'Confer')] PUR19121107-V12-15-page2.txt: [('Com-', 'Com')] PUR19121107-V12-15-page3.txt: [('member-', 'member'), ('-ship', 'ship'), ('and-', 'and')] PUR19121107-V12-15-page4.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('fu-', 'fu'), ('-', '')] PUR19121107-V12-15-page5.txt: [('-', ''), ('-the-language', 'the-language'), ('are-', 'are'), ('-inealits', 'inealits'), ('-which', 'which'), ('-acquainted', 'acquainted')] PUR19121107-V12-15-page7.txt: [('fre-', 'fre')] PUR19121107-V12-15-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('California-', 'California')] PUR19121114-V12-16-page2.txt: [('-way', 'way'), ('-', ''), ('-', ''), ('-', '')] PUR19121114-V12-16-page3.txt: [('-meet', 'meet'), ('-.hope', '.hope'), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('-Utah', 'Utah'), ('-', '')] PUR19121114-V12-16-page4.txt: [('-', ''), ('-', ''), ('trans-', 'trans')] PUR19121114-V12-16-page5.txt: [('-', ''), ('-his', 'his'), ('-manuscript', 'manuscript')] PUR19121114-V12-16-page6.txt: [('-the', 'the')] PUR19121114-V12-16-page7.txt: [('-Ferry', 'Ferry'), ('bun-', 'bun'), ('rflowers-', 'rflowers'), ('Nearly-', 'Nearly'), ('-', ''), ('priceand-', 'priceand'), ('-', ''), ('-', ''), ('-will', 'will'), ('friends.-', 'friends.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Watch-', 'Watch'), ('Lib-', 'Lib'), ('Protes-', 'Protes'), ('-', '')] PUR19121114-V12-16-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-day', 'day'), ('hedges.-', 'hedges.'), ('-boy', 'boy'), ('-', ''), ('-in', 'in')] PUR19121121-V12-17-page1.txt: [('-with', 'with'), ('-care', 'care'), ('-', '')] PUR19121121-V12-17-page2.txt: [('-case', 'case'), ('-sadly', 'sadly'), ('but-', 'but'), ('-mother', 'mother')] PUR19121121-V12-17-page3.txt: [('e-', 'e'), ('-', ''), ('Me-', 'Me'), ('.-', '.')] PUR19121121-V12-17-page4.txt: [('-last', 'last'), ('-be', 'be'), ('ques-', 'ques'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19121121-V12-17-page5.txt: [('-quickly', 'quickly')] PUR19121121-V12-17-page6.txt: [('-prayer', 'prayer'), ('mission-', 'mission')] PUR19121121-V12-17-page7.txt: [('waste-', 'waste'), ('-', ''), ('-', ''), ('con-', 'con'), ('-this', 'this'), ('-a', 'a'), ("-'", "'"), ('-', ''), ('the-', 'the'), ('-daughter', 'daughter'), ('-', ''), ('-', '')] PUR19121121-V12-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('non-', 'non'), ('-', ''), ('-to', 'to')] PUR19121128-V12-18-page1.txt: [('Vice-president.--', 'Vice-president.-')] PUR19121128-V12-18-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19121128-V12-18-page5.txt: [('-', '')] PUR19121128-V12-18-page6.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('mis-', 'mis')] PUR19121128-V12-18-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-nearly', 'nearly'), ('-', ''), ('-', ''), ('-', '')] PUR19121205-V12-19-page1.txt: [('-', ''), ('-that', 'that'), ('-', '')] PUR19121205-V12-19-page2.txt: [('-church', 'church')] PUR19121205-V12-19-page3.txt: [('-effort', 'effort'), ('-tent', 'tent'), ('-have', 'have'), ('Op-', 'Op')] PUR19121205-V12-19-page5.txt: [('rail-', 'rail'), ('re-', 're')] PUR19121205-V12-19-page6.txt: [('BOOK-', 'BOOK'), ('-', ''), ('-', '')] PUR19121205-V12-19-page7.txt: [('PWCIR-W-', 'PWCIR-W'), ('-RIIRIV', 'RIIRIV')] PUR19121205-V12-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19121212-V12-20-page1.txt: [('-anitioue', 'anitioue'), ('-cent-a-week', 'cent-a-week'), ('-', ''), ('breth-', 'breth'), ('"Min-', '"Min')] PUR19121212-V12-20-page2.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('California-', 'California')] PUR19121212-V12-20-page3.txt: [('theun-', 'theun'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Litera--', 'Litera-')] PUR19121212-V12-20-page5.txt: [('-one', 'one'), ('asin-', 'asin'), ('intereSted.-', 'intereSted.'), ('testimony-', 'testimony'), ('-our', 'our'), ('-beep', 'beep'), ('-hea', 'hea'), ('Ob-', 'Ob'), ('-.', '.')] PUR19121212-V12-20-page7.txt: [('pre-', 'pre'), ('never-', 'never'), ('-ate', 'ate'), ('N.B.-', 'N.B.'), ('-yaw', 'yaw'), ('-distinct', 'distinct')] PUR19121212-V12-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19121219-V12-21-page1.txt: [('Vice-president.--', 'Vice-president.-'), ('-and', 'and')] PUR19121219-V12-21-page2.txt: [('danger-', 'danger'), ('CALIFORNIA-', 'CALIFORNIA'), ('-time', 'time'), ('-cent-aweek', 'cent-aweek')] PUR19121219-V12-21-page3.txt: [('-valley', 'valley'), ('in-', 'in'), ('-', '')] PUR19121219-V12-21-page4.txt: [('-', ''), ('-result', 'result'), ('MARTIN.-', 'MARTIN.'), ('E.-', 'E.'), ('-', ''), ('mar-', 'mar')] PUR19121219-V12-21-page5.txt: [('-thing', 'thing')] PUR19121219-V12-21-page6.txt: [('-', '')] PUR19121219-V12-21-page7.txt: [('-go-twheathen', 'go-twheathen')] PUR19121219-V12-21-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('-wander', 'wander'), ('Church-', 'Church')] PUR19121226-V12-22-page1.txt: [('suc-', 'suc')] PUR19121226-V12-22-page2.txt: [('-horsepower', 'horsepower'), ('-horse-power', 'horse-power'), ('-horse-power', 'horse-power'), ('-horse-power', 'horse-power')] PUR19121226-V12-22-page3.txt: [('-St.', 'St.'), ('-surplus', 'surplus')] PUR19121226-V12-22-page4.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-a', 'a')] PUR19121226-V12-22-page5.txt: [('-', ''), ('-', '')] PUR19121226-V12-22-page6.txt: [('Watch-', 'Watch')] PUR19121226-V12-22-page7.txt: [('rep-', 'rep'), ('-', ''), ('con-', 'con'), ('.-', '.'), ('-', ''), ('-Sabbath', 'Sabbath')] PUR19121226-V12-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mon-', 'Mon'), ('-', ''), ('-', ''), ('-', ''), ('Every-', 'Every')] PUR19130102-V12-23-page1.txt: [('Missionary.-', 'Missionary.'), ('--Max', '-Max')] PUR19130102-V12-23-page3.txt: [('-', ''), ('-to', 'to'), ('per-', 'per')] PUR19130102-V12-23-page4.txt: [('ex-', 'ex')] PUR19130102-V12-23-page5.txt: [('-we', 'we'), ('-Ukiah', 'Ukiah')] PUR19130102-V12-23-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Pacific-', 'Pacific'), ('-', '')] PUR19130109-V12-24-page1.txt: [('-Faction.', 'Faction.'), ('en-', 'en'), ('-', ''), ('-NY', 'NY')] PUR19130109-V12-24-page3.txt: [('-', ''), ('-', ''), ('-uthein', 'uthein'), ('-', ''), ('-', ''), ('-', ''), ('-School', 'School'), ('-', ''), ('-', ''), ('-', ''), ('e--', 'e-'), ('-amount', 'amount'), ('-tithe-liy.', 'tithe-liy.'), ('-', '')] PUR19130109-V12-24-page4.txt: [('-these', 'these'), ('-', ''), ('confes-', 'confes')] PUR19130109-V12-24-page5.txt: [('-', ''), ('bap-', 'bap'), ('United-', 'United'), ('-thechoreic', 'thechoreic'), ('-experience', 'experience'), ("-Mid'", "Mid'"), ('CALIFORNIA-', 'CALIFORNIA'), ('P-', 'P')] PUR19130109-V12-24-page6.txt: [('-', '')] PUR19130109-V12-24-page7.txt: [('-', '')] PUR19130109-V12-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('the-', 'the'), ('-', '')] PUR19130116-V12-25-page1.txt: [('-', ''), ('Sunday-', 'Sunday'), ('-desire', 'desire'), ('di-', 'di'), ('-', ''), ('WITH-', 'WITH'), ('-', '')] PUR19130116-V12-25-page2.txt: [('neces-', 'neces')] PUR19130116-V12-25-page3.txt: [('-a', 'a'), ('ITNIOS-', 'ITNIOS')] PUR19130116-V12-25-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130116-V12-25-page5.txt: [('Watch-', 'Watch')] PUR19130116-V12-25-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Stepping-', 'Stepping'), ('-are', 'are')] PUR19130123-V12-26-page1.txt: [("-Mar'", "Mar'"), ('-Yet', 'Yet')] PUR19130123-V12-26-page2.txt: [('-of', 'of'), ('-cis', 'cis')] PUR19130123-V12-26-page3.txt: [('confer-', 'confer')] PUR19130123-V12-26-page4.txt: [('-central', 'central'), ('-', ''), ('-given', 'given'), ('-of', 'of'), ('pre-', 'pre')] PUR19130123-V12-26-page5.txt: [('California-', 'California'), ('adopt-', 'adopt'), ('ItNMI-', 'ItNMI')] PUR19130123-V12-26-page7.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('faith-', 'faith')] PUR19130123-V12-26-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130130-V12-27-page1.txt: [('member-', 'member'), ('-', ''), ('flow-', 'flow'), ('treasurer-', 'treasurer'), ('..ietiortshow-', '..ietiortshow'), ('-', ''), ('-', ''), ('In-', 'In'), ('-', '')] PUR19130130-V12-27-page10.txt: [('-Werkof', 'Werkof'), ('-', ''), ('-out', 'out')] PUR19130130-V12-27-page11.txt: [('subset-', 'subset')] PUR19130130-V12-27-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('Register-', 'Register'), ('re-', 're')] PUR19130130-V12-27-page2.txt: [('-', '')] PUR19130130-V12-27-page3.txt: [('-work', 'work'), ('-oriel', 'oriel'), ('-', ''), ("-secretaries'", "secretaries'"), ('raga-', 'raga')] PUR19130130-V12-27-page4.txt: [('-they', 'they'), ('-', ''), ('--as', '-as'), ('-the', 'the'), ('-in', 'in'), ('-others', 'others'), ('-', '')] PUR19130130-V12-27-page5.txt: [('-', ''), ("'conven-", "'conven"), ('-would', 'would')] PUR19130130-V12-27-page6.txt: [('-', '')] PUR19130130-V12-27-page7.txt: [('-ftefine', 'ftefine')] PUR19130130-V12-27-page8.txt: [('-', ''), ('-', ''), ("'anin-", "'anin"), ('f-', 'f'), ('-', ''), ('-', ''), ('espe-', 'espe'), ('-in', 'in'), ('-Kansas', 'Kansas'), ('self-', 'self')] PUR19130130-V12-27-page9.txt: [('in-', 'in'), ('and-', 'and'), ('sup-', 'sup')] PUR19130206-V12-28-page1.txt: [('-is', 'is'), ('-in', 'in'), ('-A', 'A')] PUR19130206-V12-28-page2.txt: [('Cali-', 'Cali')] PUR19130206-V12-28-page3.txt: [('-we', 'we'), ('the-', 'the'), ('S-', 'S'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130206-V12-28-page4.txt: [('-', ''), ('-', ''), ('sanet--', 'sanet-')] PUR19130206-V12-28-page5.txt: [('-', ''), ('re-', 're')] PUR19130206-V12-28-page6.txt: [('discrimilla-', 'discrimilla')] PUR19130206-V12-28-page7.txt: [('-monthly', 'monthly'), ('-first', 'first'), ('grand-', 'grand'), ('-about', 'about'), ('BURROWS.-', 'BURROWS.')] PUR19130206-V12-28-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130213-V12-29-page1.txt: [('Secretary.---', 'Secretary.--'), ('-Hearing', 'Hearing'), ('-history.', 'history.'), ('wereeon-', 'wereeon'), ('faith-', 'faith'), ('intro-', 'intro')] PUR19130213-V12-29-page2.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130213-V12-29-page3.txt: [('--', '-'), ('-Utah', 'Utah'), ('-package', 'package'), ('Sev-', 'Sev')] PUR19130213-V12-29-page4.txt: [('California-', 'California')] PUR19130213-V12-29-page5.txt: [('EDDY.-', 'EDDY.'), ('BRADLEY.-', 'BRADLEY.'), ('sub-', 'sub')] PUR19130213-V12-29-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('offer-', 'offer')] PUR19130220-V12-30-page3.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('-evidence', 'evidence'), ('-', ''), ('-', '')] PUR19130220-V12-30-page4.txt: [('and--', 'and-'), ('-the', 'the'), ('-each', 'each')] PUR19130220-V12-30-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-be', 'be')] PUR19130227-V12-31-page1.txt: [('Lino-', 'Lino')] PUR19130227-V12-31-page2.txt: [('-.', '.'), ('-', '')] PUR19130227-V12-31-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('Four-', 'Four'), ('-people', 'people')] PUR19130227-V12-31-page4.txt: [('tendencies-', 'tendencies'), ('-treatment', 'treatment')] PUR19130227-V12-31-page5.txt: [('-', '')] PUR19130227-V12-31-page6.txt: [('auto-', 'auto')] PUR19130227-V12-31-page7.txt: [('-', ''), ('mis-', 'mis')] PUR19130227-V12-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ac-', 'ac')] PUR19130306-V12-32-page1.txt: [('-', ''), ('-reference', 'reference'), ('-concerning', 'concerning'), ('-', ''), ('-', ''), ('-', '')] PUR19130306-V12-32-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130306-V12-32-page11.txt: [('-', ''), ('-', ''), ('-The', 'The'), ('Seventh-', 'Seventh'), ('as-', 'as'), ('ex-', 'ex')] PUR19130306-V12-32-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130306-V12-32-page13.txt: [('-', ''), ('re-', 're'), ('CONFER-', 'CONFER'), ('-', ''), ('-', ''), ('-', ''), ('-all', 'all'), ('-', ''), ('-tat', 'tat')] PUR19130306-V12-32-page14.txt: [('-', ''), ('-', ''), ('-', '')] PUR19130306-V12-32-page2.txt: [('-', ''), ('connec-', 'connec')] PUR19130306-V12-32-page3.txt: [('Seventh-', 'Seventh'), ('Transportation-', 'Transportation'), ('-', ''), ('Buildino-', 'Buildino'), ('-', '')] PUR19130306-V12-32-page4.txt: [('-', ''), ('salva-', 'salva')] PUR19130306-V12-32-page5.txt: [('-per-cent', 'per-cent')] PUR19130306-V12-32-page6.txt: [('de-', 'de'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('c-', 'c'), ('-s', 's'), ('-', '')] PUR19130306-V12-32-page7.txt: [('-', ''), ('re-', 're')] PUR19130306-V12-32-page8.txt: [('Mont-', 'Mont'), ('peo-', 'peo')] PUR19130306-V12-32-page9.txt: [('CONFER-', 'CONFER'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-order', 'order'), ("-te-'grYe", "te-'grYe")] PUR19130313-V12-33-page1.txt: [('-at', 'at'), ('-', ''), ('-', '')] PUR19130313-V12-33-page2.txt: [('-', '')] PUR19130313-V12-33-page3.txt: [('-', ''), ('-gooks-', 'gooks-')] PUR19130313-V12-33-page4.txt: [('-.', '.'), ('-', ''), ('-', '')] PUR19130313-V12-33-page5.txt: [('-Work', 'Work'), ('-', ''), ('-', '')] PUR19130313-V12-33-page6.txt: [('Di-', 'Di'), ('eneour-', 'eneour'), ('-age', 'age'), ('-deal', 'deal'), ('-confidence', 'confidence'), ('-truth.', 'truth.')] PUR19130313-V12-33-page7.txt: [('-this', 'this'), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('will-', 'will'), ('PA-', 'PA'), ('-', '')] PUR19130313-V12-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130320-V12-34-page1.txt: [('eau-', 'eau'), ('RE-', 'RE'), ('RE-', 'RE')] PUR19130320-V12-34-page10.txt: [('"Anti-', '"Anti')] PUR19130320-V12-34-page11.txt: [('-', ''), ('-', ''), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-legislature', 'legislature'), ('-', ''), ('-Blunt', 'Blunt'), ('-', ''), ('foliews-', 'foliews'), ('-One', 'One')] PUR19130320-V12-34-page13.txt: [('-', '')] PUR19130320-V12-34-page15.txt: [('STEVENS.-', 'STEVENS.'), ('-', ''), ('PARADEZ.-', 'PARADEZ.'), ('-', ''), ('.-', '.'), ('-', ''), ("intereet'-", "intereet'")] PUR19130320-V12-34-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('leaf-', 'leaf'), ('-let', 'let'), ('-', ''), ('-', ''), ('PA-', 'PA'), ('-The', 'The'), ('RE-', 'RE')] PUR19130320-V12-34-page2.txt: [('-Wherefore', 'Wherefore'), ('-', '')] PUR19130320-V12-34-page3.txt: [('-the', 'the'), ('-', ''), ('-was', 'was'), ('-Sunday.night..', 'Sunday.night..'), ('-And', 'And'), ('-number', 'number'), ('-how', 'how')] PUR19130320-V12-34-page4.txt: [('-night', 'night')] PUR19130320-V12-34-page5.txt: [('at-', 'at'), ('-', '')] PUR19130320-V12-34-page7.txt: [('RE-', 'RE')] PUR19130320-V12-34-page9.txt: [('-', '')] PUR19130327-V12-35-page1.txt: [('-I', 'I'), ('-', ''), ('-as----a-', 'as----a-'), ('-horse', 'horse'), ('-should', 'should'), ('-Thomason', 'Thomason')] PUR19130327-V12-35-page2.txt: [('twelve-', 'twelve'), ('seven-', 'seven'), ('five-', 'five'), ('-', ''), ('-', '')] PUR19130327-V12-35-page3.txt: [('-', ''), ('-', ''), ('ear-', 'ear')] PUR19130327-V12-35-page4.txt: [('in-', 'in')] PUR19130327-V12-35-page5.txt: [('while-', 'while'), ('-', '')] PUR19130327-V12-35-page6.txt: [('-in', 'in'), ('con-', 'con'), ('Field-', 'Field')] PUR19130327-V12-35-page7.txt: [('-', ''), ('taking.-', 'taking.'), ('-', ''), ("'-", "'"), ('-z', 'z'), ('-', '')] PUR19130327-V12-35-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-page', 'page')] PUR19130403-V12-36-page1.txt: [('-world."', 'world."'), ("'-", "'"), ('-CongPc', 'CongPc'), ('-and', 'and'), ('-His', 'His'), ('-and', 'and'), ('re-', 're')] PUR19130403-V12-36-page2.txt: [('hu-', 'hu'), ('-reatn', 'reatn')] PUR19130403-V12-36-page3.txt: [('-who', 'who')] PUR19130403-V12-36-page4.txt: [('-Our', 'Our'), ('Mac-', 'Mac')] PUR19130403-V12-36-page5.txt: [('tele-', 'tele'), ('-.', '.'), ('-seemed', 'seemed'), ('lit-', 'lit'), ('-hire.', 'hire.'), ('-be-able', 'be-able')] PUR19130403-V12-36-page6.txt: [('-the', 'the'), ('-', '')] PUR19130403-V12-36-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-twofold', 'twofold'), ('-', ''), ('-', ''), ('-', ''), ("essays'-", "essays'"), ('Reading-', 'Reading'), ('-"Say', '"Say'), ('-', ''), ('-the', 'the')] PUR19130403-V12-36-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Utah', 'Utah')] PUR19130410-V12-37-page2.txt: [('-', ''), ('-', '')] PUR19130410-V12-37-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('--', '-')] PUR19130410-V12-37-page4.txt: [('-', '')] PUR19130410-V12-37-page5.txt: [('-', '')] PUR19130410-V12-37-page7.txt: [('-', '')] PUR19130410-V12-37-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Now', 'Now'), ('-', '')] PUR19130417-V12-38-page1.txt: [('-plants', 'plants')] PUR19130417-V12-38-page2.txt: [('-', '')] PUR19130417-V12-38-page3.txt: [('-Ye', 'Ye'), ('-', '')] PUR19130417-V12-38-page4.txt: [('or-', 'or')] PUR19130417-V12-38-page5.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-qur.', 'qur.')] PUR19130417-V12-38-page7.txt: [('klet.--', 'klet.-')] PUR19130417-V12-38-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130424-V12-39-page1.txt: [('RE-', 'RE')] PUR19130424-V12-39-page2.txt: [('duties-', 'duties')] PUR19130424-V12-39-page3.txt: [('-', ''), ('-', '')] PUR19130424-V12-39-page4.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130424-V12-39-page5.txt: [('-', ''), ('-"', '"'), ('-"Where', '"Where')] PUR19130424-V12-39-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130501-V12-40-page1.txt: [('-pound', 'pound'), ('-cent-a-week', 'cent-a-week')] PUR19130501-V12-40-page2.txt: [('ex-', 'ex')] PUR19130501-V12-40-page3.txt: [('Sabbath-school-', 'Sabbath-school'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130501-V12-40-page5.txt: [('-', ''), ('-', '')] PUR19130501-V12-40-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-hien', 'hien'), ('-at', 'at')] PUR19130508-V12-41-page1.txt: [('el-', 'el')] PUR19130508-V12-41-page2.txt: [('-', ''), ('-', '')] PUR19130508-V12-41-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130508-V12-41-page4.txt: [('Mac-', 'Mac'), ('Seventh-', 'Seventh')] PUR19130508-V12-41-page5.txt: [('-', ''), ('-U', 'U'), ('-', ''), ('-La', 'La'), ('E-', 'E'), ('-', ''), ('F-', 'F')] PUR19130508-V12-41-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130515-V12-42-page1.txt: [('"--', '"-'), ('--', '-'), ('--', '-'), ('-', ''), ('.-', '.'), ('.-', '.'), ('.-', '.'), ("-'", "'"), ('-fi', 'fi'), ('-', ''), ('-', ''), ('-', ''), ('lie-', 'lie'), ('-', ''), ('...-', '...'), ('-i', 'i'), ('.-', '.'), ('-', ''), ('-', ''), ('-.....', '.....'), ('o-', 'o'), ('---', '--'), ('-.', '.'), ('--r--', '-r--'), ('-', ''), ('-', ''), ('vs-', 'vs'), ('-', ''), ('-A', 'A'), ('--', '-'), ('-', '')] PUR19130515-V12-42-page2.txt: [('-', ''), ('-', '')] PUR19130515-V12-42-page3.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130515-V12-42-page4.txt: [('properly-', 'properly'), ('-', ''), ('-', '')] PUR19130515-V12-42-page5.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon')] PUR19130515-V12-42-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130522-V12-43-page1.txt: [('Why-', 'Why'), ('Lieutenant-', 'Lieutenant')] PUR19130522-V12-43-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-meettheir', 'meettheir')] PUR19130522-V12-43-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('BLUFF-', 'BLUFF'), ('CITY-', 'CITY'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Sab-', 'Sab'), ('excep-', 'excep')] PUR19130522-V12-43-page5.txt: [('literati-', 'literati')] PUR19130522-V12-43-page6.txt: [('-', ''), ('-', ''), ('-authority', 'authority')] PUR19130522-V12-43-page7.txt: [('-Neiradn', 'Neiradn')] PUR19130522-V12-43-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('nia-', 'nia'), ('-', ''), ('Wash-', 'Wash')] PUR19130529-V12-44-page1.txt: [('Sabbath-', 'Sabbath')] PUR19130529-V12-44-page2.txt: [('Mc-', 'Mc'), ('J.-', 'J.'), ('Camp-', 'Camp'), ('Sabbath-', 'Sabbath'), ('Mc-', 'Mc')] PUR19130529-V12-44-page3.txt: [('-UNION', 'UNION'), ('"-', '"'), ('Institutions.--', 'Institutions.-')] PUR19130529-V12-44-page4.txt: [('CATIPORNIA-', 'CATIPORNIA'), ('LODI-', 'LODI'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('BLUFF-', 'BLUFF'), ('CITY-', 'CITY'), ('-', ''), ('July-', 'July'), ('-', ''), ('-', '')] PUR19130529-V12-44-page5.txt: [('--', '-'), ('-', ''), ('-them.', 'them.'), ('-track', 'track'), ('-We', 'We'), ('Christian-nearly-', 'Christian-nearly'), ("Lord's-", "Lord's"), ('-', '')] PUR19130529-V12-44-page6.txt: [('-P', 'P'), ("-.'", ".'"), ('-', '')] PUR19130529-V12-44-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Christ.-', 'Christ.')] PUR19130529-V12-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in')] PUR19130605-V12-45-page1.txt: [('-', ''), ('.-', '.'), ('.-', '.')] PUR19130605-V12-45-page2.txt: [('-', ''), ('-', '')] PUR19130605-V12-45-page3.txt: [('awe-', 'awe')] PUR19130605-V12-45-page4.txt: [('-and', 'and'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130605-V12-45-page5.txt: [('contin-', 'contin'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130605-V12-45-page6.txt: [('-', ''), ('Mc-', 'Mc'), ('or-', 'or')] PUR19130605-V12-45-page7.txt: [('-', ''), ('--', '-'), ('-', '')] PUR19130605-V12-45-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-that', 'that'), ('card-', 'card'), ('-', '')] PUR19130612-V12-46-page1.txt: [('-us', 'us'), ('med-', 'med')] PUR19130612-V12-46-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-in', 'in'), ('-evening.', 'evening.')] PUR19130612-V12-46-page4.txt: [('-attention', 'attention')] PUR19130612-V12-46-page5.txt: [('-', ''), ('N-', 'N'), ('-', ''), ('HORNING.-', 'HORNING.'), ('Col-', 'Col')] PUR19130612-V12-46-page6.txt: [('HAYNE.-', 'HAYNE.'), ('PAULIN.-', 'PAULIN.'), ('maga-', 'maga')] PUR19130612-V12-46-page7.txt: [('-.', '.'), ('-UNION', 'UNION'), ('IZECORDElt"-', 'IZECORDElt"'), ('-', ''), ('-', ''), ('-', '')] PUR19130612-V12-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Later.-', 'Later.'), ('-', ''), ('-', ''), ('-', '')] PUR19130619-V12-47-page1.txt: [('Vice-president.--', 'Vice-president.-')] PUR19130619-V12-47-page2.txt: [('COL-', 'COL'), ('.-', '.'), ('-', ''), ('form-', 'form')] PUR19130619-V12-47-page3.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA'), ('-grON-', 'grON-')] PUR19130619-V12-47-page5.txt: [('-', ''), ('-', ''), ('-.', '.')] PUR19130619-V12-47-page6.txt: [('Seventh-', 'Seventh'), ('-C.', 'C.'), ('Seventh-', 'Seventh'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130626-V12-48-page1.txt: [('-distributed', 'distributed'), ('-faithful', 'faithful')] PUR19130626-V12-48-page2.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130626-V12-48-page3.txt: [('to-', 'to')] PUR19130626-V12-48-page5.txt: [('d-', 'd'), ('-or', 'or')] PUR19130626-V12-48-page6.txt: [('-Iollopri', 'Iollopri'), ('RE-', 'RE'), ('-', ''), ('-e.', 'e.')] PUR19130626-V12-48-page7.txt: [('fretn"-', 'fretn"')] PUR19130626-V12-48-page8.txt: [('Seventh-', 'Seventh'), ('-day', 'day'), ('Seventh-', 'Seventh')] PUR19130703-V12-49-page1.txt: [('calla-', 'calla'), ('teach-', 'teach')] PUR19130703-V12-49-page2.txt: [('Camp-', 'Camp'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130703-V12-49-page3.txt: [('Seventh-', 'Seventh'), ('-', ''), ('-', ''), ('Seventh-', 'Seventh'), ('Secretary-', 'Secretary')] PUR19130703-V12-49-page4.txt: [('taken-', 'taken'), ('-us', 'us')] PUR19130703-V12-49-page5.txt: [('-', ''), ('-using-our', 'using-our'), ('accept-', 'accept')] PUR19130703-V12-49-page6.txt: [('-the', 'the'), ('-.', '.')] PUR19130703-V12-49-page7.txt: [('-"', '"'), ('-', '')] PUR19130703-V12-49-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130710-V12-50-page1.txt: [('-office', 'office'), ('It-', 'It'), ('need-', 'need'), ('-', ''), ('fromthis--', 'fromthis-')] PUR19130710-V12-50-page2.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19130710-V12-50-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-with', 'with'), ("-the'", "the'"), ('-', '')] PUR19130710-V12-50-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('honor-', 'honor'), ('Southern-', 'Southern'), ('Sales-', 'Sales'), ('Sale-', 'Sale'), ('--modern', '-modern')] PUR19130717-V12-51-page1.txt: [('Camp-', 'Camp'), ('California-', 'California')] PUR19130717-V12-51-page2.txt: [('-them', 'them'), ('so-', 'so'), ('-them', 'them'), ('-', '')] PUR19130717-V12-51-page3.txt: [('-', ''), ('--', '-')] PUR19130717-V12-51-page4.txt: [('END-', 'END'), ('Volun-', 'Volun'), ('Camp-', 'Camp'), ('mission-', 'mission'), ('-', '')] PUR19130717-V12-51-page5.txt: [('un-', 'un'), ('-', ''), ('neer-', 'neer'), ('-affeetefit', 'affeetefit')] PUR19130717-V12-51-page6.txt: [('stand-', 'stand'), ('Missionary-', 'Missionary')] PUR19130717-V12-51-page7.txt: [('-', ''), ('RE-', 'RE')] PUR19130717-V12-51-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130724-V12-52-page1.txt: [('-perhaps', 'perhaps'), ('Advent-', 'Advent'), ('-books', 'books')] PUR19130724-V12-52-page2.txt: [('prepar-', 'prepar')] PUR19130724-V12-52-page3.txt: [('-', '')] PUR19130724-V12-52-page4.txt: [('Atchison-', 'Atchison'), ('Pedro-', 'Pedro'), ('-', '')] PUR19130724-V12-52-page7.txt: [('-', ''), ('-', '')] PUR19130724-V12-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130731-V12-53-page1.txt: [('Paids-', 'Paids')] PUR19130731-V12-53-page10.txt: [('-', '')] PUR19130731-V12-53-page11.txt: [('CON-', 'CON')] PUR19130731-V12-53-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-room', 'room')] PUR19130731-V12-53-page2.txt: [('SEV-', 'SEV'), ('SEV-', 'SEV'), ('fruit-', 'fruit'), ('in-', 'in'), ('accept-', 'accept'), ('Of-', 'Of'), ('Bi-', 'Bi')] PUR19130731-V12-53-page3.txt: [('-', ''), ('-', ''), ('Prvsn.-', 'Prvsn.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130731-V12-53-page4.txt: [('sub-', 'sub'), ('E-', 'E'), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('-cd', 'cd'), ('-JANUARY', 'JANUARY'), ('-', '')] PUR19130731-V12-53-page5.txt: [('of--', 'of-')] PUR19130731-V12-53-page6.txt: [('-', '')] PUR19130731-V12-53-page7.txt: [('-', ''), ('-', '')] PUR19130731-V12-53-page8.txt: [('missionary-', 'missionary'), ('-', '')] PUR19130731-V12-53-page9.txt: [('-e', 'e'), ('-', ''), ('intoxica-', 'intoxica'), ('RE-', 'RE')] PUR19130807-V13-01-page2.txt: [('ear-', 'ear')] PUR19130807-V13-01-page3.txt: [('-"It', '"It'), ('en-', 'en')] PUR19130807-V13-01-page4.txt: [('Marvin-', 'Marvin'), ('-', '')] PUR19130807-V13-01-page6.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('-', '')] PUR19130807-V13-01-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Atchison-', 'Atchison'), ('Pedro-', 'Pedro')] PUR19130814-V13-02-page1.txt: [('Camp-', 'Camp')] PUR19130814-V13-02-page2.txt: [('-', ''), ('-', ''), ('mis-', 'mis')] PUR19130814-V13-02-page3.txt: [('-', ''), ('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130814-V13-02-page4.txt: [('Horton-', 'Horton')] PUR19130814-V13-02-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Teach-', 'Teach')] PUR19130814-V13-02-page6.txt: [('DICKERSON.-', 'DICKERSON.')] PUR19130814-V13-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130821-V13-03-page1.txt: [('-the', 'the'), ('-general', 'general'), ('-', ''), ('-aie', 'aie'), ('-to', 'to')] PUR19130821-V13-03-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('some-', 'some'), ('-', ''), ('-JULY', 'JULY'), ('-', ''), ('-Arizona.', 'Arizona.'), ('-', ''), ('-', ''), ('-', ''), ('-Sabbath.', 'Sabbath.'), ('-', '')] PUR19130821-V13-03-page12.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('pre-', 'pre')] PUR19130821-V13-03-page2.txt: [('-this', 'this'), ('-the', 'the'), ('-field', 'field'), ('-tent', 'tent'), ('-withdrawn', 'withdrawn'), ('--our', '-our'), ('-great', 'great'), ('-well', 'well'), ('-', ''), ('-these', 'these'), ('--elmsehes.', '-elmsehes.'), ('-three', 'three'), ('-University', 'University'), ('-San', 'San'), ('-Fear', 'Fear'), ('re-', 're')] PUR19130821-V13-03-page3.txt: [('build-', 'build'), ('-', ''), ('-', '')] PUR19130821-V13-03-page4.txt: [('The-', 'The'), ('-Utah', 'Utah')] PUR19130821-V13-03-page5.txt: [('un-', 'un'), ('-', ''), ('Work.-', 'Work.'), ('Plan.-', 'Plan.'), ('-Missionary', 'Missionary'), ('Life.-', 'Life.'), ('-featar', 'featar'), ('Workers.-', 'Workers.'), ('ap-', 'ap'), ('-', ''), ('ASSOCIA-', 'ASSOCIA'), ('-', ''), ('-.', '.'), ('-', '')] PUR19130821-V13-03-page6.txt: [('Member-', 'Member'), ('ad-', 'ad'), ('SHOW-', 'SHOW'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('fol-', 'fol'), ('Cali-', 'Cali'), ('Associa-', 'Associa')] PUR19130821-V13-03-page7.txt: [('-Pairsons', 'Pairsons'), ('Mc-', 'Mc'), ('-work', 'work'), ('ear-', 'ear'), ('-Whereas', 'Whereas'), ('-God', 'God')] PUR19130821-V13-03-page8.txt: [('-', '')] PUR19130821-V13-03-page9.txt: [('-', ''), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130828-V13-04-page2.txt: [('-', ''), ('Sabbath-', 'Sabbath')] PUR19130828-V13-04-page3.txt: [('CATXPORNIA-', 'CATXPORNIA'), ('-', ''), ('Dr.-', 'Dr.'), ('n-', 'n')] PUR19130828-V13-04-page4.txt: [('-the', 'the')] PUR19130828-V13-04-page5.txt: [('Seventh-', 'Seventh'), ('-', '')] PUR19130828-V13-04-page6.txt: [('-', '')] PUR19130828-V13-04-page7.txt: [('-first', 'first'), ('-', '')] PUR19130828-V13-04-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130904-V13-05-page1.txt: [('Lord-', 'Lord'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('won-', 'won')] PUR19130904-V13-05-page2.txt: [('-continue', 'continue')] PUR19130904-V13-05-page3.txt: [('-instruction', 'instruction'), ('-', ''), ('-v', 'v'), ('Louis.-', 'Louis.'), ('-wife', 'wife'), ('-a', 'a'), ('-RDEli', 'RDEli')] PUR19130904-V13-05-page4.txt: [('PACIFIC-', 'PACIFIC'), ('-', ''), ('pre-', 'pre'), ('-pare', 'pare'), ('eter-', 'eter')] PUR19130904-V13-05-page5.txt: [('-', '')] PUR19130904-V13-05-page6.txt: [('confer-', 'confer'), ('-glad', 'glad')] PUR19130904-V13-05-page7.txt: [('-', '')] PUR19130904-V13-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19130911-V13-06-page1.txt: [('sub-', 'sub'), ('-.', '.'), ('thework--', 'thework-'), ('-For', 'For'), ('-', ''), ('-ticrW', 'ticrW'), ('-setourselves', 'setourselves'), ('move-', 'move'), ('-to-drive', 'to-drive')] PUR19130911-V13-06-page2.txt: [('-God', 'God')] PUR19130911-V13-06-page4.txt: [('-.', '.'), ('-', ''), ('-', '')] PUR19130911-V13-06-page5.txt: [('-', ''), ('-', ''), ('--', '-'), ('Le-', 'Le'), ('JIN-', 'JIN'), ('-October', 'October'), ('every-', 'every')] PUR19130911-V13-06-page6.txt: [('TWENTY-', 'TWENTY'), ('prog-', 'prog'), ('CALIFORNIA-', 'CALIFORNIA')] PUR19130911-V13-06-page7.txt: [('-', ''), ('meet-', 'meet')] PUR19130911-V13-06-page8.txt: [('UNION-', 'UNION'), ('sleep-', 'sleep'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-last', 'last')] PUR19130918-V13-07-page1.txt: [('attend-', 'attend'), ('-Well', 'Well')] PUR19130918-V13-07-page2.txt: [('Camp-', 'Camp'), ('-', '')] PUR19130918-V13-07-page3.txt: [('Lord.-', 'Lord.')] PUR19130918-V13-07-page4.txt: [('-many', 'many')] PUR19130918-V13-07-page5.txt: [('-have', 'have')] PUR19130918-V13-07-page6.txt: [('-', ''), ('opportuni-', 'opportuni'), ('mes-', 'mes')] PUR19130918-V13-07-page7.txt: [('-me', 'me'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('RICKEY.-', 'RICKEY.')] PUR19130918-V13-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Fifteen-', 'Fifteen')] PUR19130925-V13-08-page1.txt: [('-', '')] PUR19130925-V13-08-page2.txt: [('un-', 'un')] PUR19130925-V13-08-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('-Utah', 'Utah'), ('-', ''), ('-', '')] PUR19130925-V13-08-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131002-V13-09-page4.txt: [('-', ''), ('-', '')] PUR19131002-V13-09-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131009-V13-10-page2.txt: [('boy-', 'boy')] PUR19131009-V13-10-page3.txt: [('-am', 'am'), ('-', '')] PUR19131009-V13-10-page4.txt: [('-UNION', 'UNION')] PUR19131009-V13-10-page5.txt: [('-', '')] PUR19131009-V13-10-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('shine."-', 'shine."')] PUR19131016-V13-11-page2.txt: [('CALIFORNIA-', 'CALIFORNIA')] PUR19131016-V13-11-page3.txt: [('-good', 'good'), ('-Union', 'Union'), ('-.', '.'), ('RE-', 'RE'), ('-', '')] PUR19131016-V13-11-page5.txt: [('--new', '-new'), ('-', '')] PUR19131016-V13-11-page6.txt: [('-', '')] PUR19131016-V13-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131023-V13-12-page1.txt: [('-', '')] PUR19131023-V13-12-page2.txt: [('-', '')] PUR19131023-V13-12-page3.txt: [('-the', 'the'), ('-', '')] PUR19131023-V13-12-page5.txt: [('-"Our', '"Our'), ('-', '')] PUR19131023-V13-12-page6.txt: [('-our', 'our'), ('-', '')] PUR19131023-V13-12-page7.txt: [('AluRcx.-', 'AluRcx.'), ('WHITE.-', 'WHITE.'), ('be-', 'be')] PUR19131023-V13-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131030-V13-13-page5.txt: [('-UNION.', 'UNION.')] PUR19131030-V13-13-page6.txt: [('-', ''), ('SANFORD.-', 'SANFORD.'), ('self-', 'self')] PUR19131030-V13-13-page7.txt: [('-RECORDER', 'RECORDER'), ('-the', 'the')] PUR19131030-V13-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131106-V13-14-page1.txt: [('Wednesday-', 'Wednesday'), ('-work', 'work')] PUR19131106-V13-14-page3.txt: [('neigh-', 'neigh'), ('-Upper', 'Upper'), ('-visited', 'visited')] PUR19131106-V13-14-page4.txt: [('-', '')] PUR19131106-V13-14-page5.txt: [('world.-', 'world.'), ('self.-', 'self.')] PUR19131106-V13-14-page6.txt: [('fol-', 'fol'), ('-unanimously', 'unanimously'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131113-V13-15-page1.txt: [('-pause', 'pause'), ('-has', 'has'), ('-', '')] PUR19131113-V13-15-page2.txt: [('-', ''), ('camp-', 'camp')] PUR19131113-V13-15-page3.txt: [('act-', 'act'), ('ill.-', 'ill.'), ('pre-', 'pre')] PUR19131113-V13-15-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Nevada-California-', 'Nevada-California'), ('Sab-', 'Sab'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131113-V13-15-page5.txt: [('be-', 'be')] PUR19131113-V13-15-page6.txt: [('"-', '"'), ('-must', 'must'), ('-', ''), ('-', '')] PUR19131113-V13-15-page7.txt: [('-', ''), ('-', ''), ('-', '')] PUR19131113-V13-15-page8.txt: [('-largest', 'largest'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131120-V13-16-page2.txt: [('-other', 'other'), ('-', '')] PUR19131120-V13-16-page3.txt: [('fol-', 'fol'), ('maga--', 'maga-'), ('col-', 'col'), ('-', ''), ('NORTHERN-', 'NORTHERN'), ('hu-', 'hu'), ('spir-', 'spir')] PUR19131120-V13-16-page4.txt: [('-r', 'r')] PUR19131120-V13-16-page5.txt: [('-PACIFIC', 'PACIFIC'), ('and-', 'and'), ('Practising-', 'Practising'), ('-while', 'while'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131120-V13-16-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131127-V13-17-page1.txt: [('own-', 'own')] PUR19131127-V13-17-page3.txt: [('experi-', 'experi'), ('en-', 'en'), ('-', ''), ('-', ''), ('meet-', 'meet'), ('es-', 'es'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-no', 'no'), ('-', ''), ('-', ''), ('ac-', 'ac'), ('com-', 'com'), ('-', '')] PUR19131127-V13-17-page5.txt: [('-I', 'I'), ('-', '')] PUR19131127-V13-17-page6.txt: [('-', '')] PUR19131127-V13-17-page7.txt: [('-', ''), ('Expression"-', 'Expression"'), ('hollering"-', 'hollering"'), ('-e', 'e'), ('-', ''), ('Califor.-', 'Califor.')] PUR19131127-V13-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131204-V13-18-page1.txt: [("-accommodate'", "accommodate'"), ('hun-', 'hun')] PUR19131204-V13-18-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131204-V13-18-page4.txt: [('-as', 'as')] PUR19131204-V13-18-page5.txt: [('-SO', 'SO'), ('signa-', 'signa')] PUR19131204-V13-18-page6.txt: [('-', ''), ('-California', 'California')] PUR19131204-V13-18-page7.txt: [('Cal-', 'Cal'), ('-a-Wee', 'a-Wee'), ('-', ''), ('-', '')] PUR19131204-V13-18-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131211-V13-19-page2.txt: [('-proposed', 'proposed'), ('-signatures', 'signatures')] PUR19131211-V13-19-page3.txt: [('-based', 'based'), ('-', ''), ('citi-', 'citi'), ('-', '')] PUR19131211-V13-19-page4.txt: [('RE-', 'RE'), ('-the', 'the'), ('-isolated', 'isolated'), ('meet-', 'meet')] PUR19131211-V13-19-page5.txt: [('-STKreeding', 'STKreeding'), ('work-', 'work')] PUR19131211-V13-19-page6.txt: [('-Number', 'Number'), ('-', '')] PUR19131211-V13-19-page7.txt: [('-', ''), ('LARSON.-', 'LARSON.'), ('KILLINGER.-', 'KILLINGER.'), ('TWITCHELL.-', 'TWITCHELL.'), ('-of', 'of'), ('peo-', 'peo'), ('can-', 'can'), ('-cent', 'cent'), ('Revela-', 'Revela')] PUR19131211-V13-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19131218-V13-20-page3.txt: [('ordina-', 'ordina'), ('-', '')] PUR19131218-V13-20-page4.txt: [('giv-', 'giv'), ('-Eureka', 'Eureka')] PUR19131218-V13-20-page5.txt: [('their-', 'their'), ('Indian-', 'Indian')] PUR19131218-V13-20-page7.txt: [('GRAY.-', 'GRAY.'), ('-', '')] PUR19131218-V13-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-Congress', 'Congress'), ('Con-', 'Con')] PUR19131225-V13-21-page1.txt: [('Secretary.--', 'Secretary.-'), ('fell-', 'fell'), ('-', ''), ('ofjoy.-', 'ofjoy.'), ('-is..', 'is..')] PUR19131225-V13-21-page2.txt: [('period-', 'period')] PUR19131225-V13-21-page3.txt: [('contribu-', 'contribu'), ('-years', 'years'), ('con-', 'con'), ('contri-', 'contri')] PUR19131225-V13-21-page4.txt: [('-but', 'but')] PUR19131225-V13-21-page5.txt: [('-', ''), ('-checking', 'checking')] PUR19131225-V13-21-page6.txt: [('-He', 'He'), ('-', ''), ('-Macedonian', 'Macedonian')] PUR19131225-V13-21-page7.txt: [('-', '')] PUR19131225-V13-21-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140101-V13-22-page1.txt: [('then-', 'then')] PUR19140101-V13-22-page2.txt: [('-on', 'on'), ('-Wallace', 'Wallace'), ('Eagle-', 'Eagle'), ('-', '')] PUR19140101-V13-22-page4.txt: [('Sabbath-', 'Sabbath')] PUR19140101-V13-22-page6.txt: [('-', ''), ('-', '')] PUR19140108-V13-23-page1.txt: [('-while', 'while')] PUR19140108-V13-23-page2.txt: [('-ending', 'ending')] PUR19140108-V13-23-page3.txt: [('con-', 'con'), ('-itrhson', 'itrhson'), ('-', ''), ('com-', 'com')] PUR19140108-V13-23-page5.txt: [('mod-', 'mod')] PUR19140108-V13-23-page6.txt: [('impossible."-', 'impossible."'), ('-hidden', 'hidden'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140108-V13-23-page7.txt: [('SAUNDERS.-', 'SAUNDERS.'), ('follow-', 'follow')] PUR19140108-V13-23-page8.txt: [('-', ''), ('-', '')] PUR19140115-V13-24-page1.txt: [('Secretary.--', 'Secretary.-'), ("-tVe'", "tVe'"), ('-', '')] PUR19140115-V13-24-page3.txt: [('-', '')] PUR19140115-V13-24-page4.txt: [('-school', 'school')] PUR19140115-V13-24-page5.txt: [('collec-', 'collec'), ('-', ''), ('-', ''), ('VIquritain-', 'VIquritain')] PUR19140115-V13-24-page6.txt: [('-the', 'the')] PUR19140115-V13-24-page7.txt: [('-acre', 'acre'), ('-room', 'room'), ('--', '-'), ('-', ''), ('-', ''), ('-', '')] PUR19140115-V13-24-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140122-V13-25-page1.txt: [('daugh-', 'daugh'), ('-to', 'to')] PUR19140122-V13-25-page2.txt: [('suffi-', 'suffi'), ('coop-', 'coop')] PUR19140122-V13-25-page3.txt: [('consid-', 'consid'), ('-', ''), ('Mo-', 'Mo'), ('Ameri-', 'Ameri')] PUR19140122-V13-25-page4.txt: [('at-', 'at'), ('-', ''), ('-', ''), ('-', ''), ('English-', 'English'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140122-V13-25-page6.txt: [('-', '')] PUR19140122-V13-25-page7.txt: [('-.Holtville.', '.Holtville.'), ('-', ''), ('been-', 'been'), ('-fully', 'fully'), ("V'-", "V'"), ('-one', 'one'), ('-gallon', 'gallon'), ('-', ''), ('-', '')] PUR19140122-V13-25-page8.txt: [('-', ''), ('-', ''), ('-acre', 'acre'), ('-room', 'room'), ('ar-', 'ar'), ('-to', 'to')] PUR19140129-V13-26-page1.txt: [('pres-', 'pres'), ('-society', 'society')] PUR19140129-V13-26-page10.txt: [('-', ''), ('-that', 'that')] PUR19140129-V13-26-page12.txt: [('-', ''), ('-', ''), ('-gallon', 'gallon')] PUR19140129-V13-26-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140129-V13-26-page3.txt: [('se-', 'se'), ('-put', 'put')] PUR19140129-V13-26-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140129-V13-26-page6.txt: [('-', '')] PUR19140129-V13-26-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-of', 'of'), ('-', '')] PUR19140129-V13-26-page8.txt: [('-a', 'a'), ('Ger-', 'Ger')] PUR19140129-V13-26-page9.txt: [('discon-', 'discon'), ('Moun-', 'Moun')] PUR19140205-V13-27-page1.txt: [('-', ''), ('-', '')] PUR19140205-V13-27-page3.txt: [('-Conference', 'Conference')] PUR19140205-V13-27-page4.txt: [('ac-', 'ac')] PUR19140205-V13-27-page5.txt: [('-interested', 'interested'), ('-', '')] PUR19140205-V13-27-page6.txt: [('--', '-')] PUR19140205-V13-27-page7.txt: [('CULVER.-', 'CULVER.'), ('LIND.-', 'LIND.')] PUR19140205-V13-27-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140212-V13-28-page2.txt: [('-signers', 'signers'), ('va-', 'va')] PUR19140212-V13-28-page3.txt: [('-', ''), ('psalm-', 'psalm')] PUR19140212-V13-28-page7.txt: [('-', ''), ('-', ''), ('JENKS.-', 'JENKS.')] PUR19140212-V13-28-page8.txt: [('-', ''), ('-', '')] PUR19140219-V13-29-page1.txt: [('ar-', 'ar')] PUR19140219-V13-29-page2.txt: [('-learns-', 'learns-'), ('-tolabor', 'tolabor'), ('-constitutes', 'constitutes'), ('-the', 'the'), ('-at', 'at'), ('home--edu---', 'home--edu--'), ('-show', 'show')] PUR19140219-V13-29-page4.txt: [('al-', 'al')] PUR19140219-V13-29-page5.txt: [('-', ''), ('-', '')] PUR19140219-V13-29-page6.txt: [('-', ''), ('-', '')] PUR19140226-V13-30-page3.txt: [('Cali-', 'Cali'), ('Liv-', 'Liv'), ('-', '')] PUR19140226-V13-30-page4.txt: [('Soul-', 'Soul'), ('-', ''), ('-', ''), ('.dedi-', '.dedi'), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140226-V13-30-page5.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140226-V13-30-page6.txt: [('-', ''), ('-', '')] PUR19140305-V13-31-page1.txt: [('ex-', 'ex'), ('en-', 'en')] PUR19140305-V13-31-page2.txt: [('or-', 'or')] PUR19140305-V13-31-page3.txt: [('-', ''), ('-', '')] PUR19140305-V13-31-page5.txt: [('spiritifal--', 'spiritifal-')] PUR19140305-V13-31-page6.txt: [('KELLOGG.-', 'KELLOGG.'), ('ADAMS.-', 'ADAMS.'), ('Cali-', 'Cali')] PUR19140305-V13-31-page7.txt: [('Ross.-', 'Ross.')] PUR19140305-V13-31-page8.txt: [('-', ''), ('-', '')] PUR19140312-V13-32-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140312-V13-32-page3.txt: [('-', '')] PUR19140312-V13-32-page4.txt: [('-', '')] PUR19140312-V13-32-page5.txt: [('ban-', 'ban'), ('inter-', 'inter'), ('edu-', 'edu'), ('ques-', 'ques'), ('inspira-', 'inspira'), ('cam-', 'cam'), ('Un-', 'Un'), ('confer-', 'confer')] PUR19140312-V13-32-page6.txt: [('-', ''), ('-', '')] PUR19140319-V13-33-page1.txt: [('Arneri-', 'Arneri')] PUR19140319-V13-33-page2.txt: [('-', '')] PUR19140319-V13-33-page3.txt: [('PRICE.-', 'PRICE.'), ('HUDSON.-', 'HUDSON.')] PUR19140319-V13-33-page4.txt: [('-', ''), ('-', '')] PUR19140326-V13-34-page1.txt: [('-C.', 'C.'), ('U-', 'U'), ('V-', 'V'), ('.V-', '.V'), ('-V', 'V')] PUR19140326-V13-34-page10.txt: [('-', '')] PUR19140326-V13-34-page11.txt: [('-IA-', 'IA-'), ('-', ''), ('-ureh', 'ureh'), ('-school-', 'school-'), ('-', ''), ('re-', 're'), ('kir-', 'kir')] PUR19140326-V13-34-page12.txt: [('-', ''), ('send-', 'send')] PUR19140326-V13-34-page13.txt: [('-the', 'the'), ('detaitiW-', 'detaitiW'), ('-.', '.')] PUR19140326-V13-34-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('period-', 'period')] PUR19140326-V13-34-page15.txt: [('li-', 'li'), ('-', ''), ('-', ''), ('-', ''), ('-all', 'all'), ('-', '')] PUR19140326-V13-34-page16.txt: [('-the', 'the')] PUR19140326-V13-34-page17.txt: [('-', ''), ('-after', 'after'), ('-', ''), ('-sttpervisionby-', 'sttpervisionby-'), ('-', '')] PUR19140326-V13-34-page18.txt: [('charm-', 'charm'), ('-re', 're')] PUR19140326-V13-34-page19.txt: [('num-', 'num'), ('pa-', 'pa')] PUR19140326-V13-34-page2.txt: [('-', ''), ('-among', 'among')] PUR19140326-V13-34-page21.txt: [('-j', 'j')] PUR19140326-V13-34-page23.txt: [('-Conference', 'Conference'), ('-that', 'that'), ('-', ''), ('-hope', 'hope'), ('-', ''), ('-', ''), ('ap--', 'ap-'), ('cOnfer-', 'cOnfer'), ('--Union', '-Union'), ('....-z.-', '....-z.'), ('-..', '..')] PUR19140326-V13-34-page24.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Adventists.-', 'Adventists.'), ('-', '')] PUR19140326-V13-34-page3.txt: [('com-', 'com'), ('peo-', 'peo')] PUR19140326-V13-34-page5.txt: [('-we', 'we'), ('Con-', 'Con'), ('isfissi--', 'isfissi-'), ('-workers', 'workers'), ('--', '-'), ('-a', 'a')] PUR19140326-V13-34-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140326-V13-34-page7.txt: [('-', ''), ('prosperous-', 'prosperous'), ('-', '')] PUR19140326-V13-34-page8.txt: [('-daily', 'daily'), ('-taken', 'taken'), ('-', ''), ('-', ''), ('Seventh-', 'Seventh'), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] PUR19140326-V13-34-page9.txt: [('Inventories-', 'Inventories'), ('-', ''), ('-', ''), ('-', ''), ("-'Midsummer", "'Midsummer"), ('-', ''), ('-est', 'est'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140402-V13-35-page1.txt: [('MISSION-', 'MISSION')] PUR19140402-V13-35-page2.txt: [('-desired', 'desired'), ('-', ''), ('held-', 'held')] PUR19140402-V13-35-page3.txt: [('Build-', 'Build')] PUR19140402-V13-35-page4.txt: [('imper-', 'imper'), ('do-', 'do')] PUR19140402-V13-35-page5.txt: [('-of', 'of'), ('Panama-', 'Panama'), ('-', '')] PUR19140402-V13-35-page6.txt: [('-', ''), ('-', '')] PUR19140402-V13-35-page7.txt: [('-', '')] PUR19140402-V13-35-page8.txt: [('-', ''), ('-', '')] PUR19140409-V13-36-page1.txt: [('insti-', 'insti')] PUR19140409-V13-36-page3.txt: [('colpor-', 'colpor'), ('-', ''), ('-', ''), ('-', ''), ('Watsonville-', 'Watsonville'), ('-', '')] PUR19140409-V13-36-page4.txt: [('-', ''), ('-', '')] PUR19140416-V13-37-page1.txt: [('ob-', 'ob')] PUR19140416-V13-37-page3.txt: [('--', '-'), ('-Conference', 'Conference'), ('-', ''), ('-', ''), ('Sun-', 'Sun')] PUR19140416-V13-37-page5.txt: [('FELLOWS.-', 'FELLOWS.'), ('BALLOU.-', 'BALLOU.'), ('BOSTETTER.-', 'BOSTETTER.'), ('-', '')] PUR19140416-V13-37-page6.txt: [('-', ''), ('-', ''), ('RE-', 'RE')] PUR19140423-V13-38-page1.txt: [('comple-', 'comple'), ('splen-', 'splen'), ('dis-', 'dis'), ('-', '')] PUR19140423-V13-38-page2.txt: [('se-', 'se'), ('va-', 'va')] PUR19140423-V13-38-page3.txt: [('RE-', 'RE')] PUR19140423-V13-38-page5.txt: [('-', ''), ('-', ''), ('METTE.-', 'METTE.')] PUR19140423-V13-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140430-V13-39-page1.txt: [('--', '-')] PUR19140430-V13-39-page2.txt: [('to-', 'to'), ('-', ''), ('-', ''), ('Con-', 'Con')] PUR19140430-V13-39-page5.txt: [('re-', 're'), ('-', '')] PUR19140430-V13-39-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-.', '.'), ('-', ''), ('-.', '.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19140507-V13-40-page1.txt: [('-', '')] PUR19140507-V13-40-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140507-V13-40-page5.txt: [('-it', 'it')] PUR19140507-V13-40-page6.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('hun-', 'hun'), ('-', ''), ('P.-', 'P.')] PUR19140507-V13-40-page7.txt: [('Providen-', 'Providen'), ('HEGEL.-', 'HEGEL.')] PUR19140507-V13-40-page8.txt: [('-', ''), ('-', '')] PUR19140514-V13-41-page1.txt: [('-to', 'to'), ('be-', 'be'), ('--r', '-r'), ('-the', 'the'), ('Cen-', 'Cen'), ('-', '')] PUR19140514-V13-41-page11.txt: [('-', ''), ('-', ''), ('five-', 'five'), ('weekly-', 'weekly'), ('in-', 'in'), ('-Brit', 'Brit'), ('succeeded.-', 'succeeded.'), ('-', ''), ('-', '')] PUR19140514-V13-41-page12.txt: [('-', ''), ('-', ''), ('Seventh-', 'Seventh')] PUR19140514-V13-41-page2.txt: [('-schools', 'schools'), ('tui-', 'tui')] PUR19140514-V13-41-page3.txt: [('RE-', 'RE'), ('it-', 'it'), ('ta-', 'ta')] PUR19140514-V13-41-page4.txt: [('-', ''), ('-', '')] PUR19140514-V13-41-page6.txt: [('re-', 're')] PUR19140514-V13-41-page8.txt: [('Asso-', 'Asso'), ('Seventh-', 'Seventh'), ('-', ''), ('presi-', 'presi'), ('-', '')] PUR19140514-V13-41-page9.txt: [('I.-', 'I.')] PUR19140521-V13-42-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('oo-', 'oo'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140521-V13-42-page3.txt: [('GARDNER.-', 'GARDNER.'), ('OSBORNE.-', 'OSBORNE.')] PUR19140521-V13-42-page7.txt: [('-', ''), ('CARBARRUS.-', 'CARBARRUS.'), ('re-', 're'), ('lk"--', 'lk"-')] PUR19140521-V13-42-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140528-V13-43-page2.txt: [('Camp-', 'Camp'), ('remain-', 'remain')] PUR19140528-V13-43-page3.txt: [('Camp-', 'Camp'), ('Camp-', 'Camp'), ('Seventh-', 'Seventh')] PUR19140528-V13-43-page5.txt: [('-', ''), ('-', ''), ('psychol-', 'psychol')] PUR19140528-V13-43-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140604-V13-44-page1.txt: [('-', ''), ('-', ''), ('pres-', 'pres')] PUR19140604-V13-44-page3.txt: [('Camp-', 'Camp'), ('Camp-', 'Camp')] PUR19140604-V13-44-page6.txt: [('-', ''), ('-', ''), ('PA-', 'PA'), ('Seventh-', 'Seventh')] PUR19140611-V13-45-page1.txt: [('Treasurer.--', 'Treasurer.-'), ('-ely', 'ely'), ('-', '')] PUR19140611-V13-45-page2.txt: [('-----', '----')] PUR19140611-V13-45-page3.txt: [('---', '--')] PUR19140611-V13-45-page4.txt: [('Sab-', 'Sab'), ('-', '')] PUR19140611-V13-45-page5.txt: [('-', '')] PUR19140611-V13-45-page6.txt: [('-', ''), ('-', '')] PUR19140618-V13-46-page1.txt: [('con-', 'con')] PUR19140618-V13-46-page3.txt: [('-', '')] PUR19140618-V13-46-page5.txt: [('ANGLE.-', 'ANGLE.')] PUR19140618-V13-46-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140625-V13-47-page1.txt: [('cQQ-zGeed-', 'cQQ-zGeed')] PUR19140625-V13-47-page4.txt: [('-', '')] PUR19140625-V13-47-page6.txt: [('-', ''), ('--', '-'), ('--', '-'), ('--', '-')] PUR19140625-V13-47-page7.txt: [('-i', 'i'), ('Totals-', 'Totals')] PUR19140625-V13-47-page8.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('UN-', 'UN'), ('corn-', 'corn')] PUR19140702-V13-48-page1.txt: [('-union', 'union')] PUR19140702-V13-48-page4.txt: [('RE-', 'RE')] PUR19140702-V13-48-page5.txt: [('-', ''), ('RE-', 'RE'), ('-ti', 'ti'), ('-', ''), ('distri-', 'distri')] PUR19140702-V13-48-page6.txt: [('-each', 'each')] PUR19140702-V13-48-page7.txt: [('-"or', '"or')] PUR19140702-V13-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('RE-', 'RE'), ('RE-', 'RE'), ('un-', 'un')] PUR19140709-V13-49-page2.txt: [('-joining', 'joining'), ('Instructor-', 'Instructor')] PUR19140709-V13-49-page3.txt: [('TINTON-', 'TINTON')] PUR19140709-V13-49-page6.txt: [('canvass-', 'canvass'), ('-', ''), ('-room', 'room')] PUR19140709-V13-49-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140709-V13-49-page8.txt: [('-', ''), ('-', ''), ('-page', 'page'), ('-color', 'color'), ('-', ''), ('-', '')] PUR19140716-V13-50-page1.txt: [('-Fly', 'Fly')] PUR19140716-V13-50-page10.txt: [('RE-', 'RE'), ('-Resolved', 'Resolved'), ('PA-', 'PA')] PUR19140716-V13-50-page12.txt: [('-', ''), ('-', ''), ('-room', 'room'), ('-foot', 'foot'), ('-', ''), ('Pres-', 'Pres')] PUR19140716-V13-50-page2.txt: [('-San', 'San')] PUR19140716-V13-50-page3.txt: [('-', ''), ('-', '')] PUR19140716-V13-50-page4.txt: [('-', '')] PUR19140716-V13-50-page5.txt: [('A.-', 'A.'), ('ER-', 'ER'), ('schools-', 'schools'), ('know-', 'know'), ('TWENTY-CENT-A-', 'TWENTY-CENT-A'), ('-', '')] PUR19140716-V13-50-page6.txt: [('-', ''), ('my-', 'my'), ('in-', 'in')] PUR19140716-V13-50-page9.txt: [('-', ''), ('ad-', 'ad')] PUR19140723-V13-51-page1.txt: [('-member', 'member'), ('MEMBER-', 'MEMBER')] PUR19140723-V13-51-page2.txt: [('-', '')] PUR19140723-V13-51-page5.txt: [('-DELIVERED', 'DELIVERED')] PUR19140723-V13-51-page6.txt: [('--', '-')] PUR19140723-V13-51-page7.txt: [('C-', 'C'), ('-----', '----'), ("'w---", "'w--")] PUR19140723-V13-51-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140730-V13-52-page1.txt: [('RE-', 'RE'), ('Mac-', 'Mac'), ('Mac-', 'Mac'), ('mis-', 'mis')] PUR19140730-V13-52-page3.txt: [('Depreciation-', 'Depreciation'), ('Donations-', 'Donations'), ('-', ''), ('-', '')] PUR19140730-V13-52-page4.txt: [('California-', 'California')] PUR19140730-V13-52-page5.txt: [('---', '--'), ('-', '')] PUR19140730-V13-52-page6.txt: [('-tent', 'tent'), ('-', '')] PUR19140730-V13-52-page8.txt: [('-', ''), ('-', '')] PUR19140806-V14-01-page3.txt: [('--Los', '-Los'), ('-cent-per-week', 'cent-per-week'), ('themselvesfavor-', 'themselvesfavor'), ('-it', 'it')] PUR19140806-V14-01-page4.txt: [('mes-', 'mes'), ('splen-', 'splen')] PUR19140806-V14-01-page7.txt: [('-Cent-a-Week', 'Cent-a-Week'), ('-', ''), ('--', '-')] PUR19140806-V14-01-page8.txt: [('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week')] PUR19140813-V14-02-page2.txt: [('San-', 'San'), ('re-', 're')] PUR19140813-V14-02-page4.txt: [('-', '')] PUR19140813-V14-02-page5.txt: [('--', '-'), ('Mac-', 'Mac')] PUR19140813-V14-02-page6.txt: [('oppos-', 'oppos')] PUR19140813-V14-02-page7.txt: [('-call', 'call'), ('-BOOK', 'BOOK'), ('Library-', 'Library')] PUR19140813-V14-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140820-V14-03-page2.txt: [('suf-', 'suf'), ('temper-', 'temper')] PUR19140820-V14-03-page3.txt: [('those-', 'those')] PUR19140820-V14-03-page4.txt: [('RE-', 'RE')] PUR19140820-V14-03-page5.txt: [('---', '--')] PUR19140820-V14-03-page6.txt: [('Items--', 'Items-'), ('report-', 'report'), ('Potts-', 'Potts')] PUR19140820-V14-03-page7.txt: [('-One-half', 'One-half'), ('-', ''), ('-Fine', 'Fine'), ('-', ''), ('-In', 'In'), ('-', ''), ('-Twenty', 'Twenty'), ('-Good', 'Good'), ('-', ''), ('-Fifteen', 'Fifteen'), ('-', ''), ('-A', 'A'), ('-', ''), ('-A', 'A')] PUR19140820-V14-03-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140827-V14-04-page1.txt: [('-', '')] PUR19140827-V14-04-page3.txt: [('-of', 'of')] PUR19140827-V14-04-page5.txt: [('sur-', 'sur'), ('-C', 'C'), ('-J.', 'J.'), ('RECORVER-', 'RECORVER')] PUR19140827-V14-04-page7.txt: [('-people.', 'people.')] PUR19140827-V14-04-page8.txt: [('-', ''), ('-', ''), ('PA-', 'PA'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140903-V14-05-page1.txt: [('-', '')] PUR19140903-V14-05-page3.txt: [('res-', 'res')] PUR19140903-V14-05-page5.txt: [('-P.', 'P.')] PUR19140903-V14-05-page6.txt: [('r-', 'r')] PUR19140903-V14-05-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('meet-', 'meet')] PUR19140903-V14-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140910-V14-06-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-one', 'one'), ('-in', 'in'), ('depart-', 'depart')] PUR19140910-V14-06-page11.txt: [('await-', 'await'), ('-.', '.'), ('-', '')] PUR19140910-V14-06-page12.txt: [('-RECORDER', 'RECORDER')] PUR19140910-V14-06-page13.txt: [('man-', 'man')] PUR19140910-V14-06-page14.txt: [('-', '')] PUR19140910-V14-06-page15.txt: [('-', ''), ('-', ''), ('-', '')] PUR19140910-V14-06-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140910-V14-06-page2.txt: [('Mac-', 'Mac'), ('-', ''), ('-', ''), ('-', '')] PUR19140910-V14-06-page3.txt: [('-', ''), ('--seeking', '-seeking')] PUR19140910-V14-06-page4.txt: [('har-', 'har')] PUR19140910-V14-06-page5.txt: [('completere-', 'completere'), ('-', ''), ('-', '')] PUR19140910-V14-06-page7.txt: [('--', '-'), ('-', ''), ("-'", "'"), ('-EtOli', 'EtOli'), ('-have', 'have'), ('-to', 'to')] PUR19140910-V14-06-page9.txt: [('-fairly', 'fairly'), ('di-', 'di')] PUR19140917-V14-07-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-C.', 'C.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-He', 'He')] PUR19140917-V14-07-page2.txt: [('-earnest', 'earnest')] PUR19140917-V14-07-page3.txt: [('-success', 'success'), ('-', '')] PUR19140917-V14-07-page4.txt: [('RE-', 'RE')] PUR19140917-V14-07-page5.txt: [('-', ''), ('Fire-', 'Fire'), ('peo-', 'peo'), ('"In-', '"In')] PUR19140917-V14-07-page6.txt: [('-"Lincoln"', '"Lincoln"'), ('-B', 'B'), ('-"The', '"The'), ('-E.', 'E.')] PUR19140917-V14-07-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('----', '---')] PUR19140917-V14-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19140924-V14-08-page1.txt: [('thirty-', 'thirty')] PUR19140924-V14-08-page2.txt: [('havecer-', 'havecer'), ('-', ''), ('prob-', 'prob')] PUR19140924-V14-08-page3.txt: [('-not', 'not'), ('OC-', 'OC'), ('inter-', 'inter'), ('-viewed', 'viewed')] PUR19140924-V14-08-page4.txt: [('-E.', 'E.')] PUR19140924-V14-08-page5.txt: [('-', ''), ('liberal-', 'liberal'), ('inst.-', 'inst.'), ('-RECORDER', 'RECORDER'), ('-', ''), ('In-', 'In')] PUR19140924-V14-08-page6.txt: [('-cent', 'cent'), ('twenty-', 'twenty')] PUR19140924-V14-08-page7.txt: [('-', ''), ('--', '-')] PUR19140924-V14-08-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141001-V14-09-page1.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141001-V14-09-page2.txt: [('-', ''), ('-', '')] PUR19141001-V14-09-page3.txt: [('-him.', 'him.'), ('-LE.', 'LE.'), ('-', ''), ('-E.', 'E.')] PUR19141001-V14-09-page4.txt: [('kinder-', 'kinder')] PUR19141001-V14-09-page5.txt: [('-', ''), ('-', ''), ('re-', 're'), ('-L.', 'L.'), ('-', ''), ('-', ''), ('-A.', 'A.'), ('-', ''), ('-', ''), ('-', ''), ('-Sabbath', 'Sabbath'), ('-Charles', 'Charles'), ('-Mrs.', 'Mrs.'), ('-', ''), ('-', '')] PUR19141001-V14-09-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141001-V14-09-page7.txt: [('-upon', 'upon'), ('-', ''), ('----', '---'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19141001-V14-09-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141008-V14-10-page1.txt: [('care-', 'care')] PUR19141008-V14-10-page2.txt: [('-cent-aweek', 'cent-aweek'), ('-J.', 'J.')] PUR19141008-V14-10-page5.txt: [('re-', 're')] PUR19141008-V14-10-page6.txt: [('--in', '-in'), ('-because', 'because'), ('-literature', 'literature')] PUR19141008-V14-10-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19141008-V14-10-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('head-', 'head')] PUR19141015-V14-11-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-C.', 'C.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', ''), ('-', ''), ('-', '')] PUR19141015-V14-11-page2.txt: [('-', '')] PUR19141015-V14-11-page4.txt: [('-', ''), ('-', '')] PUR19141015-V14-11-page6.txt: [('-Rand', 'Rand'), ('country"-', 'country"')] PUR19141015-V14-11-page7.txt: [('-Alfalfa', 'Alfalfa'), ('-', ''), ('-A', 'A'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('--', '-')] PUR19141015-V14-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19141022-V14-12-page1.txt: [('Watchman--', 'Watchman-')] PUR19141022-V14-12-page2.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141022-V14-12-page7.txt: [('-Alfalfa', 'Alfalfa'), ('-', ''), ('-Four', 'Four'), ('-', ''), ('-', ''), ('-M.', 'M.'), ('-', ''), ('-', '')] PUR19141022-V14-12-page8.txt: [('-', '')] PUR19141029-V14-13-page2.txt: [('-', ''), ('-the', 'the'), ('-we', 'we'), ('-', '')] PUR19141029-V14-13-page4.txt: [('-.', '.'), ('Conference-', 'Conference'), ('support-', 'support')] PUR19141029-V14-13-page5.txt: [('twenty-cent-', 'twenty-cent'), ("-'a-week", "'a-week"), ('RE-', 'RE')] PUR19141029-V14-13-page7.txt: [('-cent', 'cent'), ('-', ''), ('Vriseenaneous--', 'Vriseenaneous-'), ('five-', 'five'), ('-Light', 'Light'), ('-Address', 'Address'), ('--', '-'), ('Camp-', 'Camp'), ('obtain-', 'obtain')] PUR19141029-V14-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19141105-V14-14-page2.txt: [('-', ''), ('-', '')] PUR19141105-V14-14-page4.txt: [('-.', '.'), ('-', '')] PUR19141105-V14-14-page5.txt: [('-', '')] PUR19141105-V14-14-page6.txt: [('RE-', 'RE'), ('-', ''), ('-', ''), ('-', '')] PUR19141105-V14-14-page7.txt: [('-Alfalfa', 'Alfalfa'), ('-', ''), ('-Twenty', 'Twenty'), ('-foot', 'foot'), ('-----', '----'), ('-Having', 'Having'), ('Es-', 'Es'), ('-', ''), ('-', ''), ('-', '')] PUR19141105-V14-14-page8.txt: [('prices-', 'prices'), ('an-', 'an'), ('-', ''), ('-', '')] PUR19141112-V14-15-page1.txt: [('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-C.', 'C.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.')] PUR19141112-V14-15-page5.txt: [('In-', 'In'), ('-', '')] PUR19141112-V14-15-page6.txt: [('--', '-'), ('-', ''), ('Mac-', 'Mac')] PUR19141112-V14-15-page7.txt: [('price-', 'price'), ('-', ''), ('-', ''), ('--over', '-over'), ('-foot', 'foot'), ('-', ''), ('-', '')] PUR19141112-V14-15-page8.txt: [('-', ''), ('Confer-', 'Confer')] PUR19141119-V14-16-page1.txt: [('God-', 'God'), ('dis-', 'dis'), ('--J.', '-J.')] PUR19141119-V14-16-page2.txt: [('time-', 'time'), ('-cent-aweek', 'cent-aweek'), ('o-', 'o')] PUR19141119-V14-16-page3.txt: [('-t', 't'), ('-E.', 'E.')] PUR19141119-V14-16-page4.txt: [('-cent', 'cent')] PUR19141119-V14-16-page6.txt: [('F-m-', 'F-m'), ('Mac-', 'Mac')] PUR19141119-V14-16-page7.txt: [('-Man', 'Man'), ('-Five', 'Five'), ('-', ''), ('-Alfalfa', 'Alfalfa'), ('-', ''), ('-An', 'An'), ('-', ''), ('-Twenty', 'Twenty'), ('-foot', 'foot'), ('-Co', 'Co'), ('-', ''), ('-', '')] PUR19141119-V14-16-page8.txt: [('-', ''), ('-', ''), ('extra-', 'extra')] PUR19141126-V14-17-page3.txt: [('-Menus', 'Menus'), ('-', '')] PUR19141126-V14-17-page4.txt: [('move-', 'move'), ('-cent', 'cent')] PUR19141126-V14-17-page5.txt: [('-we', 'we'), ('-cent-a-week', 'cent-a-week'), ('-g', 'g')] PUR19141126-V14-17-page6.txt: [('-', ''), ('J"--', 'J"-'), ('-"Hello', '"Hello'), ('ser-', 'ser')] PUR19141126-V14-17-page7.txt: [('-', ''), ('-St', 'St'), ('-', ''), ('Hins-', 'Hins'), ('-', '')] PUR19141126-V14-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('-cent', 'cent'), ('-', ''), ('-', ''), ('---', '--'), ('-cent', 'cent'), ('-cent', 'cent')] PUR19141203-V14-18-page1.txt: [('RE-', 'RE'), ('-', ''), ('-', ''), ('-', '')] PUR19141203-V14-18-page6.txt: [('set-', 'set'), ('boats-', 'boats'), ('up-to-date-', 'up-to-date'), ('boy-', 'boy'), ('-Life.', 'Life.')] PUR19141203-V14-18-page7.txt: [('-', ''), ('-', ''), ('-ordered', 'ordered'), ('-and', 'and'), ('-', '')] PUR19141203-V14-18-page8.txt: [('--E.', '-E.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week')] PUR19141210-V14-19-page1.txt: [('bap-', 'bap')] PUR19141210-V14-19-page2.txt: [('-cent-a-week', 'cent-a-week'), ('-', '')] PUR19141210-V14-19-page3.txt: [('-It', 'It'), ('--J.', '-J.'), ('-C.', 'C.')] PUR19141210-V14-19-page4.txt: [('-cent-a-week', 'cent-a-week'), ('oppor-', 'oppor')] PUR19141210-V14-19-page5.txt: [('-cent-a-week', 'cent-a-week')] PUR19141210-V14-19-page6.txt: [('-two', 'two'), ('-this', 'this')] PUR19141210-V14-19-page7.txt: [('-UNION', 'UNION'), ('RECO.K.DEli-', 'RECO.K.DEli'), ('-', ''), ('---', '--')] PUR19141210-V14-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19141217-V14-20-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.')] PUR19141217-V14-20-page2.txt: [('-', ''), ('-J.', 'J.'), ('-cent-aweek', 'cent-aweek'), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week')] PUR19141217-V14-20-page3.txt: [('-Subject', 'Subject'), ('-', ''), ('--V-', '-V-'), ('-', ''), ('-.', '.'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('--.', '-.'), ('-', ''), ('--', '-'), ('-.', '.'), ('-t', 't')] PUR19141217-V14-20-page4.txt: [('-per-member', 'per-member'), ('-E.', 'E.')] PUR19141217-V14-20-page6.txt: [('-cent-a-week', 'cent-a-week'), ('-', ''), ('-Our', 'Our')] PUR19141217-V14-20-page7.txt: [('-Estate', 'Estate'), ('-is', 'is'), ('-', ''), ('-', ''), ('-Agents', 'Agents')] PUR19141217-V14-20-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141224-V14-21-page2.txt: [('--', '-'), ('-', '')] PUR19141224-V14-21-page3.txt: [('--', '-'), ('a-', 'a')] PUR19141224-V14-21-page4.txt: [('-', ''), ('-', ''), ('-', '')] PUR19141231-V14-22-page1.txt: [('-cent-a-week', 'cent-a-week')] PUR19141231-V14-22-page2.txt: [('-', ''), ('-J.', 'J.')] PUR19141231-V14-22-page3.txt: [('-E.', 'E.')] PUR19141231-V14-22-page5.txt: [('RE-', 'RE')] PUR19141231-V14-22-page6.txt: [('PACIFIC-', 'PACIFIC'), ('-Counsel', 'Counsel')] PUR19141231-V14-22-page7.txt: [('-', '')] PUR19141231-V14-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150107-V14-23-page1.txt: [('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-C.', 'C.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('go-', 'go'), ('-Worthie', 'Worthie')] PUR19150107-V14-23-page2.txt: [('-J.', 'J.'), ('mis-', 'mis')] PUR19150107-V14-23-page3.txt: [('Mis-', 'Mis'), ('-filifory-rand', 'filifory-rand'), ('-needs', 'needs'), ('-', ''), ('-Religious', 'Religious')] PUR19150107-V14-23-page4.txt: [('ex-', 'ex')] PUR19150107-V14-23-page5.txt: [('-know-that', 'know-that'), ('-the', 'the')] PUR19150107-V14-23-page6.txt: [('MC-', 'MC'), ('-It', 'It')] PUR19150107-V14-23-page7.txt: [('RE-', 'RE'), ('-', ''), ('-for', 'for'), ('remem-', 'remem')] PUR19150107-V14-23-page8.txt: [('-', ''), ('-', ''), ('-----', '----')] PUR19150114-V14-24-page1.txt: [('Confer-', 'Confer'), ('meet-', 'meet')] PUR19150114-V14-24-page3.txt: [('-ago', 'ago')] PUR19150114-V14-24-page4.txt: [('-E.', 'E.'), ('-', ''), ('Day-', 'Day')] PUR19150114-V14-24-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-----', '----'), ('amount-', 'amount'), ('-cent-a-week', 'cent-a-week')] PUR19150114-V14-24-page6.txt: [('-kilowatt', 'kilowatt')] PUR19150114-V14-24-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150114-V14-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19150121-V14-25-page1.txt: [('"-', '"'), ('-Workmen', 'Workmen')] PUR19150121-V14-25-page2.txt: [('-', ''), ('ana-', 'ana')] PUR19150121-V14-25-page3.txt: [('-the', 'the'), ('Mac-', 'Mac')] PUR19150121-V14-25-page5.txt: [("-'and", "'and")] PUR19150121-V14-25-page6.txt: [('-', ''), ('-', ''), ('-', '')] PUR19150121-V14-25-page7.txt: [('-', ''), ('pro-', 'pro'), ('-testing', 'testing'), ('anti-', 'anti'), ('Cal-', 'Cal'), ('-F-tC', 'F-tC')] PUR19150121-V14-25-page8.txt: [('-cent-per-week', 'cent-per-week'), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week')] PUR19150128-V14-26-page3.txt: [('-E.', 'E.'), ('price-', 'price')] PUR19150128-V14-26-page4.txt: [('-one', 'one'), ('atten-', 'atten'), ('-', '')] PUR19150128-V14-26-page5.txt: [('Seventh-', 'Seventh')] PUR19150128-V14-26-page6.txt: [('-', ''), ('-', ''), ('--', '-'), ('-Selected.', 'Selected.')] PUR19150128-V14-26-page7.txt: [('-', ''), ('-', ''), ('-----', '----'), ('-tf', 'tf'), ('-', ''), ('-', ''), ('fe-', 'fe')] PUR19150204-V14-27-page1.txt: [('RE-', 'RE'), ('-cent-a-week', 'cent-a-week'), ('-', ''), ('-', ''), ('-', ''), ('before-', 'before')] PUR19150204-V14-27-page2.txt: [('-J.', 'J.'), ('-of', 'of'), ('-', '')] PUR19150204-V14-27-page3.txt: [('-worth', 'worth')] PUR19150204-V14-27-page4.txt: [('-started', 'started')] PUR19150204-V14-27-page5.txt: [('-', '')] PUR19150204-V14-27-page7.txt: [('-Company.', 'Company.'), ('-Meeting', 'Meeting'), ('Seventh-', 'Seventh'), ('Panama-', 'Panama'), ('-several', 'several'), ('-', ''), ('-far', 'far'), ('-fine', 'fine'), ('-', ''), ('-postage', 'postage'), ('-----', '----'), ('-tf', 'tf'), ('-', ''), ('-', ''), ('-exchanged.', 'exchanged.'), ('-', ''), ('-Conference', 'Conference'), ("before'-", "before'")] PUR19150204-V14-27-page8.txt: [('-', ''), ('-', '')] PUR19150211-V14-28-page1.txt: [('-', '')] PUR19150211-V14-28-page2.txt: [('King."-', 'King."'), ('Mc-', 'Mc')] PUR19150211-V14-28-page4.txt: [('-', '')] PUR19150211-V14-28-page5.txt: [('irregulari-', 'irregulari'), ("P'ACTFIC-", "P'ACTFIC")] PUR19150211-V14-28-page6.txt: [('-', '')] PUR19150211-V14-28-page7.txt: [('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('--', '-'), ('--', '-')] PUR19150211-V14-28-page8.txt: [('-', ''), ('-', ''), ('-tf', 'tf'), ('-', ''), ('Seventh-', 'Seventh'), ('-', ''), ('-', '')] PUR19150218-V14-29-page2.txt: [('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week'), ('-', '')] PUR19150218-V14-29-page3.txt: [('be-', 'be')] PUR19150218-V14-29-page4.txt: [('-', ''), ('-cent', 'cent'), ('-cent', 'cent'), ('-cent', 'cent')] PUR19150218-V14-29-page5.txt: [('-cent', 'cent'), ('-cent', 'cent'), ('-', '')] PUR19150218-V14-29-page6.txt: [('self-', 'self'), ('-', ''), ('-tf', 'tf'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('--.--..--.-.--', '-.--..--.-.--'), ('L-', 'L'), ('-..--', '..--'), ('-..--', '..--'), ('.-', '.'), ('---', '--'), ('-', ''), ('-', ''), ('--.', '-.')] PUR19150218-V14-29-page7.txt: [('RE-', 'RE'), ('-that', 'that'), ('-', ''), ('-Lord', 'Lord'), ('-cent-a-week', 'cent-a-week')] PUR19150218-V14-29-page8.txt: [('-cent-a-week', 'cent-a-week'), ('-', ''), ('-', ''), ('-cent-aweek', 'cent-aweek'), ('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week')] PUR19150225-V14-30-page2.txt: [('RE-', 'RE'), ('-stereopticon', 'stereopticon'), ('-', ''), ('-', ''), ('-', ''), ('.-.---', '.-.--'), ('..-', '..'), ('othersarealmostreadyforthatordi-', 'othersarealmostreadyforthatordi'), ("'--", "'-"), ('-', '')] PUR19150225-V14-30-page3.txt: [('-arefreshing', 'arefreshing'), ("-thework'", "thework'")] PUR19150225-V14-30-page5.txt: [('-', ''), ('--', '-'), ('--', '-')] PUR19150225-V14-30-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150225-V14-30-page7.txt: [('-colporteurs', 'colporteurs'), ('-', ''), ('-tf', 'tf'), ('VEGE-', 'VEGE'), ('-passdoor', 'passdoor')] PUR19150225-V14-30-page8.txt: [('-', ''), ('-', ''), ('-from', 'from'), ('-cent-a-week', 'cent-a-week')] PUR19150304-V14-31-page1.txt: [('mo-', 'mo'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-', ''), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', '')] PUR19150304-V14-31-page2.txt: [('-J.', 'J.')] PUR19150304-V14-31-page3.txt: [('-', ''), ('learn-', 'learn'), ('-', '')] PUR19150304-V14-31-page4.txt: [('r--', 'r-')] PUR19150304-V14-31-page5.txt: [('abundantly"-', 'abundantly"'), ('-literally', 'literally'), ('-', '')] PUR19150304-V14-31-page6.txt: [('-Selected.', 'Selected.'), ('can-', 'can'), ('-remarkable', 'remarkable'), ('-', ''), ('-', '')] PUR19150304-V14-31-page7.txt: [('VEGE-', 'VEGE'), ('-', ''), ('-----', '----')] PUR19150304-V14-31-page8.txt: [('-', ''), ('-', ''), ('Mc-', 'Mc'), ('RE-', 'RE')] PUR19150311-V14-32-page1.txt: [('-', '')] PUR19150311-V14-32-page10.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('teach-', 'teach'), ('-', ''), ('UNION-', 'UNION')] PUR19150311-V14-32-page11.txt: [('Mc-', 'Mc'), ('-', '')] PUR19150311-V14-32-page12.txt: [('-large', 'large'), ('Mc-', 'Mc')] PUR19150311-V14-32-page13.txt: [('-GLUM', 'GLUM'), ('-', ''), ('---f.', '--f.'), ('--', '-'), ('----', '---'), ('-', ''), ('---', '--'), ('--', '-')] PUR19150311-V14-32-page14.txt: [('Mc-', 'Mc'), ('Wood-', 'Wood'), ('Mc-', 'Mc'), ('Dr.-', 'Dr.'), ('sym-', 'sym'), ('South-', 'South')] PUR19150311-V14-32-page15.txt: [('Seventh-', 'Seventh'), ('-Con.-', 'Con.-'), ('-when', 'when'), ('takenout-', 'takenout'), ('-cent-a-week', 'cent-a-week'), ('-centa-week', 'centa-week'), ('commit-', 'commit')] PUR19150311-V14-32-page16.txt: [('--The', '-The')] PUR19150311-V14-32-page17.txt: [('-The', 'The'), ('-It', 'It'), ('-When', 'When'), ('-Credentials', 'Credentials'), ('-It', 'It')] PUR19150311-V14-32-page18.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('set-', 'set'), ('CONFER-', 'CONFER'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150311-V14-32-page19.txt: [('Member-', 'Member')] PUR19150311-V14-32-page2.txt: [('-', '')] PUR19150311-V14-32-page20.txt: [('-', ''), ('-', ''), ('Seventh-', 'Seventh')] PUR19150311-V14-32-page21.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ac-', 'ac'), ('-', ''), ('-', ''), ('-', '')] PUR19150311-V14-32-page22.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150311-V14-32-page23.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('be-', 'be'), ('-----', '----')] PUR19150311-V14-32-page24.txt: [('UNION-', 'UNION'), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('.-', '.'), ('-we', 'we'), ('-', '')] PUR19150311-V14-32-page3.txt: [('-', '')] PUR19150311-V14-32-page4.txt: [('-cent', 'cent')] PUR19150311-V14-32-page5.txt: [('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week'), ('-cent-a-week', 'cent-a-week'), ('this-', 'this')] PUR19150311-V14-32-page6.txt: [('TRUS-', 'TRUS'), ('con-', 'con')] PUR19150311-V14-32-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('trans-', 'trans'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150311-V14-32-page8.txt: [('-', ''), ('-', ''), ('CON-', 'CON'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150311-V14-32-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150325-V14-33-page1.txt: [('-', '')] PUR19150325-V14-33-page2.txt: [('-J.', 'J.')] PUR19150325-V14-33-page3.txt: [('L-', 'L'), ('-Breth', 'Breth')] PUR19150325-V14-33-page5.txt: [('-', '')] PUR19150325-V14-33-page6.txt: [('-out', 'out'), ('pro-', 'pro'), ('-', ''), ('-', '')] PUR19150325-V14-33-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Pierce-', 'Pierce'), ('-', ''), ('-at', 'at')] PUR19150325-V14-33-page8.txt: [('Cor-', 'Cor'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19150401-V14-34-page10.txt: [('-', '')] PUR19150401-V14-34-page2.txt: [('-', '')] PUR19150401-V14-34-page3.txt: [("-R'ECO'RDER'", "R'ECO'RDER'")] PUR19150401-V14-34-page4.txt: [('Confer-', 'Confer')] PUR19150401-V14-34-page5.txt: [('iamani-', 'iamani')] PUR19150401-V14-34-page7.txt: [('-inall', 'inall')] PUR19150401-V14-34-page9.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150408-V14-35-page2.txt: [('-J.O.C.', 'J.O.C.'), ('-the', 'the')] PUR19150408-V14-35-page3.txt: [('fallen-', 'fallen')] PUR19150408-V14-35-page4.txt: [('-----', '----'), ('-----', '----')] PUR19150408-V14-35-page5.txt: [('-----', '----'), ('-----', '----')] PUR19150408-V14-35-page7.txt: [('-', ''), ('al-', 'al'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('the-', 'the'), ('-', ''), ('-', '')] PUR19150408-V14-35-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19150415-V14-36-page1.txt: [('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', ''), ('-in', 'in'), ('-', ''), ('.-', '.')] PUR19150415-V14-36-page2.txt: [('bap-', 'bap')] PUR19150415-V14-36-page3.txt: [('-the', 'the'), ('-----', '----'), ('-----', '----'), ('-----', '----'), ('-several', 'several')] PUR19150415-V14-36-page5.txt: [('-Withfiewer', 'Withfiewer'), ('wasoralso.-', 'wasoralso.'), ('-', '')] PUR19150415-V14-36-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('AdVentistsee-', 'AdVentistsee'), ('-', ''), ('-', ''), ('-o', 'o'), ('-', '')] PUR19150415-V14-36-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150422-V14-37-page1.txt: [('-If', 'If'), ('-of', 'of')] PUR19150422-V14-37-page3.txt: [('the-', 'the'), ('-returning', 'returning'), ('---', '--'), ('-----', '----')] PUR19150422-V14-37-page4.txt: [('-----', '----'), ('Mc-', 'Mc')] PUR19150422-V14-37-page5.txt: [('AO-', 'AO'), ('-to', 'to')] PUR19150422-V14-37-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150422-V14-37-page7.txt: [('-', '')] PUR19150422-V14-37-page8.txt: [('Organization-', 'Organization'), ('-', ''), ('-', '')] PUR19150429-V14-38-page1.txt: [('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-to', 'to')] PUR19150429-V14-38-page3.txt: [('-', ''), ('Depart-', 'Depart'), ('Mac-', 'Mac'), ('-books', 'books'), ('-.', '.'), ("'supply-", "'supply")] PUR19150429-V14-38-page4.txt: [('dis-', 'dis'), ('-cent', 'cent')] PUR19150429-V14-38-page5.txt: [('Can-', 'Can'), ('-ordered', 'ordered'), ('Signs-', 'Signs'), ('an-', 'an'), ('-', '')] PUR19150429-V14-38-page6.txt: [('-', '')] PUR19150429-V14-38-page7.txt: [('-Alfalfa', 'Alfalfa'), ('-', ''), ('-Three', 'Three'), ('-', ''), ('-', ''), ('-In', 'In'), ('-', ''), ('-', '')] PUR19150429-V14-38-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('jour-', 'jour')] PUR19150506-V14-39-page1.txt: [('-', ''), ('higher-', 'higher'), ('-shows', 'shows'), ('-encouraging', 'encouraging'), ('corn-', 'corn')] PUR19150506-V14-39-page2.txt: [('UN-', 'UN'), ('-Light', 'Light')] PUR19150506-V14-39-page3.txt: [('-----', '----'), ('-from', 'from')] PUR19150506-V14-39-page5.txt: [('-', '')] PUR19150506-V14-39-page6.txt: [('-', ''), ('-----', '----'), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19150506-V14-39-page7.txt: [('lAricKLIFFE.-', 'lAricKLIFFE.'), ('Cal-', 'Cal'), ('-Many', 'Many'), ('-to', 'to'), ('-', ''), ('-andeepecially.-during', 'andeepecially.-during')] PUR19150506-V14-39-page8.txt: [('-', ''), ('-', ''), ('re-', 're'), ('-', '')] PUR19150513-V14-40-page2.txt: [('-J.O.C.', 'J.O.C.')] PUR19150513-V14-40-page3.txt: [('-trip', 'trip'), ('-conference', 'conference'), ('-ewes', 'ewes'), ('-gained', 'gained'), ('-', '')] PUR19150513-V14-40-page5.txt: [('-cent', 'cent')] PUR19150513-V14-40-page6.txt: [('--', '-')] PUR19150513-V14-40-page7.txt: [('ki-', 'ki'), ('-Ten', 'Ten'), ('-', ''), ('Aeadernyk-', 'Aeadernyk'), ('-', ''), ('-----', '----'), ('-', ''), ('-', ''), ('thee"-', 'thee"')] PUR19150513-V14-40-page8.txt: [('-', ''), ('-', ''), ('-o', 'o')] PUR19150520-V14-41-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-truth', 'truth'), ('--J.O.C.', '-J.O.C.')] PUR19150520-V14-41-page5.txt: [('-expect', 'expect'), ('-July', 'July')] PUR19150520-V14-41-page6.txt: [('to-', 'to'), ('Danish-', 'Danish'), ('-may', 'may'), ('-', ''), ('-----', '----'), ('-', '')] PUR19150520-V14-41-page7.txt: [('-', ''), ('".-', '".')] PUR19150520-V14-41-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('-', ''), ('faith-', 'faith')] PUR19150527-V14-42-page1.txt: [('-', ''), ('so-', 'so'), ('-MPitY', 'MPitY')] PUR19150527-V14-42-page2.txt: [('-to', 'to')] PUR19150527-V14-42-page3.txt: [('cmnot-', 'cmnot')] PUR19150527-V14-42-page4.txt: [('-Evening', 'Evening'), ('im-', 'im')] PUR19150527-V14-42-page7.txt: [('-cent', 'cent'), ('-will', 'will'), ('-', ''), ('-', ''), ('-', '')] PUR19150527-V14-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150603-V14-43-page1.txt: [('-', ''), ('-', ''), ('plac-', 'plac')] PUR19150603-V14-43-page2.txt: [('commenc-', 'commenc')] PUR19150603-V14-43-page4.txt: [('Ger-', 'Ger')] PUR19150603-V14-43-page5.txt: [('corn-', 'corn'), ('ear-', 'ear'), ('se-', 'se'), ('-', ''), ('---', '--'), ('meet-', 'meet'), ('Ab-', 'Ab'), ('Mas-', 'Mas')] PUR19150603-V14-43-page6.txt: [('-through', 'through'), ('-Saskatchewan', 'Saskatchewan')] PUR19150603-V14-43-page7.txt: [('PAC-', 'PAC'), ("-'", "'"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--'), ('-', ''), ('-', ''), ('-', '')] PUR19150603-V14-43-page8.txt: [('-', ''), ('-', ''), ('Mac-', 'Mac')] PUR19150610-V14-44-page1.txt: [('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-', ''), ('-E.', 'E.')] PUR19150610-V14-44-page3.txt: [('meet-', 'meet'), ('-unditnwill.', 'unditnwill.'), ('--', '-')] PUR19150610-V14-44-page4.txt: [('CON-', 'CON')] PUR19150610-V14-44-page5.txt: [('--German', '-German'), ('tracts-in--', 'tracts-in-'), ('--and', '-and')] PUR19150610-V14-44-page6.txt: [('-', '')] PUR19150610-V14-44-page7.txt: [('-must', 'must'), ('--', '-'), ('-', ''), ('-Five-room', 'Five-room'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150610-V14-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150617-V14-45-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-"I', '"I'), ('sub-', 'sub'), ('-Old', 'Old'), ('-probation', 'probation'), ('--was', '-was'), ('-Ata', 'Ata')] PUR19150617-V14-45-page3.txt: [('-', ''), ('peo-', 'peo'), ('-', ''), ('-.', '.')] PUR19150617-V14-45-page4.txt: [('-E.', 'E.')] PUR19150617-V14-45-page5.txt: [('-a', 'a'), ('-Five-room', 'Five-room'), ('-', ''), ('-', '')] PUR19150617-V14-45-page6.txt: [('-', ''), ('-', '')] PUR19150624-V14-46-page1.txt: [('RESTITU-', 'RESTITU')] PUR19150624-V14-46-page2.txt: [('-', ''), ('in-', 'in')] PUR19150624-V14-46-page4.txt: [('-----', '----'), ('con-', 'con'), ('-', '')] PUR19150624-V14-46-page5.txt: [('so--', 'so-'), ('-', ''), ('PACIFICON-', 'PACIFICON'), ('-E.', 'E.')] PUR19150624-V14-46-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mrs-', 'Mrs'), ('-', ''), ('-on', 'on')] PUR19150624-V14-46-page8.txt: [('-', ''), ('-', ''), ('Volun-', 'Volun'), ('de-', 'de')] PUR19150701-V14-47-page2.txt: [('-', ''), ('Lord-', 'Lord'), ('investigating.-', 'investigating.'), ('---', '--')] PUR19150701-V14-47-page5.txt: [('-----', '----'), ('be-', 'be')] PUR19150701-V14-47-page7.txt: [("--'---", "-'---"), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('wind-', 'wind'), ('--', '-'), ('--', '-'), ('-', ''), ('Ad-', 'Ad')] PUR19150701-V14-47-page8.txt: [('-', ''), ('-', ''), ('prepar-', 'prepar'), ('-', ''), ('-', '')] PUR19150708-V14-48-page1.txt: [('-Box', 'Box'), ('allde-', 'allde'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', ''), ('-these', 'these'), ('-things', 'things'), ('-for', 'for'), ('-trie', 'trie'), ('-AM', 'AM')] PUR19150708-V14-48-page2.txt: [('-', '')] PUR19150708-V14-48-page3.txt: [('Theeafter-', 'Theeafter')] PUR19150708-V14-48-page5.txt: [('-', ''), ('-', ''), ('--', '-'), ('--', '-'), ('-', '')] PUR19150708-V14-48-page6.txt: [('ARY-', 'ARY'), ('-', ''), ('-', '')] PUR19150708-V14-48-page7.txt: [('-', ''), ('West-', 'West'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--'), ('-', ''), ('-', ''), ('-', '')] PUR19150708-V14-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('LITER-', 'LITER')] PUR19150715-V14-49-page1.txt: [('-aea', 'aea'), ('delega-', 'delega')] PUR19150715-V14-49-page2.txt: [('strength-', 'strength'), ("-ened.'", "ened.'")] PUR19150715-V14-49-page5.txt: [('-of', 'of'), ('-is', 'is'), ('-', ''), ('-', ''), ('-', '')] PUR19150715-V14-49-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150715-V14-49-page7.txt: [('-', ''), ('-i', 'i'), ('-.', '.'), ('-', ''), ('-', ''), ('-', ''), ('"-', '"')] PUR19150715-V14-49-page8.txt: [('Mc-', 'Mc'), ('re-', 're'), ('-', ''), ('-', '')] PUR19150722-V14-50-page1.txt: [('--Ernest', '-Ernest')] PUR19150722-V14-50-page3.txt: [('Mc-', 'Mc'), ('Tune-', 'Tune'), ('-', ''), ('con-', 'con'), ('-', ''), ('-', '')] PUR19150722-V14-50-page4.txt: [('-', ''), ('Member-', 'Member')] PUR19150722-V14-50-page5.txt: [('--', '-'), ('-', ''), ('OvelltY-cent-a-', 'OvelltY-cent-a'), ('De-', 'De'), ('In-', 'In')] PUR19150722-V14-50-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--before', '-before'), ('-ailedto', 'ailedto')] PUR19150722-V14-50-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Sab-', 'Sab')] PUR19150729-V14-51-page1.txt: [('-Box', 'Box'), ('-Claude', 'Claude'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-J.', 'J.'), ('-E.', 'E.'), ('-', ''), ('-', ''), ('-', ''), ('Christ.-', 'Christ.'), ('-', ''), ("-are'", "are'"), ('fresh-', 'fresh'), ('de-', 'de'), ('proph-', 'proph')] PUR19150729-V14-51-page3.txt: [('radi-', 'radi')] PUR19150729-V14-51-page4.txt: [('Hav-', 'Hav')] PUR19150729-V14-51-page7.txt: [('-', ''), ('-', ''), ('bar-', 'bar'), ('-', ''), ('-', ''), ('-', ''), ('---', '--')] PUR19150729-V14-51-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150805-V14-52-page1.txt: [('RE-', 'RE'), ('Mc-', 'Mc'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150805-V14-52-page4.txt: [('meet-', 'meet')] PUR19150805-V14-52-page5.txt: [('---', '--'), ('-U-N', 'U-N')] PUR19150805-V14-52-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('West-', 'West'), ('-', ''), ('urope-', 'urope'), ('-', ''), ('I-', 'I')] PUR19150805-V14-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('improvement-', 'improvement'), ('-', ''), ('-', ''), ('-', '')] PUR19150812-V15-01-page1.txt: [('g-', 'g'), ('-', ''), ('con-', 'con')] PUR19150812-V15-01-page3.txt: [('-', ''), ('---', '--')] PUR19150812-V15-01-page4.txt: [('-"History', '"History'), ('-"Livingston', '"Livingston'), ('-cent', 'cent'), ('---', '--'), ('in-', 'in')] PUR19150812-V15-01-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150812-V15-01-page6.txt: [('-', '')] PUR19150812-V15-01-page7.txt: [('-----', '----'), ('-', ''), ('-', ''), ('-', ''), ("-FOR'", "FOR'"), ('-', '')] PUR19150812-V15-01-page8.txt: [('man-', 'man'), ('-', ''), ('-', ''), ('-', '')] PUR19150819-V15-02-page1.txt: [('-Then', 'Then'), ('dormir-', 'dormir'), ('-of', 'of'), ('-in', 'in'), ('--', '-'), ('pri-', 'pri'), ('-', ''), ('-', '')] PUR19150819-V15-02-page2.txt: [('-To', 'To'), ('-', '')] PUR19150819-V15-02-page3.txt: [('-', ''), ('encouraging.-', 'encouraging.'), ('---', '--'), ('-C.', 'C.'), ('-E.', 'E.'), ('renew---', 'renew--'), ('right--', 'right-'), ('-E.', 'E.'), ('No.--', 'No.-'), ('---', '--'), ('-ready-to', 'ready-to')] PUR19150819-V15-02-page4.txt: [('-E.', 'E.'), ('-the', 'the')] PUR19150819-V15-02-page5.txt: [('-the', 'the'), ('-Withoilt', 'Withoilt'), ('-cent', 'cent'), ('-', ''), ('-', ''), ('-', '')] PUR19150819-V15-02-page6.txt: [('-E.', 'E.'), ('show-', 'show'), ('Depart-', 'Depart'), ('VALUE-', 'VALUE'), ('-', '')] PUR19150819-V15-02-page7.txt: [('-Mrs.', 'Mrs.'), ('-Five', 'Five'), ('Col.-', 'Col.'), ('-', ''), ('-', ''), ('-NLON', 'NLON'), ('-', ''), ('Sacramento-', 'Sacramento'), ('-.', '.'), ('-', ''), ('-i.', 'i.'), ('-.-', '.-'), ('Winton-', 'Winton'), ('-', ''), ('Au-', 'Au')] PUR19150819-V15-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('re-', 're')] PUR19150826-V15-03-page1.txt: [('-', ''), ('-', ''), ('in-', 'in'), ('-', ''), ('hearts-', 'hearts')] PUR19150826-V15-03-page2.txt: [('-to', 'to')] PUR19150826-V15-03-page3.txt: [('-her', 'her'), ('-evening', 'evening'), ("is'-", "is'")] PUR19150826-V15-03-page4.txt: [('RE-', 'RE')] PUR19150826-V15-03-page5.txt: [('pro-', 'pro')] PUR19150826-V15-03-page6.txt: [('-o', 'o'), ('-studying', 'studying')] PUR19150826-V15-03-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('May-', 'May'), ('Miss-', 'Miss'), ('Maga-', 'Maga'), ('-.wag', '.wag')] PUR19150826-V15-03-page8.txt: [('-', ''), ('-', ''), ('-handling', 'handling')] PUR19150902-V15-04-page1.txt: [('-know', 'know'), ('there-', 'there'), ('-of', 'of'), ("-''them", "''them"), ('the--', 'the-'), ('-', ''), ('-ens', 'ens')] PUR19150902-V15-04-page2.txt: [('I-', 'I'), ('-', ''), ('-', ''), ('--', '-'), ('-a', 'a'), ('-', ''), ('-btit', 'btit'), ('-', '')] PUR19150902-V15-04-page4.txt: [('-', ''), ('-I', 'I'), ('-', '')] PUR19150902-V15-04-page5.txt: [('Central-', 'Central'), ('-not', 'not'), ('-', ''), ("-'", "'")] PUR19150902-V15-04-page6.txt: [('-', ''), ('-', '')] PUR19150902-V15-04-page7.txt: [('-', ''), ('-', ''), ('Santee-', 'Santee'), ('-all', 'all')] PUR19150902-V15-04-page8.txt: [('Fifteenth.-', 'Fifteenth.'), ('-they', 'they'), ('-', '')] PUR19150909-V15-05-page1.txt: [('in-', 'in'), ('-the', 'the'), ('-he', 'he')] PUR19150909-V15-05-page3.txt: [('yett-', 'yett'), ('-that', 'that'), ('-very', 'very'), ('-midst', 'midst')] PUR19150909-V15-05-page4.txt: [('inter-', 'inter'), ('eleven-', 'eleven'), ('-Weeks', 'Weeks')] PUR19150909-V15-05-page5.txt: [('remem-', 'remem')] PUR19150909-V15-05-page6.txt: [('-you', 'you')] PUR19150909-V15-05-page7.txt: [('-lrick.st', 'lrick.st'), ('Utidt.-', 'Utidt.'), ('-', '')] PUR19150909-V15-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150916-V15-06-page4.txt: [('-cent', 'cent')] PUR19150916-V15-06-page5.txt: [('associ-', 'associ'), ('-', ''), ('-', ''), ('-have', 'have'), ('--the', '-the'), ('-a', 'a')] PUR19150916-V15-06-page6.txt: [('-', ''), ('--', '-'), ('---', '--'), ('-by', 'by'), ('in-', 'in'), ('Gatos-', 'Gatos')] PUR19150916-V15-06-page7.txt: [('-', ''), ('-', ''), ('Glen-', 'Glen'), ('-', ''), ('-', '')] PUR19150916-V15-06-page8.txt: [('-', ''), ('-', ''), ('-grand', 'grand'), ('COOK-', 'COOK'), ('SCHOOL-', 'SCHOOL'), ('DE-', 'DE'), ('-', '')] PUR19150923-V15-07-page1.txt: [('-Vol', 'Vol'), ('-', ''), ('-you', 'you'), ('Hav-', 'Hav'), ('breth-', 'breth'), ('right-', 'right'), ('knowl-', 'knowl'), ('SongstifrSetesnon-', 'SongstifrSetesnon'), ('-Dear', 'Dear'), ("-card'", "card'"), ('--froni', '-froni'), ('-', ''), ('un-', 'un')] PUR19150923-V15-07-page2.txt: [('-', ''), ('camp-meet-', 'camp-meet'), ('-full', 'full')] PUR19150923-V15-07-page3.txt: [('-not', 'not'), ('-', ''), ('the-', 'the'), ('-', '')] PUR19150923-V15-07-page6.txt: [('RE-', 'RE'), ('-', '')] PUR19150923-V15-07-page7.txt: [('-an', 'an'), ('-at', 'at'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Treatment', 'Treatment'), ('-', ''), ('-', ''), ('-', ''), ('Price-', 'Price'), ('R-', 'R')] PUR19150923-V15-07-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('two-', 'two'), ('-', ''), ('-', '')] PUR19150930-V15-08-page1.txt: [('-', ''), ('-Since', 'Since'), ('-.and', '.and'), ('-', '')] PUR19150930-V15-08-page2.txt: [('-', '')] PUR19150930-V15-08-page3.txt: [('-', ''), ('-Review', 'Review'), ('--for', '-for'), ('-', '')] PUR19150930-V15-08-page4.txt: [('--', '-')] PUR19150930-V15-08-page5.txt: [('-and', 'and'), ('-also', 'also'), ('-Manifested', 'Manifested'), ('-bit', 'bit'), ('mani-', 'mani'), ('-', '')] PUR19150930-V15-08-page6.txt: [('-', ''), ('-acre', 'acre'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19150930-V15-08-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('INSTRUC-', 'INSTRUC'), ('-', ''), ('-', ''), ('MAGA-', 'MAGA'), ('--', '-')] PUR19150930-V15-08-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('non-', 'non'), ('-', ''), ('RE-', 'RE')] PUR19151007-V15-09-page1.txt: [('-quietly', 'quietly')] PUR19151007-V15-09-page2.txt: [('-', '')] PUR19151007-V15-09-page3.txt: [('-', ''), ('.----', '.---')] PUR19151007-V15-09-page4.txt: [('col-', 'col')] PUR19151007-V15-09-page5.txt: [('camp-', 'camp'), ('-Ruskin.', 'Ruskin.'), ('-reaffirfge"', 'reaffirfge"'), ('-the.', 'the.'), ('-Hinkley', 'Hinkley'), ('-', '')] PUR19151007-V15-09-page7.txt: [('ppportu-', 'ppportu'), ('SALE.-', 'SALE.'), ('-acre', 'acre'), ('E-At--', 'E-At-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('INSTRUC-', 'INSTRUC'), ('-', '')] PUR19151007-V15-09-page8.txt: [('-', ''), ('-', ''), ('were-', 'were'), ('Period-', 'Period'), ('-', '')] PUR19151014-V15-10-page1.txt: [('isthe-', 'isthe')] PUR19151014-V15-10-page2.txt: [('Franco-', 'Franco')] PUR19151014-V15-10-page3.txt: [('NION-', 'NION'), ('.-', '.')] PUR19151014-V15-10-page4.txt: [('De-', 'De'), ('In-', 'In'), ('-', ''), ('-', '')] PUR19151014-V15-10-page5.txt: [('-', ''), ('can-', 'can'), ('...C-', '...C'), ('-', ''), ('E"T--', 'E"T-'), ('-', ''), ('-', '')] PUR19151014-V15-10-page6.txt: [('-', ''), ('resurrec-', 'resurrec'), ('SALE.-', 'SALE.'), ('-acre', 'acre'), ('-', ''), ('-----', '----'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151014-V15-10-page7.txt: [('Sebas-', 'Sebas')] PUR19151014-V15-10-page8.txt: [('-whose', 'whose'), ('Men-', 'Men'), ('-giq', 'giq'), ('some-', 'some')] PUR19151021-V15-11-page1.txt: [('-He', 'He'), ('-He', 'He'), ('-', ''), ('-Also', 'Also'), ('-', ''), ('-.-', '.-'), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('-', '')] PUR19151021-V15-11-page3.txt: [('-----', '----'), ('Mem-', 'Mem'), ('-invited', 'invited')] PUR19151021-V15-11-page4.txt: [('ACIFIC-', 'ACIFIC'), ('-', ''), ('-', '')] PUR19151021-V15-11-page5.txt: [('-', ''), ('-but', 'but'), ('---A-"call---had"', '--A-"call---had"'), ('-orthe', 'orthe'), ('-Jesus', 'Jesus'), ('-', ''), ('J.-', 'J.'), ('in--', 'in-'), ('AC-', 'AC'), ('-..N', '..N')] PUR19151021-V15-11-page6.txt: [('SALE.-', 'SALE.'), ('-acre', 'acre'), ('Cali-', 'Cali')] PUR19151021-V15-11-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-as', 'as'), ('-', ''), ('-cent', 'cent'), ('-memberswho.', 'memberswho.'), ('prosper-', 'prosper'), ('-', ''), ('EDITH-', 'EDITH')] PUR19151021-V15-11-page8.txt: [('-', ''), ('-', ''), ("clfnaaiiy'ihktturs-", "clfnaaiiy'ihktturs"), ('camp-', 'camp'), ('-', ''), ('-', '')] PUR19151028-V15-12-page1.txt: [('the-', 'the')] PUR19151028-V15-12-page2.txt: [('-', ''), ('be-', 'be')] PUR19151028-V15-12-page3.txt: [('-', ''), ('-indeed', 'indeed'), ('show-', 'show')] PUR19151028-V15-12-page4.txt: [('-Month', 'Month'), ('-Month', 'Month')] PUR19151028-V15-12-page5.txt: [('-present', 'present'), ('-ct-wk-fund', 'ct-wk-fund'), ('UN-', 'UN'), ('-cent-a-week', 'cent-a-week'), ('-', ''), ('-', ''), ('-', ''), ('.-', '.'), ('over-', 'over'), ('-', ''), ('-', '')] PUR19151028-V15-12-page6.txt: [('-copies.', 'copies.')] PUR19151028-V15-12-page7.txt: [('---', '--'), ('-', ''), ('-', ''), ('-Alfalfa', 'Alfalfa'), ('-', ''), ('-', ''), ('-A', 'A'), ('-', ''), ('-', ''), ('-', ''), ('ON.-', 'ON.'), ('HELPS-', 'HELPS'), ('-', ''), ('---', '--'), ('-', ''), ('-continuing', 'continuing'), ('-', '')] PUR19151028-V15-12-page8.txt: [('time.-', 'time.'), ('-consider', 'consider'), ('-', ''), ('-', '')] PUR19151104-V15-13-page1.txt: [('liquidated-', 'liquidated'), ('-', '')] PUR19151104-V15-13-page2.txt: [('-gathering', 'gathering'), ('-', ''), ('-', '')] PUR19151104-V15-13-page3.txt: [('bless-', 'bless'), ('-', ''), ('---', '--')] PUR19151104-V15-13-page4.txt: [('-', '')] PUR19151104-V15-13-page5.txt: [('---', '--'), ('----.', '---.')] PUR19151104-V15-13-page6.txt: [('--', '-'), ('MAGA-', 'MAGA')] PUR19151104-V15-13-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('head-', 'head'), ('and-', 'and'), ('-', ''), ('-', '')] PUR19151104-V15-13-page8.txt: [('-', ''), ('-', ''), ('-----', '----')] PUR19151111-V15-14-page1.txt: [('in-', 'in')] PUR19151111-V15-14-page2.txt: [('-', ''), ('-', ''), ('-cent', 'cent')] PUR19151111-V15-14-page3.txt: [('Fifty-', 'Fifty')] PUR19151111-V15-14-page4.txt: [('-', ''), ('Maga-', 'Maga')] PUR19151111-V15-14-page5.txt: [('-', '')] PUR19151111-V15-14-page6.txt: [('-', ''), ('-cent', 'cent')] PUR19151111-V15-14-page7.txt: [('-', ''), ('-', ''), ('-Alfalfa', 'Alfalfa'), ('-', ''), ('-', ''), ('-', ''), ('reason-', 'reason'), ('-', ''), ('-', '')] PUR19151111-V15-14-page8.txt: [('-A', 'A'), ('-rp', 'rp'), ('-', ''), ('-', ''), ('-', '')] PUR19151118-V15-15-page1.txt: [('-which', 'which'), ('-Elder', 'Elder')] PUR19151118-V15-15-page3.txt: [('-fifty-two', 'fifty-two')] PUR19151118-V15-15-page4.txt: [('Advent-', 'Advent'), ('com-', 'com'), ('-', ''), ('-', ''), ('Member-', 'Member')] PUR19151118-V15-15-page5.txt: [('-', ''), ('-', '')] PUR19151118-V15-15-page6.txt: [('DiE-', 'DiE'), ('---', '--'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151118-V15-15-page7.txt: [('--Byron', '-Byron'), ('-', '')] PUR19151118-V15-15-page8.txt: [('-PACIFIC', 'PACIFIC'), ('-', ''), ('-', ''), ('-carry', 'carry'), ('-', ''), ('-', ''), ('pre-', 'pre')] PUR19151125-V15-16-page2.txt: [('-offering', 'offering'), ('--The-principal', '-The-principal'), ('C.o-', 'C.o')] PUR19151125-V15-16-page3.txt: [('del-', 'del')] PUR19151125-V15-16-page5.txt: [('"W-e-', '"W-e'), ('-', ''), ('---', '--'), ('-', ''), ('-', '')] PUR19151125-V15-16-page6.txt: [("'-", "'"), ('-a', 'a'), ('i-', 'i')] PUR19151125-V15-16-page7.txt: [('rs-', 'rs'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151125-V15-16-page8.txt: [('-series--', 'series--'), ('-o', 'o'), ('-', ''), ('sur-', 'sur')] PUR19151202-V15-17-page1.txt: [('-', ''), ('Mc-', 'Mc')] PUR19151202-V15-17-page10.txt: [('gain-', 'gain'), ('so-', 'so'), ('Total-', 'Total')] PUR19151202-V15-17-page11.txt: [('inter-', 'inter'), ('-', ''), ('-', '')] PUR19151202-V15-17-page12.txt: [('Seventh-', 'Seventh'), ('-', '')] PUR19151202-V15-17-page2.txt: [('spir-', 'spir')] PUR19151202-V15-17-page3.txt: [('-Litho', 'Litho'), ('-', '')] PUR19151202-V15-17-page5.txt: [('Seventh-', 'Seventh'), ('-', ''), ('-', ''), ('F-', 'F')] PUR19151202-V15-17-page6.txt: [('-', ''), ('-', ''), ('-Also', 'Also'), ('-', '')] PUR19151202-V15-17-page7.txt: [('-perhaps', 'perhaps'), ('-and', 'and'), ('-the', 'the'), ('-we', 'we'), ('-cent-a-wk', 'cent-a-wk')] PUR19151202-V15-17-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('adopted.-', 'adopted.'), ('No-', 'No')] PUR19151202-V15-17-page9.txt: [('jus-', 'jus'), ('-', ''), ('evangel-', 'evangel')] PUR19151209-V15-18-page10.txt: [('-', ''), ('-', '')] PUR19151209-V15-18-page11.txt: [('--UNI', '-UNI'), ('-counties', 'counties'), ('-', ''), ('-', ''), ('-', '')] PUR19151209-V15-18-page12.txt: [('-He', 'He')] PUR19151209-V15-18-page4.txt: [('thenewspa-', 'thenewspa')] PUR19151209-V15-18-page5.txt: [('-', ''), ('-', '')] PUR19151209-V15-18-page6.txt: [('-', ''), ('-up', 'up'), ('-done', 'done'), ('-', ''), ('-Elder', 'Elder'), ('-', ''), ('the-', 'the')] PUR19151209-V15-18-page7.txt: [('-', ''), ('-branch', 'branch'), ('-N', 'N'), ('Northern-', 'Northern'), ('-MorithS"', 'MorithS"'), ('-', ''), ('werere-', 'werere')] PUR19151209-V15-18-page8.txt: [('-', ''), ('Mor-', 'Mor')] PUR19151209-V15-18-page9.txt: [('-', '')] PUR19151216-V15-19-page3.txt: [("-'-'", "'-'"), ("'-", "'"), ("-'-", "'-"), ('-', ''), ('-', ''), ('-"--.--r-', '"--.--r-'), ('-', ''), ('--', '-'), ('.-', '.'), ('-', ''), ('-r-', 'r-'), ('--', '-'), ('-', ''), ('-"--"-\'-\'', '"--"-\'-\''), ('-', ''), ('-', '')] PUR19151216-V15-19-page5.txt: [('amissionarysecre-', 'amissionarysecre')] PUR19151216-V15-19-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151216-V15-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('year-', 'year'), ('--Also', '-Also')] PUR19151223-V15-20-page2.txt: [('pro-', 'pro'), ('remem-', 'remem'), ('-Cal.', 'Cal.'), ('so-', 'so')] PUR19151223-V15-20-page3.txt: [('--father', '-father')] PUR19151223-V15-20-page5.txt: [('--', '-'), ('--', '-'), ('--', '-')] PUR19151223-V15-20-page6.txt: [('-', ''), ('-', ''), ('-Alfalfa', 'Alfalfa'), ('-', ''), ('-', ''), ('-', ''), ('-.c.', '.c.')] PUR19151223-V15-20-page7.txt: [('-', ''), ('corporation-', 'corporation'), ('o-', 'o'), ('-', ''), ('-', ''), ('ET-', 'ET')] PUR19151223-V15-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151230-V15-21-page1.txt: [('so-', 'so'), ('-East', 'East'), ('RE-', 'RE')] PUR19151230-V15-21-page3.txt: [('CALIFORNIA-', 'CALIFORNIA'), ('de-', 'de'), ('-', '')] PUR19151230-V15-21-page5.txt: [('-', ''), ('-', ''), ('--', '-')] PUR19151230-V15-21-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19151230-V15-21-page8.txt: [('ser-', 'ser'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160106-V15-22-page1.txt: [('-', ''), ('-show', 'show'), ('churches--', 'churches-'), ('-', '')] PUR19160106-V15-22-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('camp-', 'camp'), ('-', ''), ('-', ''), ('-', ''), ('Sabbath-', 'Sabbath'), ('Mid-', 'Mid'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160106-V15-22-page3.txt: [('Adven-', 'Adven')] PUR19160106-V15-22-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('In-', 'In'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Alfalfa', 'Alfalfa'), ('-', ''), ('-', ''), ('-', '')] PUR19160106-V15-22-page7.txt: [('magazines-', 'magazines'), ('-and', 'and'), ('UN-', 'UN')] PUR19160106-V15-22-page8.txt: [('-Sabbath', 'Sabbath'), ('-', '')] PUR19160113-V15-23-page1.txt: [('authentic.-', 'authentic.'), ('en-', 'en'), ('-', '')] PUR19160113-V15-23-page2.txt: [('-Israel', 'Israel'), ('-', ''), ('-', '')] PUR19160113-V15-23-page3.txt: [('Sab-', 'Sab')] PUR19160113-V15-23-page4.txt: [('---', '--')] PUR19160113-V15-23-page5.txt: [('-', '')] PUR19160113-V15-23-page7.txt: [('-not', 'not'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160113-V15-23-page8.txt: [('-', ''), ('-', ''), ('-be', 'be'), ('suc-', 'suc'), ('-', ''), ('-', ''), ('Brunswick-Balke-', 'Brunswick-Balke')] PUR19160120-V15-24-page1.txt: [('-', ''), ('-', ''), ('sol-', 'sol'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160120-V15-24-page2.txt: [('-I', 'I')] PUR19160120-V15-24-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Mo.', 'Mo.')] PUR19160120-V15-24-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-secretary', 'secretary'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Mo.', 'Mo.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('JaP-', 'JaP'), ('-', ''), ('-', '')] PUR19160120-V15-24-page6.txt: [('-Mrs.', 'Mrs.'), ('-', '')] PUR19160120-V15-24-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160120-V15-24-page8.txt: [('-', ''), ('-', ''), ('year-', 'year'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160127-V15-25-page2.txt: [('-', '')] PUR19160127-V15-25-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160127-V15-25-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160127-V15-25-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Hem-', 'Hem'), ('Member-', 'Member'), ('-', ''), ('report-', 'report'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160127-V15-25-page8.txt: [('p.ddresind-', 'p.ddresind'), ('pay-', 'pay'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160203-V15-26-page1.txt: [('PUBLISH-', 'PUBLISH'), ('Mac-', 'Mac'), ('Bel-', 'Bel'), ('-', ''), ('each---', 'each--'), ('Maga-', 'Maga')] PUR19160203-V15-26-page2.txt: [('righteous-', 'righteous')] PUR19160203-V15-26-page3.txt: [('execu-', 'execu'), ('-over', 'over')] PUR19160203-V15-26-page4.txt: [('promis-', 'promis'), ('-', ''), ('manufac-', 'manufac'), ('Mc-', 'Mc'), ('counter-', 'counter'), ("TIDINGS'-", "TIDINGS'")] PUR19160203-V15-26-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160203-V15-26-page7.txt: [('-', ''), ('-', ''), ('meet-', 'meet'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160203-V15-26-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160210-V15-27-page1.txt: [('Bur-', 'Bur')] PUR19160210-V15-27-page2.txt: [('months-', 'months'), ('Depreciation-', 'Depreciation'), ('Inventories-', 'Inventories'), ('-', '')] PUR19160210-V15-27-page3.txt: [('-', ''), ('-cent', 'cent')] PUR19160210-V15-27-page4.txt: [('Receivable-', 'Receivable'), ('Accounts-', 'Accounts'), ('Receivable-', 'Receivable'), ('Buildings-', 'Buildings'), ('Accounts-', 'Accounts'), ('-', '')] PUR19160210-V15-27-page5.txt: [('Provisions-', 'Provisions'), ('-Vermont', 'Vermont'), ('Church-', 'Church'), ('Member-', 'Member'), ('Member-', 'Member')] PUR19160210-V15-27-page6.txt: [('-', ''), ('Mc-', 'Mc')] PUR19160210-V15-27-page7.txt: [('-', ''), ('RE-', 'RE')] PUR19160210-V15-27-page8.txt: [('-', '')] PUR19160217-V15-28-page1.txt: [('-limbs', 'limbs')] PUR19160217-V15-28-page2.txt: [('-cent', 'cent'), ('-', '')] PUR19160217-V15-28-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160217-V15-28-page5.txt: [("-often.'", "often.'")] PUR19160217-V15-28-page6.txt: [('Ad-', 'Ad')] PUR19160217-V15-28-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Geo.-', 'Geo.'), ('-', ''), ('-', ''), ('SALE.-', 'SALE.'), ('-', ''), ('-', ''), ('-', ''), ('TRADE.---', 'TRADE.--'), ('-LLoodii', 'LLoodii')] PUR19160217-V15-28-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19160224-V15-29-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160224-V15-29-page4.txt: [('-', ''), ('Story-', 'Story'), ('-the', 'the')] PUR19160224-V15-29-page5.txt: [('-have', 'have'), ('Inter-', 'Inter'), ('-', '')] PUR19160224-V15-29-page6.txt: [('Pacific-', 'Pacific')] PUR19160224-V15-29-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('--', '-'), ('-', '')] PUR19160224-V15-29-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19160302-V15-30-page1.txt: [('advantageeeffered-', 'advantageeeffered')] PUR19160302-V15-30-page2.txt: [('Inter-', 'Inter')] PUR19160302-V15-30-page3.txt: [('set-', 'set')] PUR19160302-V15-30-page4.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160302-V15-30-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Work', 'Work'), ('-', ''), ('-Young', 'Young'), ('-', ''), ('-Work', 'Work'), ('-Work', 'Work'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Ukiah--', 'Ukiah-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Sebastopol-', 'Sebastopol'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160302-V15-30-page7.txt: [('-', ''), ('SALE.-', 'SALE.'), ('-', ''), ('-', ''), ('J-A-', 'J-A')] PUR19160302-V15-30-page8.txt: [('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160309-V15-31-page1.txt: [('-hall', 'hall')] PUR19160309-V15-31-page3.txt: [('Twenty-', 'Twenty'), ('-RECORDER', 'RECORDER')] PUR19160309-V15-31-page4.txt: [('-PACIFIC', 'PACIFIC'), ('the-', 'the'), ('con-', 'con')] PUR19160309-V15-31-page5.txt: [('-a', 'a'), ('UNION-', 'UNION')] PUR19160309-V15-31-page6.txt: [('-D.', 'D.')] PUR19160309-V15-31-page7.txt: [('-', ''), ('-', ''), ('-acre', 'acre'), ('SALE.-', 'SALE.'), ("-Bert'-room", "Bert'-room"), ('-', ''), ('-', '')] PUR19160316-V15-32-page1.txt: [('CALIFOR-', 'CALIFOR'), ('-J.', 'J.')] PUR19160316-V15-32-page10.txt: [('peo-', 'peo'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160316-V15-32-page11.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('SALE.-', 'SALE.'), ('-', '')] PUR19160316-V15-32-page12.txt: [('o------', 'o-----'), ('-', ''), ('-', ''), ('-Fifty', 'Fifty')] PUR19160316-V15-32-page3.txt: [('-which', 'which'), ('-', '')] PUR19160316-V15-32-page5.txt: [('-', '')] PUR19160316-V15-32-page6.txt: [('UN-', 'UN'), ('-', ''), ('-month', 'month'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160316-V15-32-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ac-', 'ac'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('offer--', 'offer-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160316-V15-32-page8.txt: [('sub-', 'sub')] PUR19160323-V15-33-page2.txt: [('broken-', 'broken')] PUR19160323-V15-33-page4.txt: [('Inter-', 'Inter')] PUR19160323-V15-33-page5.txt: [('MISSIONARY-', 'MISSIONARY'), ('-', ''), ('-', ''), ('-rt-ru', 'rt-ru')] PUR19160323-V15-33-page6.txt: [('-"Do', '"Do'), ('-', ''), ('-itliN', 'itliN')] PUR19160323-V15-33-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160323-V15-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160330-V15-34-page1.txt: [('Mc-', 'Mc'), ('depart-', 'depart'), ('-', ''), ('-', '')] PUR19160330-V15-34-page2.txt: [('-', '')] PUR19160330-V15-34-page3.txt: [('-if', 'if'), ('-conference', 'conference'), ('-CmaSitutiom', 'CmaSitutiom'), ('-as', 'as'), ('-of', 'of'), ('-act', 'act')] PUR19160330-V15-34-page4.txt: [('con-', 'con'), ('-will', 'will')] PUR19160330-V15-34-page5.txt: [('-', '')] PUR19160330-V15-34-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160330-V15-34-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Hum-', 'Hum'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-H.', 'H.'), ('M-', 'M')] PUR19160330-V15-34-page8.txt: [('Committee-', 'Committee'), ('-who', 'who')] PUR19160406-V15-35-page1.txt: [('be-', 'be'), ('-nning', 'nning'), ('to-', 'to'), ('sue-', 'sue')] PUR19160406-V15-35-page2.txt: [('"-', '"'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160406-V15-35-page3.txt: [('is-', 'is'), ('-', ''), ('Sab-', 'Sab'), ('ye-', 'ye')] PUR19160406-V15-35-page4.txt: [('-cent-a-week', 'cent-a-week')] PUR19160406-V15-35-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-month', 'month'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160406-V15-35-page6.txt: [('-I', 'I')] PUR19160406-V15-35-page7.txt: [('PA-', 'PA'), ('PA-', 'PA'), ('----The', '---The'), ('-', ''), ('RE-', 'RE'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-screen', 'screen')] PUR19160406-V15-35-page8.txt: [('-', ''), ('-', ''), ('RE-', 'RE'), ('-', ''), ('RE-', 'RE')] PUR19160413-V15-36-page1.txt: [('encourag-', 'encourag'), ('-it', 'it')] PUR19160413-V15-36-page2.txt: [('cheer-', 'cheer')] PUR19160413-V15-36-page3.txt: [('de-', 'de'), ('-is', 'is')] PUR19160413-V15-36-page5.txt: [('-one', 'one'), ('-who', 'who'), ('-of', 'of'), ('-month', 'month'), ('Monica-', 'Monica'), ('In-', 'In'), ('De-', 'De'), ("-'.", "'."), ('-', ''), ('a--', 'a-'), ('-', ''), ('-', '')] PUR19160413-V15-36-page6.txt: [('General.-', 'General.')] PUR19160413-V15-36-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-block', 'block'), ('fur-', 'fur'), ('-', ''), ('-Seller.', 'Seller.')] PUR19160413-V15-36-page8.txt: [('pay-', 'pay'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160420-V15-37-page1.txt: [('can-', 'can'), ('-before.', 'before.')] PUR19160420-V15-37-page2.txt: [('-', ''), ('-', '')] PUR19160420-V15-37-page3.txt: [('pres-', 'pres'), ('-', ''), ('-', '')] PUR19160420-V15-37-page4.txt: [('Dieffen-', 'Dieffen'), ('-month', 'month')] PUR19160420-V15-37-page5.txt: [('Mc-', 'Mc')] PUR19160420-V15-37-page6.txt: [('-Wyoming', 'Wyoming'), ('Sub-', 'Sub'), ('Educa-', 'Educa'), ('Maga-', 'Maga')] PUR19160420-V15-37-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160420-V15-37-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-cent', 'cent'), ('Mc-', 'Mc'), ('-', ''), ('-', '')] PUR19160427-V15-38-page2.txt: [('Ad-', 'Ad')] PUR19160427-V15-38-page4.txt: [('-', ''), ('-', '')] PUR19160427-V15-38-page5.txt: [('-"The', '"The'), ('------', '-----'), ('-ct-wk', 'ct-wk')] PUR19160427-V15-38-page7.txt: [('-', ''), ('-', ''), ('Cable-', 'Cable'), ('-', ''), ('-inch', 'inch'), ('Yeager-', 'Yeager'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160427-V15-38-page8.txt: [('-', ''), ('-', ''), ('Union-', 'Union'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160504-V15-39-page2.txt: [('-', ''), ('-', ''), ('-o', 'o'), ('-', '')] PUR19160504-V15-39-page5.txt: [('Inter-', 'Inter'), ('nura-', 'nura'), ('-a', 'a'), ('hun-', 'hun'), ('-Will', 'Will'), ('-', ''), ('-for-the', 'for-the'), ('-number', 'number')] PUR19160504-V15-39-page6.txt: [('-RECORDER-', 'RECORDER-'), ('Pearson-', 'Pearson'), ('-', '')] PUR19160504-V15-39-page7.txt: [('Ari-', 'Ari'), ('nine--', 'nine-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Cable-', 'Cable'), ('-Grant', 'Grant'), ('-', ''), ('--that', '-that'), ('-UNTO-N--RECORDER', 'UNTO-N--RECORDER')] PUR19160504-V15-39-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160511-V15-40-page1.txt: [('-', ''), ('mes-', 'mes')] PUR19160511-V15-40-page4.txt: [('-Trems.', 'Trems.'), ('-', '')] PUR19160511-V15-40-page5.txt: [('-toy', 'toy')] PUR19160511-V15-40-page6.txt: [('twen-', 'twen'), ('-', '')] PUR19160511-V15-40-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Cable-', 'Cable'), ('-', ''), ('es-', 'es')] PUR19160511-V15-40-page8.txt: [('RE-', 'RE'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160518-V15-41-page1.txt: [('EX-', 'EX'), ('pa-', 'pa')] PUR19160518-V15-41-page2.txt: [('-to', 'to'), ('-', '')] PUR19160518-V15-41-page3.txt: [('enti-', 'enti')] PUR19160518-V15-41-page4.txt: [('-if', 'if'), ('Lindsay-', 'Lindsay')] PUR19160518-V15-41-page5.txt: [('meet-', 'meet'), ('dele-', 'dele'), ('Key-', 'Key'), ('DIREC-', 'DIREC'), ('-', '')] PUR19160518-V15-41-page7.txt: [('--all', '-all'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--'), ('-', '')] PUR19160518-V15-41-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('April-', 'April')] PUR19160525-V15-42-page1.txt: [('-', '')] PUR19160525-V15-42-page2.txt: [('min-', 'min'), ('discom-', 'discom')] PUR19160525-V15-42-page3.txt: [('Ma--', 'Ma-'), ('h--', 'h-'), ('-s', 's'), ('-cour-', 'cour-'), ('es-', 'es')] PUR19160525-V15-42-page4.txt: [('-that', 'that'), ('-', ''), ('dele-', 'dele'), ('Key-', 'Key'), ('DIREC-', 'DIREC')] PUR19160525-V15-42-page5.txt: [('clues-', 'clues')] PUR19160525-V15-42-page6.txt: [('--', '-'), ('books.--', 'books.-'), ('Amer-', 'Amer')] PUR19160525-V15-42-page7.txt: [('-', ''), ('-', ''), ('SALE.-', 'SALE.'), ('-', ''), ('-Will', 'Will'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('r-', 'r'), ('-', ''), ('--', '-'), ('Deliveries--', 'Deliveries-'), ('-', '')] PUR19160525-V15-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160601-V15-43-page1.txt: [('-activi', 'activi'), ('-Ctisis', 'Ctisis'), ('-heathenish', 'heathenish'), ("-gtepping-storles''ette.test", "gtepping-storles''ette.test")] PUR19160601-V15-43-page10.txt: [('Vice-', 'Vice')] PUR19160601-V15-43-page11.txt: [('-drones', 'drones'), ('-develop', 'develop'), ('-visitor.', 'visitor.'), ('fitiLished-', 'fitiLished')] PUR19160601-V15-43-page12.txt: [('develop-', 'develop')] PUR19160601-V15-43-page13.txt: [('-', '')] PUR19160601-V15-43-page14.txt: [('Con-', 'Con')] PUR19160601-V15-43-page15.txt: [('de-', 'de'), ('-sincere', 'sincere'), ('nor-', 'nor')] PUR19160601-V15-43-page16.txt: [('-Professor', 'Professor'), ('is-', 'is'), ('--but', '-but'), ('-prize', 'prize')] PUR19160601-V15-43-page3.txt: [('-', ''), ('-their', 'their'), ('--', '-'), ('-', ''), ('I-', 'I')] PUR19160601-V15-43-page5.txt: [('Miles-', 'Miles'), ('-', ''), ('-', '')] PUR19160601-V15-43-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('--to', '-to'), ('-', ''), ('-than', 'than'), ('tal-', 'tal'), ('train-', 'train'), ('in-', 'in'), ('-', ''), ('..ux-', '..ux'), ('-room.', 'room.'), ('-nearest', 'nearest')] PUR19160601-V15-43-page9.txt: [('-', ''), ('-serve', 'serve'), ('cap-', 'cap'), ('-', '')] PUR19160608-V15-44-page1.txt: [('hos-', 'hos')] PUR19160608-V15-44-page4.txt: [('-cent', 'cent'), ('camp-', 'camp')] PUR19160608-V15-44-page5.txt: [('-meeting', 'meeting')] PUR19160608-V15-44-page6.txt: [('-foot', 'foot'), ('-foot', 'foot'), ('-ounce', 'ounce'), ('Inter-', 'Inter')] PUR19160608-V15-44-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160608-V15-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160615-V15-45-page2.txt: [('super-', 'super'), ('interest-', 'interest')] PUR19160615-V15-45-page3.txt: [('-"Union"', '"Union"')] PUR19160615-V15-45-page5.txt: [('Inter-', 'Inter')] PUR19160615-V15-45-page6.txt: [('Mc-', 'Mc')] PUR19160615-V15-45-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('under-', 'under')] PUR19160615-V15-45-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160622-V15-46-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.', 'M.'), ('-F.', 'F.'), ('-W.', 'W.'), ('-E.', 'E.'), ('res-', 'res')] PUR19160622-V15-46-page2.txt: [('own--', 'own-')] PUR19160622-V15-46-page3.txt: [('-', ''), ('-', '')] PUR19160622-V15-46-page4.txt: [('Mc-', 'Mc'), ('Mc-', 'Mc'), ('Camp-', 'Camp')] PUR19160622-V15-46-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('In-', 'In'), ('pa-', 'pa')] PUR19160622-V15-46-page6.txt: [('-.', '.'), ('ap-', 'ap')] PUR19160622-V15-46-page7.txt: [('-', ''), ('Sale.-', 'Sale.'), ('-', ''), ('-', ''), ('-', ''), ('Sale.-', 'Sale.'), ('-acre', 'acre'), ('-', '')] PUR19160622-V15-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160629-V15-47-page3.txt: [('-o', 'o')] PUR19160629-V15-47-page4.txt: [('RECORDER-', 'RECORDER')] PUR19160629-V15-47-page5.txt: [('Flotch-', 'Flotch'), ('-', '')] PUR19160629-V15-47-page6.txt: [('mod-', 'mod'), ('--', '-'), ('Brown-', 'Brown'), ('-', ''), ('--', '-')] PUR19160629-V15-47-page7.txt: [('-', ''), ('-', ''), ('Sale.-', 'Sale.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('si-', 'si')] PUR19160629-V15-47-page8.txt: [('-', ''), ('-', ''), ('.-', '.'), ('eve-', 'eve'), ('-', ''), ('-', '')] PUR19160706-V15-48-page1.txt: [('-', ''), ('embolden-', 'embolden')] PUR19160706-V15-48-page2.txt: [('-est', 'est'), ('-PACIFIC', 'PACIFIC')] PUR19160706-V15-48-page3.txt: [('doc-', 'doc')] PUR19160706-V15-48-page5.txt: [('-e', 'e'), ('Hi-', 'Hi'), ('cus-', 'cus')] PUR19160706-V15-48-page6.txt: [('minis--', 'minis-'), ('fur-', 'fur')] PUR19160706-V15-48-page7.txt: [('-', ''), ('-', ''), ('Sale.-', 'Sale.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-A.', 'A.'), ('Sebasto-', 'Sebasto')] PUR19160706-V15-48-page8.txt: [('-', ''), ('-who', 'who'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160713-V15-49-page1.txt: [('Mac-', 'Mac'), ('Mac-', 'Mac')] PUR19160713-V15-49-page2.txt: [('.-', '.'), ('warn-', 'warn')] PUR19160713-V15-49-page3.txt: [('-', ''), ('-', '')] PUR19160713-V15-49-page4.txt: [('-UNION', 'UNION'), ('sup-', 'sup'), ('Lib-', 'Lib')] PUR19160713-V15-49-page5.txt: [('--o', '-o'), ('As-', 'As')] PUR19160713-V15-49-page6.txt: [('-', ''), ('-', '')] PUR19160713-V15-49-page7.txt: [('-cent-a-week', 'cent-a-week'), ('con-', 'con'), ('be-', 'be')] PUR19160713-V15-49-page8.txt: [('mes-', 'mes'), ('-', ''), ('-', '')] PUR19160720-V15-50-page2.txt: [('in-', 'in'), ('suit-', 'suit')] PUR19160720-V15-50-page3.txt: [('privilege."-', 'privilege."'), ('-', ''), ('-', '')] PUR19160720-V15-50-page4.txt: [('vis-', 'vis'), ('-', '')] PUR19160720-V15-50-page5.txt: [('-', ''), ('-', ''), ('-', '')] PUR19160720-V15-50-page6.txt: [('-', ''), ('re-', 're'), ('Rail-', 'Rail'), ('-ray', 'ray'), ('o---', 'o--')] PUR19160720-V15-50-page7.txt: [('-Very', 'Very'), ('-acre', 'acre'), ('-room', 'room'), ('-', ''), ('En-', 'En'), ('-', ''), ('-', ''), ('-', '')] PUR19160720-V15-50-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160727-V15-51-page1.txt: [('-be', 'be')] PUR19160727-V15-51-page3.txt: [('con-', 'con'), ('-now', 'now'), ('-Cent-a-Week', 'Cent-a-Week'), ('work-', 'work'), ('-', ''), ('twenty-cent-a-', 'twenty-cent-a')] PUR19160727-V15-51-page4.txt: [('fol-', 'fol'), ('bap-', 'bap'), ('vis-', 'vis'), ('-', '')] PUR19160727-V15-51-page6.txt: [('-Very', 'Very'), ('-acre', 'acre'), ('-room', 'room'), ('-The', 'The')] PUR19160727-V15-51-page7.txt: [('Doing-', 'Doing')] PUR19160727-V15-51-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160803-V15-52-page1.txt: [('con-', 'con')] PUR19160803-V15-52-page4.txt: [('De-', 'De'), ('-', '')] PUR19160803-V15-52-page7.txt: [('-acre', 'acre'), ('-room', 'room'), ('Route-', 'Route'), ('desti-', 'desti')] PUR19160803-V15-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('imme-', 'imme'), ('-', '')] PUR19160810-V16-01-page1.txt: [('-walls', 'walls'), ('-in', 'in'), ('-favorable', 'favorable')] PUR19160810-V16-01-page2.txt: [('-and', 'and'), ('peo-', 'peo'), ('-', '')] PUR19160810-V16-01-page4.txt: [('-but', 'but')] PUR19160810-V16-01-page5.txt: [('-', ''), ('trans-', 'trans'), ('Al-', 'Al')] PUR19160810-V16-01-page7.txt: [('Cali-', 'Cali'), ('-acre', 'acre'), ('-room', 'room'), ('ten-min-', 'ten-min')] PUR19160810-V16-01-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('of-', 'of'), ('say-', 'say'), ('-hill', 'hill'), ('-', ''), ('-', ''), ('cap-', 'cap'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160817-V16-02-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-Claude', 'Claude'), ('-M.E.', 'M.E.'), ('-', ''), ('-E.', 'E.'), ('Confer-', 'Confer'), ('-', '')] PUR19160817-V16-02-page2.txt: [('-During', 'During'), ('of-', 'of'), ('o---', 'o--')] PUR19160817-V16-02-page3.txt: [('-', ''), ('-Brother', 'Brother')] PUR19160817-V16-02-page5.txt: [('sanc-', 'sanc')] PUR19160817-V16-02-page6.txt: [('-', ''), ('-------AD', '------AD'), ('-cent', 'cent')] PUR19160817-V16-02-page7.txt: [('-ForSale.A', 'ForSale.A'), ('-of', 'of'), ('-', ''), ('near-', 'near'), ('-others', 'others'), ('-', ''), ('-esteemed.', 'esteemed.'), ('-glad', 'glad'), ('Pres-', 'Pres'), ('-this', 'this'), ('sup-', 'sup')] PUR19160817-V16-02-page8.txt: [('-', ''), ('-', '')] PUR19160824-V16-03-page2.txt: [('-RECORDER', 'RECORDER')] PUR19160824-V16-03-page3.txt: [('in-', 'in')] PUR19160824-V16-03-page4.txt: [('-is', 'is'), ('-', ''), ('-known', 'known'), ('-a', 'a'), ('-the', 'the'), ('-spent', 'spent')] PUR19160824-V16-03-page6.txt: [('-', ''), ('PA-', 'PA')] PUR19160824-V16-03-page7.txt: [('PA-', 'PA'), ('-room', 'room'), ('-', ''), ('-room', 'room'), ('-', ''), ('-', '')] PUR19160824-V16-03-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19160831-V16-04-page1.txt: [('-', ''), ('-', ''), ('-..', '..'), ('-we', 'we'), ("'-", "'"), ('-', '')] PUR19160831-V16-04-page7.txt: [('Wanted.-', 'Wanted.'), ('-', ''), ('-', ''), ('-room', 'room')] PUR19160831-V16-04-page8.txt: [('-', ''), ('li-', 'li')] PUR19160907-V16-05-page1.txt: [('Mc-', 'Mc'), ('Faith-', 'Faith'), ('-', ''), ("-'--", "'--")] PUR19160907-V16-05-page2.txt: [('-', ''), ('-', '')] PUR19160907-V16-05-page3.txt: [('have.-', 'have.')] PUR19160907-V16-05-page4.txt: [('consider-', 'consider'), ('-cent', 'cent'), ('-', '')] PUR19160907-V16-05-page5.txt: [('Depreciation-', 'Depreciation'), ('Inventories-', 'Inventories')] PUR19160907-V16-05-page6.txt: [('-Membership', 'Membership'), ('-Meetings', 'Meetings'), ('-Representation', 'Representation'), ('-Quorum', 'Quorum'), ('-Officers', 'Officers'), ('-The', 'The'), ('-', ''), ('-', ''), ('-Name', 'Name'), ('-Territory', 'Territory'), ('-Objects', 'Objects')] PUR19160907-V16-05-page7.txt: [('-', ''), ('Employ-', 'Employ'), ('-', ''), ('-room', 'room')] PUR19160907-V16-05-page8.txt: [('-', ''), ('-', ''), ('instructionmeet-', 'instructionmeet'), ('-', ''), ('-', ''), ('-by', 'by')] PUR19160914-V16-06-page1.txt: [('mes-', 'mes')] PUR19160914-V16-06-page3.txt: [('-and', 'and'), ('-', ''), ('-this', 'this'), ('-', ''), ('-', ''), ('-', '')] PUR19160914-V16-06-page5.txt: [('Mc-', 'Mc')] PUR19160914-V16-06-page6.txt: [('-to', 'to'), ('Inter-', 'Inter'), ('-which', 'which'), ('-was', 'was'), ('approximatel-', 'approximatel'), ('El-', 'El'), ('-', '')] PUR19160914-V16-06-page7.txt: [('-', ''), ('-room', 'room'), ('-t', 't'), ('-t', 't'), ('-t', 't'), ('Ad-', 'Ad'), ('-', '')] PUR19160914-V16-06-page8.txt: [('-', ''), ('-', '')] PUR19160921-V16-07-page1.txt: [('News-', 'News'), ('-B-rotker', 'B-rotker'), ('-', '')] PUR19160921-V16-07-page3.txt: [('-', ''), ('Bi-', 'Bi')] PUR19160921-V16-07-page4.txt: [('-', '')] PUR19160921-V16-07-page5.txt: [('princi-', 'princi'), ('-of', 'of'), ('-and', 'and'), ('-By', 'By'), ('re.-', 're.'), ('-', ''), ('--', '-'), ('-UNION', 'UNION')] PUR19160921-V16-07-page6.txt: [('dur-', 'dur')] PUR19160921-V16-07-page7.txt: [('Wanted.---', 'Wanted.--'), ('-t', 't'), ('-t', 't'), ('-', ''), ('-t', 't'), ('-room', 'room'), ('lo-', 'lo'), ('afaithful-', 'afaithful'), ('Rent.-', 'Rent.')] PUR19160921-V16-07-page8.txt: [('-', ''), ('-', ''), ('-', '')] PUR19160928-V16-08-page1.txt: [('-cent-a-week', 'cent-a-week')] PUR19160928-V16-08-page2.txt: [('--', '-')] PUR19160928-V16-08-page3.txt: [('Eter-', 'Eter')] PUR19160928-V16-08-page4.txt: [('re-', 're'), ('-', ''), ('Butte-', 'Butte')] PUR19160928-V16-08-page6.txt: [('perhaps--', 'perhaps-'), ('expect-', 'expect'), ('-to', 'to'), ('ques-', 'ques'), ('-Controversy"', 'Controversy"'), ('orders.-', 'orders.')] PUR19160928-V16-08-page7.txt: [('-t', 't'), ('-t', 't'), ('-', ''), ('-room', 'room'), ('Confer-', 'Confer')] PUR19160928-V16-08-page8.txt: [('-', '')] PUR19161005-V16-09-page1.txt: [('compell-', 'compell'), ('dis-', 'dis'), ('stu-', 'stu'), ('stu-', 'stu')] PUR19161005-V16-09-page2.txt: [('Har-', 'Har'), ('col-', 'col'), ('oppor-', 'oppor'), ('ar-', 'ar'), ('with-', 'with')] PUR19161005-V16-09-page3.txt: [('re-', 're'), ('or-', 'or'), ('mem-', 'mem'), ('abun-', 'abun'), ('ex-', 'ex'), ('an-', 'an')] PUR19161005-V16-09-page4.txt: [('-as', 'as'), ('school-', 'school'), ('every-', 'every'), ('Sab-', 'Sab'), ('ap-', 'ap'), ('Fres-', 'Fres'), ('McRey-', 'McRey')] PUR19161005-V16-09-page5.txt: [('pre-', 'pre'), ('connec-', 'connec'), ('Oc-', 'Oc'), ('Ad-', 'Ad'), ('Shirley-', 'Shirley'), ('evi-', 'evi'), ('Septem-', 'Septem'), ('develop-', 'develop')] PUR19161005-V16-09-page6.txt: [('at-', 'at'), ('calcimin-', 'calcimin'), ('appear-', 'appear'), ('calci-', 'calci'), ('op-', 'op'), ('ses-', 'ses'), ('privi-', 'privi'), ('daugh-', 'daugh'), ('-six-.', 'six-.'), ('-of', 'of'), ('-he', 'he'), ('-this', 'this')] PUR19161005-V16-09-page7.txt: [('Ad-', 'Ad'), ('se-', 'se'), ('recog-', 'recog'), ('af-', 'af'), ('exter-', 'exter'), ('con-', 'con'), ('-', '')] PUR19161005-V16-09-page8.txt: [('pay-', 'pay'), ('Lloyd-', 'Lloyd'), ('Ger-', 'Ger'), ('-', ''), ('Sab-', 'Sab'), ('Sab-', 'Sab'), ('-', ''), ('-', ''), ('princi-', 'princi'), ('per-', 'per'), ('im-', 'im'), ('ad-', 'ad')] PUR19161012-V16-10-page1.txt: [('----', '---'), ('-', ''), ('peo-', 'peo'), ('dol-', 'dol'), ('sup-', 'sup'), ('build-', 'build'), ('--Ellen', '-Ellen'), ('"Elmsha-', '"Elmsha'), ('estab-', 'estab'), ('suc-', 'suc'), ('qui-', 'qui')] PUR19161012-V16-10-page2.txt: [('CORDER-', 'CORDER'), ('-', ''), ('-been', 'been'), ('mis-', 'mis'), ('Ingath-', 'Ingath'), ('inter-', 'inter'), ('-', ''), ('mission-', 'mission'), ('rel-', 'rel')] PUR19161012-V16-10-page3.txt: [('to-', 'to'), ('ex-', 'ex'), ('ta-', 'ta'), ('mention-', 'mention'), ('effort-', 'effort'), ('interest-', 'interest'), ('let-', 'let'), ('Ingather-', 'Ingather'), ('san-', 'san')] PUR19161012-V16-10-page4.txt: [('Sab-', 'Sab'), ('Ly-', 'Ly'), ('or-', 'or'), ('John-', 'John'), ('Confer-', 'Confer'), ('con-', 'con'), ('Mendoci-', 'Mendoci'), ('Wal-', 'Wal'), ('con-', 'con'), ('-became', 'became')] PUR19161012-V16-10-page5.txt: [('-', ''), ('con-', 'con'), ('address-', 'address')] PUR19161012-V16-10-page6.txt: [('notwith-', 'notwith'), ('connec-', 'connec'), ('Seventh-', 'Seventh')] PUR19161012-V16-10-page7.txt: [('naus-', 'naus'), ('-', ''), ('in-', 'in'), ('de-', 'de'), ('edu-', 'edu'), ('-inch', 'inch'), ('ques-', 'ques')] PUR19161012-V16-10-page8.txt: [('-', ''), ('-', ''), ('su-', 'su'), ('In-', 'In'), ('-should', 'should')] PUR19161019-V16-11-page1.txt: [('L-', 'L'), ('AT"-', 'AT"')] PUR19161019-V16-11-page3.txt: [('presby-', 'presby'), ('pre-', 'pre'), ('-not', 'not'), ('-their', 'their'), ('Sunday-', 'Sunday'), ('-pose', 'pose'), ('Sab-', 'Sab'), ('-or-Jsiiter', 'or-Jsiiter'), ('faith-', 'faith'), ('over-', 'over'), ('-haPPy', 'haPPy'), ('bap-', 'bap')] PUR19161019-V16-11-page4.txt: [('bereave-', 'bereave'), ('dam-', 'dam'), ('liv-', 'liv'), ('be-', 'be'), ('glo-', 'glo'), ('Fri-', 'Fri')] PUR19161019-V16-11-page5.txt: [('manu-', 'manu'), ('re-', 're'), ('elec-', 'elec'), ('intoxica-', 'intoxica'), ('ed-', 'ed'), ('un-', 'un'), ('medi-', 'medi'), ('ef-', 'ef'), ('"In-', '"In')] PUR19161019-V16-11-page6.txt: [('Val-', 'Val'), ('loca-', 'loca'), ('pe-', 'pe'), ('be-', 'be'), ('wo-', 'wo'), ('Sale.-', 'Sale.'), ('-', ''), ('hu-', 'hu'), ('horses-', 'horses'), ('-', ''), ('-room', 'room'), ('par-', 'par')] PUR19161019-V16-11-page7.txt: [('recom-', 'recom'), ('Edu-', 'Edu')] PUR19161019-V16-11-page8.txt: [('-', ''), ('-', ''), ('sal-', 'sal'), ('emer-', 'emer'), ('ef-', 'ef'), ('ev-', 'ev')] PUR19161026-V16-12-page1.txt: [('Metho-', 'Metho'), ('-', '')] PUR19161026-V16-12-page2.txt: [('in-', 'in'), ('In-', 'In'), ('splen-', 'splen'), ('plan-', 'plan'), ('in-', 'in')] PUR19161026-V16-12-page3.txt: [('Le-', 'Le')] PUR19161026-V16-12-page4.txt: [('commun-', 'commun'), ('com-', 'com'), ('Rich-', 'Rich'), ('evi-', 'evi'), ('Rog-', 'Rog'), ('An-', 'An'), ('-a', 'a'), ('Pal-', 'Pal'), ('dif-', 'dif')] PUR19161026-V16-12-page5.txt: [('--being', '-being'), ('teach-', 'teach'), ('Parent-', 'Parent'), ('consid-', 'consid'), ('inter-', 'inter'), ('confer-', 'confer'), ('num-', 'num'), ('si-', 'si')] PUR19161026-V16-12-page6.txt: [('in-', 'in'), ('author-', 'author'), ('-cent', 'cent'), ('--all', '-all')] PUR19161026-V16-12-page7.txt: [('PACIFIC-', 'PACIFIC'), ('sup-', 'sup'), ('to-', 'to'), ('pow-', 'pow'), ('re-', 're'), ('sell-', 'sell'), ('colpor-', 'colpor'), ('fa-', 'fa'), ('in-', 'in'), ('plan-', 'plan'), ('Christ-', 'Christ'), ('-Vivian', 'Vivian'), ('-', '')] PUR19161026-V16-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('rel-', 'rel'), ('li-', 'li'), ('Sab-', 'Sab')] PUR19161102-V16-13-page1.txt: [('confer-', 'confer'), ('In-', 'In'), ('evange-', 'evange')] PUR19161102-V16-13-page2.txt: [('suita-', 'suita'), ('de-', 'de'), ('-every', 'every'), ('Correspond-', 'Correspond'), ('Seventh-day-', 'Seventh-day'), ('en-', 'en'), ('prin-', 'prin'), ('for-', 'for'), ('stat-', 'stat'), ('at-', 'at'), ('mis-', 'mis')] PUR19161102-V16-13-page3.txt: [('hold-', 'hold'), ('Hollis-', 'Hollis'), ('respon-', 'respon'), ('com-', 'com'), ('evan-', 'evan'), ('Con-', 'Con'), ('ap-', 'ap'), ('crea-', 'crea'), ('proper-', 'proper')] PUR19161102-V16-13-page4.txt: [('be-', 'be'), ('self-', 'self'), ('edu-', 'edu'), ('per-', 'per'), ('Colorado-', 'Colorado')] PUR19161102-V16-13-page5.txt: [('mis-', 'mis'), ('out-', 'out'), ('faithful-', 'faithful'), ('circumstan-', 'circumstan'), ('mem-', 'mem'), ('treas-', 'treas'), ('in-', 'in'), ('con-', 'con'), ('-', '')] PUR19161102-V16-13-page6.txt: [('-Vacancy.', 'Vacancy.'), ('-of', 'of')] PUR19161102-V16-13-page7.txt: [('-ct.', 'ct.'), ('-', ''), ('-and', 'and'), ('Rent.-', 'Rent.'), ('-acre', 'acre'), ('-or', 'or'), ('DertirerY-', 'DertirerY')] PUR19161102-V16-13-page8.txt: [('prohibi-', 'prohibi'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('absti-', 'absti'), ('poi-', 'poi'), ('-', ''), ('-', ''), ('re-', 're'), ('pre-', 'pre'), ('-tag', 'tag'), ('ques-', 'ques'), ('be-', 'be'), ('Con-', 'Con'), ('transpor-', 'transpor'), ('penal-', 'penal'), ('prohibi-', 'prohibi')] PUR19161109-V16-14-page1.txt: [('say-', 'say'), ('Ingatherthe-', 'Ingatherthe'), ('EveryttniOn--', 'EveryttniOn-')] PUR19161109-V16-14-page2.txt: [('re-', 're'), ('Sa-', 'Sa')] PUR19161109-V16-14-page3.txt: [('-arly', 'arly'), ('col-', 'col'), ('lib-', 'lib'), ('denomina-', 'denomina')] PUR19161109-V16-14-page4.txt: [('work-', 'work'), ('-a', 'a'), ('house-to-', 'house-to'), ('-', '')] PUR19161109-V16-14-page5.txt: [('-', ''), ('-', ''), ('-in', 'in'), ('mis-', 'mis'), ('Ana-', 'Ana'), ('num-', 'num'), ('-taken', 'taken'), ('teacher-', 'teacher'), ('-"Lord', '"Lord')] PUR19161109-V16-14-page6.txt: [('breth-', 'breth'), ('includ-', 'includ'), ('Colo-', 'Colo'), ('bless-', 'bless')] PUR19161109-V16-14-page7.txt: [('Sis-', 'Sis'), ('Web-', 'Web'), ('broth-', 'broth'), ('accept-', 'accept')] PUR19161109-V16-14-page8.txt: [('He-', 'He'), ('assist-', 'assist'), ('Gen-', 'Gen'), ('pro-', 'pro'), ('proph-', 'proph'), ('-', ''), ('-', ''), ('Publish-', 'Publish'), ('im-', 'im'), ('Oak-', 'Oak'), ('El-', 'El')] PUR19161116-V16-15-page1.txt: [('-', ''), ('persever-', 'persever'), ('com-', 'com'), ('co-op-', 'co-op'), ('-the', 'the'), ('selfish-', 'selfish'), ('de-', 'de')] PUR19161116-V16-15-page2.txt: [('for-', 'for'), ('Har-', 'Har'), ('Confer-', 'Confer')] PUR19161116-V16-15-page3.txt: [('bet-', 'bet'), ('World-', 'World')] PUR19161116-V16-15-page4.txt: [('Arroyo-', 'Arroyo'), ('liter-', 'liter'), ('privi-', 'privi'), ('nurs-', 'nurs')] PUR19161116-V16-15-page5.txt: [('UNION-', 'UNION'), ('meet-', 'meet'), ('Broth-', 'Broth'), ('nec-', 'nec'), ('How-', 'How'), ('accord-', 'accord'), ('-Tient', 'Tient'), ('-ine', 'ine'), ('earn-', 'earn')] PUR19161116-V16-15-page6.txt: [('-five', 'five'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-visiting', 'visiting'), ('Springs...-', 'Springs...'), ('-', ''), ('-', ''), ('bless-', 'bless'), ('.-', '.'), ('-', ''), ('-', ''), ('some-', 'some'), ('-', ''), ('-', ''), ('mar-', 'mar'), ('dis-', 'dis'), ('Mill-', 'Mill'), ('-', ''), ('in-', 'in'), ('hydro-', 'hydro'), ('-acre', 'acre'), ('Ad-', 'Ad'), ('-', ''), ('-', '')] PUR19161116-V16-15-page7.txt: [('--or', '-or'), ('con-', 'con'), ('-', ''), ('Guil-', 'Guil'), ('sur-', 'sur')] PUR19161116-V16-15-page8.txt: [('PAGLFIC.UN-ION-', 'PAGLFIC.UN-ION'), ('-', ''), ('-', ''), ('-', ''), ('Ingath-', 'Ingath'), ('accord-', 'accord'), ('pros-', 'pros'), ('mat-', 'mat'), ('---', '--'), ('bond-', 'bond'), ('Oc-', 'Oc'), ('fath-', 'fath'), ('apprecia-', 'apprecia')] PUR19161123-V16-16-page1.txt: [('Creden-', 'Creden'), ('Hutchin-', 'Hutchin'), ('Sab-', 'Sab'), ('serv-', 'serv'), ('pre-', 'pre'), ('show-', 'show'), ('-.ad', '.ad'), ('-d', 'd'), ('mani-', 'mani'), ('Con-', 'Con')] PUR19161123-V16-16-page2.txt: [('Sab-', 'Sab'), ('la-', 'la'), ('dis-', 'dis'), ('pre-', 'pre'), ('for-', 'for'), ('-', ''), ('sub-', 'sub')] PUR19161123-V16-16-page3.txt: [('suc-', 'suc'), ('tithe-', 'tithe'), ('evi-', 'evi'), ('tithe-', 'tithe'), ('tithe-', 'tithe'), ('Sustentation-', 'Sustentation'), ('slow-', 'slow'), ('grow-', 'grow'), ('Shum-', 'Shum'), ('in-', 'in'), ('funda-', 'funda'), ('grat-', 'grat'), ('ear-', 'ear'), ('confer-', 'confer'), ('creden-', 'creden'), ('au-', 'au'), ('peo-', 'peo'), ('en-', 'en')] PUR19161123-V16-16-page4.txt: [('-', '')] PUR19161123-V16-16-page5.txt: [('-schools', 'schools'), ('forward-', 'forward'), ('-', ''), ('-----------', '----------'), ('near-', 'near'), ('men-', 'men'), ('-to', 'to'), ('move-', 'move')] PUR19161123-V16-16-page6.txt: [('-', ''), ('wel-', 'wel'), ('them-', 'them'), ('under-', 'under'), ('cam-', 'cam')] PUR19161123-V16-16-page7.txt: [('con-', 'con'), ('ev-', 'ev'), ('rel-', 'rel'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('bap-', 'bap'), ('--', '-'), ('us-', 'us'), ('hydro-', 'hydro'), ('-', ''), ('-little', 'little'), ('hus-', 'hus')] PUR19161123-V16-16-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('maintain-', 'maintain'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Parent-Teach-', 'Parent-Teach'), ('Parent-', 'Parent'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19161130-V16-17-page1.txt: [('-', ''), ('-', ''), ('se-', 'se'), ('-', ''), ('offic-', 'offic'), ('prosper-', 'prosper'), ('thick-', 'thick'), ('en-', 'en')] PUR19161130-V16-17-page2.txt: [('-', ''), ('-', ''), ('In-', 'In'), ('-cent', 'cent'), ('shep-', 'shep'), ('bacl--', 'bacl-'), ('mes-', 'mes')] PUR19161130-V16-17-page3.txt: [('ser-', 'ser'), ('strength-', 'strength'), ('elect-', 'elect'), ('No-', 'No'), ('re-', 're'), ('work-', 'work'), ('church-', 'church'), ('Broth-', 'Broth'), ('has-', 'has'), ('-', '')] PUR19161130-V16-17-page4.txt: [('-UNION', 'UNION'), ('pre-', 'pre'), ('of-', 'of'), ('re-', 're'), ('fam-', 'fam'), ('Broth-', 'Broth'), ('subscrip-', 'subscrip')] PUR19161130-V16-17-page5.txt: [('Winne-', 'Winne'), ('Hicks-', 'Hicks')] PUR19161130-V16-17-page6.txt: [('cul-', 'cul'), ('read-', 'read'), ('pros-', 'pros'), ('de-', 'de'), ('watch-', 'watch'), ('-', ''), ('-with', 'with'), ('Work-', 'Work'), ('-yes', 'yes'), ('ex-', 'ex'), ('con-', 'con'), ('under-', 'under')] PUR19161130-V16-17-page7.txt: [('in-', 'in'), ('nMISCELLANY-----', 'nMISCELLANY----'), ('-----TV-X', '----TV-X'), ('Life-', 'Life'), ('im-', 'im'), ('hydro-', 'hydro'), ('in-', 'in'), ('har-', 'har'), ('infor-', 'infor'), ('-acre', 'acre'), ('hap-', 'hap'), ('in-', 'in'), ('Ad-', 'Ad'), ('-', ''), ('-', '')] PUR19161130-V16-17-page8.txt: [('-', ''), ('-', ''), ('-brethren', 'brethren'), ('-', ''), ('-', ''), ('in-', 'in'), ('la-', 'la'), ('An-', 'An')] PUR19161207-V16-18-page1.txt: [('-"e', '"e'), ('round-', 'round'), ('la-', 'la'), ('some-', 'some'), ('Inter-', 'Inter'), ('famil-', 'famil')] PUR19161207-V16-18-page2.txt: [('Amer-', 'Amer'), ('in-', 'in'), ('Eu-', 'Eu'), ('strug-', 'strug')] PUR19161207-V16-18-page3.txt: [('-IINTOR', 'IINTOR'), ('accus-', 'accus'), ('Wash-', 'Wash')] PUR19161207-V16-18-page4.txt: [('-of', 'of'), ('-A', 'A'), ('-spirit', 'spirit'), ('Gjord-', 'Gjord'), ('appear-', 'appear'), ('believ-', 'believ'), ('speech-', 'speech'), ('Sev-', 'Sev')] PUR19161207-V16-18-page5.txt: [('self-sacri-', 'self-sacri'), ('re-', 're'), ('-who', 'who'), ('eve-', 'eve'), ('Volun-', 'Volun'), ('Misceltaneous.-', 'Misceltaneous.'), ('-', ''), ('or-', 'or')] PUR19161207-V16-18-page6.txt: [('re-', 're'), ('mis-', 'mis')] PUR19161207-V16-18-page7.txt: [('hydro-', 'hydro'), ('-acre', 'acre'), ('-', ''), ('-', ''), ('gradu-', 'gradu'), ('ac-', 'ac'), ('-grade', 'grade')] PUR19161207-V16-18-page8.txt: [('"Re-', '"Re'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Uni-', 'Uni'), ('-', ''), ('insti-', 'insti')] PUR19161214-V16-19-page1.txt: [('Mc-', 'Mc'), ('dis-', 'dis'), ('-', '')] PUR19161214-V16-19-page2.txt: [('-to', 'to'), ('necessi-', 'necessi'), ('-', ''), ('-encouraging', 'encouraging'), ('-', '')] PUR19161214-V16-19-page3.txt: [('-Urquhart', 'Urquhart'), ('pop-', 'pop'), ('-', ''), ('whole-', 'whole')] PUR19161214-V16-19-page4.txt: [('In-', 'In')] PUR19161214-V16-19-page5.txt: [('-year-old', 'year-old'), ('or-', 'or')] PUR19161214-V16-19-page6.txt: [('col-', 'col'), ('Pa-', 'Pa'), ('in-', 'in'), ('work-', 'work'), ('colpor-', 'colpor'), ('pros-', 'pros'), ('i-', 'i'), ('fol-', 'fol')] PUR19161214-V16-19-page7.txt: [('C-', 'C'), ('al-', 'al'), ('way-', 'way'), ('-torcern', 'torcern'), ('peo-', 'peo'), ('-', ''), ('-', ''), ('-t-he', 't-he'), ('-should', 'should'), ('-"St.', '"St.'), ('-Park', 'Park'), ('was-', 'was'), ('-', ''), ('-year', 'year'), ('-.Who', '.Who'), ('pev.--', 'pev.-'), ('-Conference', 'Conference'), ('-make', 'make'), ('-', ''), ('Sister-', 'Sister'), ('af-', 'af'), ('-', ''), ('in-', 'in'), ('bap-', 'bap'), ('-and', 'and'), ('-the', 'the'), ("'Arma-", "'Arma"), ('bap-', 'bap'), ('our-', 'our'), ('-prepared', 'prepared'), ('one-', 'one'), ('reach-', 'reach'), ('large-', 'large'), ('-experiencei', 'experiencei'), ('men-', 'men'), ('-Mexico', 'Mexico')] PUR19161214-V16-19-page8.txt: [('-orders', 'orders'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('op-', 'op'), ('be-', 'be')] PUR19161221-V16-20-page1.txt: [('---------------', '--------------'), ('-', ''), ('mat-', 'mat'), ('California-', 'California'), ('vigor-', 'vigor'), ('sa-', 'sa'), ('fa-', 'fa'), ('per-', 'per'), ('Sun-', 'Sun'), ('ap-', 'ap'), ('cre-', 'cre'), ('Asso-', 'Asso'), ('in-', 'in')] PUR19161221-V16-20-page2.txt: [('-', ''), ('command-', 'command'), ('anoth-', 'anoth'), ('-', ''), ('-and', 'and'), ('cam-', 'cam')] PUR19161221-V16-20-page3.txt: [('fail-', 'fail'), ('-of', 'of'), ('up-', 'up')] PUR19161221-V16-20-page4.txt: [('-', ''), ('intermis-', 'intermis'), ('-', ''), ('teach-', 'teach'), ('pop-', 'pop')] PUR19161221-V16-20-page5.txt: [('Pray-', 'Pray'), ('heart-', 'heart'), ('writ-', 'writ'), ('facul-', 'facul'), ('pre-', 'pre'), ('mes-', 'mes'), ('-Proverbs', 'Proverbs'), ('WORK-', 'WORK')] PUR19161221-V16-20-page6.txt: [('cour-', 'cour'), ('re-', 're'), ('Re-', 'Re')] PUR19161221-V16-20-page7.txt: [('sepa-', 'sepa'), ('conduct-', 'conduct'), ('Thatch-', 'Thatch'), ('-', '')] PUR19161221-V16-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('preju-', 'preju'), ('Sab-', 'Sab'), ('teach-', 'teach'), ('support-', 'support'), ('doubt-', 'doubt'), ('gen-', 'gen'), ('con-', 'con')] PUR19161228-V16-21-page1.txt: [('--"', '-"'), ('gen-', 'gen'), ('Wed-', 'Wed'), ('ar-', 'ar'), ('unex-', 'unex'), ('South-', 'South')] PUR19161228-V16-21-page2.txt: [('-', ''), ('com-', 'com'), ('de-', 'de'), ('danger-', 'danger')] PUR19161228-V16-21-page3.txt: [('Jerusa-', 'Jerusa'), ('so-', 'so'), ('Seventh-', 'Seventh')] PUR19161228-V16-21-page4.txt: [('suc-', 'suc'), ('an-', 'an')] PUR19161228-V16-21-page5.txt: [('pro-', 'pro'), ('ex-', 'ex'), ('meet-', 'meet'), ('wit-', 'wit'), ('in-', 'in')] PUR19161228-V16-21-page6.txt: [('-', ''), ('re-', 're'), ('grand-', 'grand'), ('at-', 'at'), ('camp-', 'camp'), ('con-', 'con'), ('messen-', 'messen'), ('mar-', 'mar'), ('antici-', 'antici'), ('yes-', 'yes'), ('recent-', 'recent')] PUR19161228-V16-21-page7.txt: [('Es-', 'Es'), ('pre-', 'pre'), ('lat-', 'lat'), ('pre-', 'pre'), ('for-', 'for')] PUR19161228-V16-21-page8.txt: [('-', ''), ('meet-', 'meet'), ('-', ''), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('-is', 'is'), ('inter-', 'inter'), ('-', ''), ('-', '')] PUR19170104-V16-22-page1.txt: [('ca.tff.W-', 'ca.tff.W'), ('eX-', 'eX'), ('---Oft', '--Oft')] PUR19170104-V16-22-page2.txt: [('re-', 're')] PUR19170104-V16-22-page3.txt: [('Hay-', 'Hay'), ('Rob-', 'Rob'), ('at-', 'at')] PUR19170104-V16-22-page4.txt: [('San-', 'San'), ('par-', 'par'), ('-', ''), ('pros-', 'pros'), ('Do-', 'Do')] PUR19170104-V16-22-page5.txt: [('Ange-', 'Ange'), ('recent-', 'recent'), ('sac-', 'sac'), ('Glen-', 'Glen'), ('Min-', 'Min'), ('fur-', 'fur'), ('-', ''), ('otit-', 'otit')] PUR19170104-V16-22-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('mis-', 'mis'), ('profes-', 'profes'), ('Bernar-', 'Bernar')] PUR19170111-V16-23-page1.txt: [('confer-', 'confer'), ('provi-', 'provi'), ('hier-', 'hier'), ('ordi-', 'ordi'), ('hav-', 'hav'), ('Episcopali-', 'Episcopali'), ('Vat-', 'Vat'), ('res-', 'res'), ('Episco-', 'Episco'), ('dis-', 'dis'), ('Associa-', 'Associa')] PUR19170111-V16-23-page2.txt: [('observ-', 'observ'), ('-lay', 'lay'), ('heav-', 'heav')] PUR19170111-V16-23-page3.txt: [('-RECORD', 'RECORD'), ('KR-', 'KR'), ('-be', 'be'), ('misroVeclones-', 'misroVeclones'), ('-fallen', 'fallen'), ('In-', 'In'), ('-the', 'the'), ('-God', 'God'), ('church-', 'church'), ('-', ''), ('An-', 'An'), ('-relaX', 'relaX'), ('-Manytimes', 'Manytimes'), ('-God', 'God'), ('-PurpOse', 'PurpOse'), ('out-', 'out'), ('-', ''), ('Morn-', 'Morn'), ('-it', 'it'), ('house-', 'house')] PUR19170111-V16-23-page4.txt: [('-dent', 'dent'), ('extend-', 'extend'), ('-', ''), ('-be', 'be'), ('igno-', 'igno'), ('-Pres.', 'Pres.'), ('mis-', 'mis')] PUR19170111-V16-23-page5.txt: [('an-', 'an'), ('can-', 'can'), ('in-', 'in'), ('-', ''), ('men-', 'men'), ('Super-', 'Super')] PUR19170111-V16-23-page6.txt: [('ef-', 'ef'), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('-', ''), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('Cali-', 'Cali'), ('Con-', 'Con'), ('Glen-', 'Glen'), ('Decem-', 'Decem'), ('-at', 'at'), ('mo-', 'mo'), ('at-', 'at'), ('-', '')] PUR19170118-V16-24-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-F.', 'F.'), ('-Ernest', 'Ernest'), ('-', ''), ('-E.', 'E.'), ('aver-', 'aver'), ('Twenty-cent-a-', 'Twenty-cent-a'), ('-', ''), ('-succeeded', 'succeeded')] PUR19170118-V16-24-page2.txt: [('of-', 'of'), ('Quart-', 'Quart'), ('-the', 'the')] PUR19170118-V16-24-page3.txt: [('"Re-', '"Re'), ('re-', 're'), ('Sab-', 'Sab'), ('meet-', 'meet'), ('Ma-', 'Ma'), ('Kel-', 'Kel'), ('-for', 'for'), ('-', ''), ('El-', 'El')] PUR19170118-V16-24-page4.txt: [('excel-', 'excel'), ('af-', 'af'), ('-have', 'have'), ('thous-', 'thous'), ('Ruli-', 'Ruli'), ('coun-', 'coun'), ('dif-', 'dif')] PUR19170118-V16-24-page5.txt: [('perva-', 'perva'), ('-', ''), ('col-', 'col'), ('Jan-', 'Jan'), ('first-', 'first'), ('ad-', 'ad'), ('Cer-', 'Cer'), ('-Mountain', 'Mountain'), ('con-', 'con')] PUR19170118-V16-24-page6.txt: [('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('Mac-', 'Mac'), ('at-', 'at'), ('Califor-', 'Califor'), ('confer-', 'confer'), ('ac-', 'ac'), ('-', ''), ('suc-', 'suc')] PUR19170125-V16-25-page1.txt: [('re-', 're'), ('---port', '--port'), ('---', '--'), ('-', ''), ('gwaty-', 'gwaty'), ('earl-', 'earl'), ('--', '-'), ('-', '')] PUR19170125-V16-25-page2.txt: [('-', ''), ('indiViduali-', 'indiViduali'), ('attain-', 'attain'), ('-lighting', 'lighting'), ('elec-', 'elec'), ('inter-', 'inter'), ('dur-', 'dur'), ('mem-', 'mem'), ('propensity--', 'propensity-'), ('-God', 'God'), ('us--', 'us-'), ('--excuses', '-excuses'), ('such-', 'such'), ('naself-centered--Membersill--', 'naself-centered--Membersill-'), ('-be', 'be'), ('-ever', 'ever'), ('-church.', 'church.'), ("-se'", "se'"), ('before-', 'before'), ('others-', 'others'), ('-lamust', 'lamust')] PUR19170125-V16-25-page3.txt: [('quart-', 'quart'), ('liter-', 'liter'), ('meet-', 'meet'), ('per-', 'per'), ('o-', 'o'), ('PAC-', 'PAC'), ('coun-', 'coun'), ('op-', 'op'), ('maga-', 'maga'), ('stand-', 'stand')] PUR19170125-V16-25-page4.txt: [('Street-', 'Street'), ('Sab-', 'Sab'), ('In-', 'In'), ('for-', 'for'), ('Humbert-', 'Humbert'), ('daugh-', 'daugh')] PUR19170125-V16-25-page5.txt: [('-vitaymon', 'vitaymon'), ('UN-', 'UN'), ('Moun-', 'Moun'), ('-room', 'room'), ('-A.', 'A.'), ('Moun-', 'Moun'), ('-', ''), ('correspond-', 'correspond'), ('Conven-', 'Conven'), ('mem-', 'mem'), ('repre-', 'repre'), ('-the', 'the'), ('men-', 'men'), ('com-', 'com')] PUR19170125-V16-25-page6.txt: [('-', ''), ('-page', 'page'), ('an-', 'an'), ('-cent', 'cent'), ('Epis-', 'Epis'), ('Not-', 'Not'), ('-', '')] PUR19170201-V16-26-page1.txt: [('-know', 'know')] PUR19170201-V16-26-page2.txt: [('-REC', 'REC'), ('-third', 'third'), ('in-', 'in')] PUR19170201-V16-26-page3.txt: [('mis-', 'mis'), ('be-', 'be'), ('af-', 'af'), ('An-', 'An'), ('-cent-a-week', 'cent-a-week')] PUR19170201-V16-26-page4.txt: [('kitch-', 'kitch'), ('-God.', 'God.')] PUR19170201-V16-26-page5.txt: [('mis-', 'mis'), ('-cent', 'cent'), ('rid-', 'rid'), ('par-', 'par'), ('se-', 'se'), ('Flag-', 'Flag')] PUR19170201-V16-26-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Stevens', 'Stevens'), ('teach-', 'teach'), ('-ecently', 'ecently'), ('col-', 'col'), ('Spir-', 'Spir'), ('-', ''), ('-..-', '..-'), ('-ear.', 'ear.')] PUR19170208-V16-27-page1.txt: [('big-', 'big'), ('Sun-', 'Sun'), ('repeated-', 'repeated'), ('encour-', 'encour'), ('inter-', 'inter')] PUR19170208-V16-27-page2.txt: [('equip-', 'equip'), ('Mc-', 'Mc'), ('contribu-', 'contribu'), ('bap-', 'bap')] PUR19170208-V16-27-page3.txt: [('re-', 're'), ('---', '--'), ('in-', 'in'), ('ele-', 'ele'), ('bles-', 'bles'), ('pres-', 'pres')] PUR19170208-V16-27-page4.txt: [('-met', 'met'), ('-', ''), ('.-', '.'), ('-', ''), ('-', ''), ('San--', 'San-'), ('-request', 'request'), ('addeda-', 'addeda'), ('Miss-', 'Miss'), ('-as', 'as'), ('vis-', 'vis')] PUR19170208-V16-27-page5.txt: [('Ad-', 'Ad'), ('-', ''), ('Con-', 'Con'), ('in-', 'in'), ('-in', 'in'), ('invalu-', 'invalu'), ('Cal-', 'Cal'), ('advant-', 'advant'), ('"-', '"'), ('-children', 'children'), ('Twenty-', 'Twenty'), ('ar-', 'ar'), ('en-', 'en'), ('fur-', 'fur'), ('fam-', 'fam'), ('follow-', 'follow')] PUR19170208-V16-27-page6.txt: [('-', ''), ('-', ''), ('In-', 'In'), ('-', ''), ('-', ''), ('-', ''), ('di-', 'di'), ('-', ''), ('at-', 'at'), ('of-', 'of'), ('Fernando-', 'Fernando'), ('Glen-', 'Glen'), ('Pa-', 'Pa'), ('-statement', 'statement'), ('enroll-', 'enroll'), ('-', '')] PUR19170215-V16-28-page1.txt: [('-', ''), ('corre-', 'corre'), ('ba-', 'ba'), ('im-', 'im'), ('dis-', 'dis'), ('-', ''), ('ex-', 'ex'), ('it-', 'it')] PUR19170215-V16-28-page2.txt: [('-', ''), ('-', ''), ('the-', 'the'), ('mem-', 'mem'), ('col-', 'col'), ('com-', 'com'), ('Bap-', 'Bap')] PUR19170215-V16-28-page3.txt: [('-', ''), ('pas-', 'pas')] PUR19170215-V16-28-page4.txt: [('ACIFICIAT.N.ION--', 'ACIFICIAT.N.ION-'), ('Pacific-', 'Pacific'), ('Thursday-', 'Thursday'), ('Friday-', 'Friday'), ('Evange-', 'Evange'), ('twenty-cent-', 'twenty-cent'), ('Sabbath-', 'Sabbath'), ('Sunday-', 'Sunday')] PUR19170215-V16-28-page5.txt: [('-', ''), ('Life-', 'Life'), ('-', ''), ('uncomplain-', 'uncomplain')] PUR19170215-V16-28-page6.txt: [('-', ''), ('-', ''), ('Rev-', 'Rev'), ('-', ''), ('-', ''), ('ex-', 'ex'), ('per-', 'per'), ('repre-', 'repre'), ('Ex-', 'Ex'), ('long-', 'long'), ('Subscrip-', 'Subscrip'), ('-', ''), ('pro-', 'pro')] PUR19170222-V16-29-page1.txt: [('even-', 'even'), ('know-', 'know'), ('con-', 'con'), ('your-', 'your'), ('se-', 'se')] PUR19170222-V16-29-page2.txt: [('-', ''), ('great-', 'great'), ('Vol-', 'Vol')] PUR19170222-V16-29-page3.txt: [('remem-', 'remem'), ('Sab-', 'Sab'), ('pro-', 'pro'), ('pend-', 'pend'), ('pub-', 'pub'), ('-', ''), ('re-', 're')] PUR19170222-V16-29-page4.txt: [('-that', 'that'), ('re-', 're'), ('ad-', 'ad'), ('wom-', 'wom')] PUR19170222-V16-29-page5.txt: [('num-', 'num'), ('Quan-', 'Quan'), ('-W.', 'W.'), ('bet-', 'bet'), ('ir-', 'ir'), ('gar-', 'gar')] PUR19170222-V16-29-page6.txt: [('Goal-', 'Goal'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('dur-', 'dur'), ('-', ''), ('ne-', 'ne'), ('arti-', 'arti'), ('-', ''), ('-', ''), ('per-', 'per'), ('-', ''), ('confer-', 'confer'), ('in-', 'in'), ('-achurch', 'achurch'), ('tak-', 'tak')] PUR19170301-V16-30-page1.txt: [('juris-', 'juris'), ('gover-', 'gover'), ('-', ''), ('dis-', 'dis')] PUR19170301-V16-30-page2.txt: [('A.-', 'A.'), ('be-', 'be'), ('in-', 'in')] PUR19170301-V16-30-page3.txt: [('-', ''), ('appro-', 'appro'), ('se-', 'se'), ('-', ''), ('manifest-', 'manifest')] PUR19170301-V16-30-page4.txt: [('remem-', 'remem'), ('South-', 'South'), ('pub-', 'pub'), ('salva-', 'salva'), ('Sab-', 'Sab'), ('address-', 'address'), ('Mrs.-', 'Mrs.')] PUR19170301-V16-30-page5.txt: [('con-', 'con'), ('comfort-', 'comfort'), ('re-', 're')] PUR19170301-V16-30-page6.txt: [('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Di-', 'Di')] PUR19170308-V16-31-page1.txt: [('Cana-', 'Cana'), ('Corn-', 'Corn'), ('North-', 'North'), ('pres-', 'pres'), ('con-', 'con'), ('-field', 'field'), ('en-', 'en'), ('re-', 're'), ('-the', 'the')] PUR19170308-V16-31-page10.txt: [('-religion', 'religion')] PUR19170308-V16-31-page11.txt: [('appreci-', 'appreci'), ('-', ''), ('Ir-', 'Ir'), ('Michi-', 'Michi'), ('In-', 'In'), ('lo-', 'lo'), ('ac-', 'ac'), ('per-', 'per'), ('Ap-', 'Ap'), ('Brook-', 'Brook'), ('-In', 'In'), ('"Haus-', '"Haus'), ('-page', 'page'), ('bi-', 'bi')] PUR19170308-V16-31-page12.txt: [('de-', 'de'), ('-', ''), ('re-', 're')] PUR19170308-V16-31-page13.txt: [('his-', 'his'), ('Col-', 'Col'), ('re-', 're'), ('us-', 'us'), ('-While', 'While')] PUR19170308-V16-31-page14.txt: [("-'ttC", "'ttC"), ('caus-', 'caus'), ('pres-', 'pres'), ('-t', 't'), ("-shoWed'", "shoWed'"), ('to-', 'to'), ('-year.', 'year.'), ('uenCy-', 'uenCy'), ('-', ''), ('-', ''), ('Camp-meetings--', 'Camp-meetings-'), ('-', ''), ('-This', 'This'), ('-leading', 'leading'), ('-six', 'six'), ('-', ''), ('-severalpublid', 'severalpublid'), ('-', ''), ('-to', 'to'), ('The-', 'The'), ('-in-', 'in-'), ('-more', 'more'), ('-months.', 'months.'), ('with-', 'with'), ('-', ''), ('Man-', 'Man'), ('--harness', '-harness'), ('-all', 'all'), ('ev-', 'ev'), ('-', ''), ('--the', '-the'), ('in-', 'in'), ('-books.', 'books.'), ('al-', 'al')] PUR19170308-V16-31-page15.txt: [('-the', 'the'), ('opportuni-', 'opportuni'), ('moun-', 'moun'), ('Eng-', 'Eng'), ('de-', 'de'), ('mem-', 'mem'), ('pro-', 'pro'), ('per-', 'per'), ('promi-', 'promi')] PUR19170308-V16-31-page16.txt: [('imme-', 'imme'), ('pub-', 'pub'), ('gov-', 'gov'), ('ac-', 'ac'), ('Pa-', 'Pa'), ('ses-', 'ses'), ('Con-', 'Con')] PUR19170308-V16-31-page17.txt: [('destroy-', 'destroy'), ('-page', 'page'), ('Confer-', 'Confer'), ('Advent-', 'Advent'), ('enter-', 'enter'), ('-Whereas', 'Whereas'), ('unreach-', 'unreach'), ('produc-', 'produc'), ('Cana-', 'Cana'), ('-ad', 'ad')] PUR19170308-V16-31-page18.txt: [('--', '-'), ('de-', 'de'), ('Cal-', 'Cal'), ('North-', 'North')] PUR19170308-V16-31-page19.txt: [('be-', 'be'), ('At-', 'At'), ('suita-', 'suita')] PUR19170308-V16-31-page2.txt: [('attend-', 'attend'), ('Con-', 'Con'), ('Interna-', 'Interna'), ('Pa-', 'Pa'), ('vicin-', 'vicin'), ('Morten-', 'Morten'), ('show-', 'show'), ('Amer-', 'Amer'), ('operat-', 'operat'), ('agree-', 'agree')] PUR19170308-V16-31-page20.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Arizo-', 'Arizo'), ('Cali-', 'Cali'), ('-', ''), ('Cali-', 'Cali'), ('-', ''), ('-', ''), ('in-', 'in'), ('-', ''), ('-', ''), ('Com-', 'Com'), ('-', ''), ('-', ''), ('Cal-', 'Cal'), ('blos-', 'blos'), ('Al-', 'Al'), ('-', ''), ('-', ''), ('pros-', 'pros'), ('la-', 'la'), ('con-', 'con')] PUR19170308-V16-31-page3.txt: [('adopt-', 'adopt'), ('man-', 'man'), ('North-', 'North'), ('build-', 'build'), ('tempo-', 'tempo'), ('man-', 'man'), ('mission-', 'mission')] PUR19170308-V16-31-page4.txt: [('-information', 'information'), ('immediate-', 'immediate'), ('-', ''), ('Brook-', 'Brook'), ('de-', 'de')] PUR19170308-V16-31-page5.txt: [('respond-', 'respond'), ('bind-', 'bind'), ('-', ''), ('-', ''), ('There-', 'There')] PUR19170308-V16-31-page6.txt: [('Equip-', 'Equip'), ('-', '')] PUR19170308-V16-31-page7.txt: [('-', ''), ('-house', 'house'), ('-', ''), ('-story', 'story'), ('-', ''), ('-', ''), ('-', ''), ('the-', 'the'), ('-reorganization', 'reorganization'), ('-', ''), ('-', ''), ('-', ''), ('Interna-', 'Interna'), ('the-', 'the')] PUR19170308-V16-31-page8.txt: [('responsi-', 'responsi'), ('-', ''), ('estima-', 'estima'), ('Testi-', 'Testi'), ('in-', 'in'), ('-', ''), ('ed-', 'ed'), ('dol-', 'dol'), ('-', ''), ('addi-', 'addi'), ('-', ''), ('sci-', 'sci'), ('enter-', 'enter')] PUR19170308-V16-31-page9.txt: [('circu-', 'circu'), ('-page', 'page'), ('foster-', 'foster'), ('Moun-', 'Moun'), ('ap-', 'ap')] PUR19170315-V16-32-page1.txt: [('--M.', '-M.'), ('op-', 'op'), ('-', ''), ('mes-', 'mes'), ('After-', 'After')] PUR19170315-V16-32-page2.txt: [('-Coming', 'Coming'), ('-Medical', 'Medical'), ('re-', 're')] PUR19170315-V16-32-page3.txt: [('quar-', 'quar'), ('stan-', 'stan'), ('deepen-', 'deepen'), ('Confer-', 'Confer'), ('tempera-', 'tempera'), ('earnest-', 'earnest')] PUR19170315-V16-32-page4.txt: [('-', ''), ('con-', 'con'), ('accompa-', 'accompa')] PUR19170315-V16-32-page5.txt: [('inter-', 'inter'), ('de-', 'de'), ('Mo-', 'Mo'), ('bet-', 'bet'), ('re-', 're'), ('Cali-', 'Cali'), ('Han-', 'Han'), ('inter-', 'inter'), ('Coa-', 'Coa')] PUR19170315-V16-32-page6.txt: [('--', '-'), ('doubt-', 'doubt')] PUR19170315-V16-32-page7.txt: [('-', ''), ('-', ''), ('ol-', 'ol'), ('Dens-', 'Dens'), ('-ct-wk.', 'ct-wk.'), ('Dens-', 'Dens'), ('Coun-', 'Coun'), ('Glen-', 'Glen'), ('convert-', 'convert'), ('South-', 'South'), ('Agemts-', 'Agemts'), ('-', ''), ('-', '')] PUR19170315-V16-32-page8.txt: [('en-', 'en'), ('-', ''), ('-', ''), ('en-', 'en'), ('im-', 'im'), ('---', '--'), ('mis-', 'mis'), ('Sab-', 'Sab'), ('col-', 'col'), ('ac-', 'ac'), ('oth-', 'oth')] PUR19170322-V16-33-page1.txt: [('-', ''), ('-', ''), ('-', '')] PUR19170322-V16-33-page2.txt: [('"Testi-', '"Testi'), ('sim-', 'sim'), ('bus-', 'bus')] PUR19170322-V16-33-page3.txt: [('-C', 'C'), ('camp-', 'camp'), ('Ly-', 'Ly'), ('com-', 'com'), ('at-', 'at'), ('locali-', 'locali'), ('Healds-', 'Healds'), ('-', ''), ('con-', 'con'), ('oc-', 'oc'), ('crea-', 'crea')] PUR19170322-V16-33-page4.txt: [('descend-', 'descend'), ('Arme-', 'Arme'), ('Wil-', 'Wil')] PUR19170322-V16-33-page5.txt: [('-students', 'students'), ('faith-', 'faith'), ('pris-', 'pris'), ('crim-', 'crim'), ('quart-', 'quart'), ('serv-', 'serv'), ('super-', 'super')] PUR19170322-V16-33-page6.txt: [('train-', 'train'), ('fulfill-', 'fulfill'), ('Parent-', 'Parent'), ('Mor-', 'Mor'), ('excep-', 'excep'), ('Work-', 'Work'), ('under-', 'under')] PUR19170322-V16-33-page7.txt: [('spar-', 'spar'), ('outwork-', 'outwork'), ('re-', 're'), ('hatch-', 'hatch'), ('vir-', 'vir'), ('Pa-', 'Pa'), ('-', ''), ('coun-', 'coun'), ('-', ''), ('-', ''), ('-', ''), ('Sev-', 'Sev')] PUR19170322-V16-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Pres-', 'Pres'), ('-two', 'two'), ('compar-', 'compar')] PUR19170329-V16-34-page1.txt: [('Apos-', 'Apos'), ('---------', '--------')] PUR19170329-V16-34-page2.txt: [('Or-', 'Or'), ('leg-', 'leg'), ('writ-', 'writ'), ('paral-', 'paral'), ('--Mrs.', '-Mrs.'), ('Min-', 'Min'), ('Govern-', 'Govern'), ('Hol-', 'Hol')] PUR19170329-V16-34-page3.txt: [('him-', 'him'), ('-years', 'years'), ('en-', 'en'), ('candi-', 'candi'), ('meet-', 'meet')] PUR19170329-V16-34-page4.txt: [('mission-', 'mission'), ('glo-', 'glo')] PUR19170329-V16-34-page5.txt: [('treas-', 'treas'), ('Breth-', 'Breth'), ('peo-', 'peo'), ('sur-', 'sur'), ('South-', 'South'), ('Snod-', 'Snod'), ('serv-', 'serv'), ('Sab-', 'Sab')] PUR19170329-V16-34-page6.txt: [('-February', 'February')] PUR19170329-V16-34-page7.txt: [('-pound', 'pound'), ('-', ''), ('El-', 'El'), ('-pound', 'pound'), ('-pound', 'pound'), ('-pound', 'pound'), ('Para-', 'Para'), ('halt-', 'halt'), ('-', ''), ('-', ''), ('Sani-', 'Sani'), ('coun-', 'coun')] PUR19170329-V16-34-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('extend-', 'extend'), ('gos-', 'gos')] PUR19170405-V16-35-page2.txt: [('ac-', 'ac'), ('Valle-', 'Valle'), ('pre-', 'pre'), ('re-', 're'), ('-', '')] PUR19170405-V16-35-page3.txt: [('-', ''), ('-due', 'due'), ('-', ''), ('-', ''), ('-', ''), ('-a', 'a'), ('immedi-', 'immedi'), ('Associa-', 'Associa'), ('Er-', 'Er')] PUR19170405-V16-35-page4.txt: [('tu-', 'tu')] PUR19170405-V16-35-page5.txt: [('Sab-', 'Sab'), ('Ed-', 'Ed'), ('of-', 'of')] PUR19170405-V16-35-page6.txt: [('do-', 'do'), ('Ad-', 'Ad')] PUR19170405-V16-35-page7.txt: [('tri-', 'tri'), ('sanitarium-', 'sanitarium'), ('-', ''), ('fu-', 'fu'), ('-pound', 'pound'), ('-pound', 'pound'), ('-pound', 'pound'), ('-pound', 'pound'), ('Swe-', 'Swe'), ('Sani-', 'Sani'), ('for-', 'for'), ('Broth-', 'Broth'), ('prin-', 'prin'), ('ac-', 'ac'), ('-', ''), ('-', ''), ('--sanitarium', '-sanitarium'), ('---', '--')] PUR19170405-V16-35-page8.txt: [('Kimber-', 'Kimber'), ('-other', 'other'), ('-a', 'a'), ('Nash-', 'Nash'), ('-', ''), ('-', ''), ('-ought', 'ought'), ('-', ''), ('-', ''), ('mailed-', 'mailed'), ('meas-', 'meas'), ('-to', 'to')] PUR19170412-V16-36-page1.txt: [('en-', 'en')] PUR19170412-V16-36-page2.txt: [('Correspon-', 'Correspon'), ('mes-', 'mes'), ('re-', 're'), ('be-', 'be')] PUR19170412-V16-36-page3.txt: [('sub-', 'sub'), ('vis-', 'vis'), ('-', ''), ('him-', 'him')] PUR19170412-V16-36-page4.txt: [('Mc-', 'Mc'), ('Acad-', 'Acad'), ('la-', 'la'), ('Seventh-', 'Seventh'), ('pe-', 'pe'), ('Ca-', 'Ca'), ('intro-', 'intro'), ('peo-', 'peo'), ('re-', 're')] PUR19170412-V16-36-page5.txt: [('subscrib-', 'subscrib'), ('mil-', 'mil'), ('be-', 'be'), ('to-', 'to'), ('Cham-', 'Cham'), ('ag-', 'ag'), ('doc-', 'doc'), ('-', '')] PUR19170412-V16-36-page6.txt: [('-', ''), ('-one', 'one'), ('-', ''), ('confer-', 'confer'), ('transfer-', 'transfer'), ('-recently', 'recently'), ('peo-', 'peo'), ('ob-', 'ob'), ('Ab-', 'Ab')] PUR19170412-V16-36-page7.txt: [('audi-', 'audi'), ('wa-', 'wa'), ('Mo-', 'Mo'), ('Glen-', 'Glen'), ('in-', 'in'), ('re-', 're'), ('-', ''), ('-', ''), ('rais-', 'rais'), ('ac-', 'ac'), ('Re-', 'Re'), ('-write', 'write'), ('-', ''), ('-pound', 'pound'), ('-pound', 'pound'), ('-pound', 'pound'), ('-pound', 'pound'), ('-', ''), ('Au-', 'Au')] PUR19170412-V16-36-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-by', 'by'), ('free-', 'free')] PUR19170419-V16-37-page1.txt: [('concern-', 'concern'), ('ety-', 'ety'), ('des-', 'des'), ('fol-', 'fol'), ('-', ''), ('em-', 'em')] PUR19170419-V16-37-page2.txt: [('un-', 'un'), ('-', ''), ('confer-', 'confer'), ('ac-', 'ac'), ('-', ''), ('Con-', 'Con')] PUR19170419-V16-37-page3.txt: [('re-', 're'), ('Pa-', 'Pa'), ('ser-', 'ser'), ('meet-', 'meet'), ('Confer-', 'Confer'), ('camp-', 'camp')] PUR19170419-V16-37-page4.txt: [('re-', 're'), ('dona-', 'dona'), ('under-', 'under'), ('in-', 'in')] PUR19170419-V16-37-page5.txt: [('North-', 'North'), ('-and', 'and'), ('-', ''), ('sub-', 'sub'), ('---', '--'), ('-the', 'the'), ('-and', 'and'), ('-', '')] PUR19170419-V16-37-page6.txt: [('al-', 'al'), ('mis-', 'mis')] PUR19170419-V16-37-page7.txt: [('Sab-', 'Sab'), ('Sev-', 'Sev'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ma-', 'ma'), ('col-', 'col')] PUR19170419-V16-37-page8.txt: [('in-', 'in'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-page', 'page'), ('-', ''), ('-', ''), ('Sab-', 'Sab'), ('possi-', 'possi'), ('-', ''), ('-', ''), ('-May', 'May'), ('-', ''), ('-', ''), ('-', '')] PUR19170426-V16-38-page1.txt: [('-', ''), ('mem-', 'mem'), ('mem-', 'mem')] PUR19170426-V16-38-page2.txt: [('senti-', 'senti'), ('-', ''), ('op-', 'op'), ('ac-', 'ac'), ('de-', 'de'), ('pro-', 'pro'), ('re-', 're')] PUR19170426-V16-38-page3.txt: [('-giving', 'giving'), ('bap-', 'bap'), ('large-', 'large'), ('crab-', 'crab')] PUR19170426-V16-38-page4.txt: [('inter-', 'inter'), ('bap-', 'bap')] PUR19170426-V16-38-page5.txt: [('-ct-wk', 'ct-wk'), ('-', ''), ('in-', 'in'), ('sub-', 'sub'), ('at-', 'at'), ('con-', 'con'), ('mis-', 'mis'), ('ac-', 'ac'), ('de-', 'de')] PUR19170426-V16-38-page6.txt: [('meet-', 'meet'), ('of-', 'of'), ('condi-', 'condi'), ('-cent-', 'cent-'), ('un-', 'un')] PUR19170426-V16-38-page7.txt: [('sub-', 'sub'), ('-the', 'the'), ('stockinet-', 'stockinet'), ('or-', 'or'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Delivery', 'Delivery'), ('-', ''), ('--.', '-.'), ('-', ''), ('--', '-')] PUR19170426-V16-38-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Sab-', 'Sab'), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('ar-', 'ar')] PUR19170503-V16-39-page1.txt: [('evi-', 'evi'), ('non-com-', 'non-com'), ('dele-', 'dele'), ('meet-', 'meet'), ('or-', 'or'), ('peace-', 'peace'), ('prin-', 'prin')] PUR19170503-V16-39-page2.txt: [('will-', 'will'), ('for-', 'for'), ('Broth-', 'Broth')] PUR19170503-V16-39-page3.txt: [('bap-', 'bap'), ('do-', 'do'), ('Contro-', 'Contro'), ('meet-', 'meet'), ('Mag-', 'Mag'), ('-', ''), ('Cic-', 'Cic')] PUR19170503-V16-39-page4.txt: [('thank-', 'thank'), ('quota-', 'quota'), ('drop-', 'drop'), ('plan-', 'plan'), ('excel-', 'excel'), ('organ-', 'organ'), ('re-', 're'), ('writ-', 'writ'), ('-', ''), ('Sis-', 'Sis')] PUR19170503-V16-39-page5.txt: [('else-', 'else'), ('ex-', 'ex'), ('re-', 're')] PUR19170503-V16-39-page6.txt: [('king-', 'king'), ('scat-', 'scat'), ('sub-', 'sub')] PUR19170503-V16-39-page7.txt: [('particu-', 'particu'), ('spec-', 'spec'), ('-UNION', 'UNION'), ('Can-', 'Can'), ('men-', 'men'), ('Mis-', 'Mis'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ordin-', 'ordin'), ('-', ''), ('--', '-'), ('-', ''), ('--', '-'), ('-', ''), ('-', '')] PUR19170503-V16-39-page8.txt: [('class-', 'class'), ('so-', 'so'), ('-', ''), ('-', ''), ('Fo-', 'Fo'), ('Tes-', 'Tes'), ('depart-', 'depart'), ('visit-', 'visit'), ('-', ''), ('An-', 'An'), ('Mis-', 'Mis'), ('var-', 'var'), ('opera-', 'opera'), ('Chris-', 'Chris'), ('iron-', 'iron')] PUR19170510-V16-40-page1.txt: [('cloth-', 'cloth'), ('-o', 'o')] PUR19170510-V16-40-page2.txt: [('South-', 'South'), ('-', ''), ('mater-', 'mater'), ('work-', 'work'), ('expe-', 'expe')] PUR19170510-V16-40-page3.txt: [('prepara-', 'prepara'), ('meth-', 'meth'), ('dis-', 'dis'), ('Pro-', 'Pro')] PUR19170510-V16-40-page4.txt: [('Mis-', 'Mis'), ('at-', 'at'), ('com-', 'com'), ('li-', 'li'), ('pre-', 'pre'), ('Sel-', 'Sel')] PUR19170510-V16-40-page5.txt: [('to-', 'to'), ('reli-', 'reli'), ('communi-', 'communi'), ('meet-', 'meet'), ('contem-', 'contem')] PUR19170510-V16-40-page6.txt: [('re-', 're'), ('Work-', 'Work'), ('Correspondence-', 'Correspondence'), ('Reporting-', 'Reporting'), ('sug-', 'sug'), ('Territory-', 'Territory'), ('Literature-', 'Literature'), ('mighti-', 'mighti')] PUR19170510-V16-40-page7.txt: [('ingath-', 'ingath'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('follow-', 'follow'), ('mem-', 'mem'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170510-V16-40-page8.txt: [('-', ''), ('So-', 'So'), ('exer-', 'exer')] PUR19170517-V16-41-page1.txt: [('prin-', 'prin'), ('Docu-', 'Docu'), ('demon-', 'demon'), ('con-', 'con'), ('Ad-', 'Ad'), ('po-', 'po')] PUR19170517-V16-41-page2.txt: [('mentsrequires-', 'mentsrequires'), ('-and', 'and'), ('thous-', 'thous'), ('pos-', 'pos'), ('de-', 'de')] PUR19170517-V16-41-page3.txt: [('Corn-', 'Corn'), ('citi-', 'citi'), ('princi-', 'princi'), ('govern-', 'govern'), ('.-', '.'), ('re-', 're'), ('pro-', 'pro'), ('sub-', 'sub'), ('-', ''), ('Seventh-', 'Seventh'), ('heav-', 'heav'), ('con-', 'con'), ('har-', 'har'), ('pow-', 'pow'), ('compell-', 'compell'), ('re-', 're')] PUR19170517-V16-41-page4.txt: [('X-', 'X'), ('ac-', 'ac'), ('be-', 'be'), ('Writ-', 'Writ'), ('cot-', 'cot')] PUR19170517-V16-41-page5.txt: [('fu-', 'fu'), ('conduct-', 'conduct'), ('announce-', 'announce'), ('Asso-', 'Asso')] PUR19170517-V16-41-page6.txt: [('bap-', 'bap'), ('con-', 'con'), ('Ser-', 'Ser'), ('en-', 'en'), ('ev-', 'ev'), ('soul-sav-', 'soul-sav'), ('sug-', 'sug'), ('-cent-', 'cent-'), ('-a', 'a'), ('-celebrating', 'celebrating'), ('Volun-', 'Volun'), ('-brought', 'brought'), ('deep-', 'deep'), ('-', ''), ('enjoya-', 'enjoya')] PUR19170517-V16-41-page7.txt: [('mod-', 'mod'), ('be-', 'be'), ('-gallon', 'gallon'), ('equip-', 'equip'), ('refer-', 'refer'), ('-are', 'are'), ('im-', 'im'), ('-', ''), ('Lam-', 'Lam'), ('sec-', 'sec'), ('Phoe-', 'Phoe')] PUR19170517-V16-41-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--'), ('acquaint-', 'acquaint'), ('sin-', 'sin'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170524-V16-42-page1.txt: [('criti-', 'criti'), ('bewil-', 'bewil'), ('ac-', 'ac'), ('at-', 'at'), ('revela-', 'revela')] PUR19170524-V16-42-page2.txt: [('Baby-', 'Baby'), ('remov-', 'remov'), ('lo-', 'lo'), ('in-', 'in'), ('-', '')] PUR19170524-V16-42-page3.txt: [("'-", "'"), ('-', ''), ('ev-', 'ev'), ('indying-', 'indying'), ('-', ''), ('-', ''), ('as-', 'as'), ('example-', 'example'), ('at-', 'at'), ('-them', 'them'), ('-of', 'of'), ('-all', 'all'), ('Am-', 'Am'), ('-', ''), ('un-', 'un'), ('peo-', 'peo'), ('-to', 'to'), ('-has', 'has'), ('-', ''), ('-', ''), ('-"We', '"We'), ('con-', 'con'), ('Rememberthat-', 'Rememberthat'), ('-usual', 'usual'), ('-the', 'the'), ('-', ''), ('-tlae', 'tlae'), ('-Rev.', 'Rev.'), ('-at', 'at')] PUR19170524-V16-42-page4.txt: [('faith-', 'faith'), ('help-', 'help')] PUR19170524-V16-42-page5.txt: [('An-', 'An'), ('John-', 'John'), ('con-', 'con'), ('pur-', 'pur'), ('excel-', 'excel'), ('get-', 'get'), ('pray-', 'pray'), ('Exe-', 'Exe'), ('sug-', 'sug')] PUR19170524-V16-42-page6.txt: [('-ACIFIG', 'ACIFIG'), ('-ence"', 'ence"'), ('unu-', 'unu'), ('confer-', 'confer'), ('crown-', 'crown')] PUR19170524-V16-42-page7.txt: [('-', ''), ('-pound', 'pound'), ('mod-', 'mod'), ('-', ''), ('-', '')] PUR19170524-V16-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('can-', 'can'), ('ex-', 'ex'), ('with-', 'with'), ('-', ''), ('-', ''), ('Arizona-', 'Arizona'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170531-V16-43-page1.txt: [('per-', 'per')] PUR19170531-V16-43-page3.txt: [('Sab-', 'Sab'), ('prob-', 'prob'), ('Bi-', 'Bi'), ('cer-', 'cer')] PUR19170531-V16-43-page4.txt: [('peo-', 'peo'), ('out-', 'out'), ('va-', 'va'), ('meet-', 'meet'), ('subscrip-', 'subscrip'), ('pre-', 'pre')] PUR19170531-V16-43-page5.txt: [('bap-', 'bap')] PUR19170531-V16-43-page6.txt: [('oppor-', 'oppor'), ('peo-', 'peo'), ('fel-', 'fel')] PUR19170531-V16-43-page7.txt: [('-', ''), ('mes-', 'mes'), ('resur-', 'resur'), ('imme-', 'imme'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('cen-', 'cen'), ('sanitar-', 'sanitar')] PUR19170531-V16-43-page8.txt: [('Messen-', 'Messen'), ('pro-', 'pro'), ('sub-', 'sub'), ('be-', 'be'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---', '--'), ('--', '-'), ('-', ''), ('--', '-'), ('i-', 'i'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-I-', 'I-'), ('Le-', 'Le'), ('-', ''), ('-', ''), ('-', ''), ('"In-', '"In'), ('vicini-', 'vicini'), ('pro-', 'pro'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('l-', 'l'), ('.--', '.-'), ('--', '-'), ('--', '-'), ('--', '-'), ('-', ''), ('-', ''), ('.--', '.-'), ('.--', '.-'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170607-V16-44-page11.txt: [('-', ''), ('-', ''), ('Depart-', 'Depart')] PUR19170607-V16-44-page12.txt: [('-', '')] PUR19170607-V16-44-page13.txt: [('Parent-', 'Parent'), ('-', '')] PUR19170607-V16-44-page16.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170607-V16-44-page20.txt: [('-', ''), ('-', ''), ('Ac-', 'Ac'), ('-useful', 'useful'), ('satisfac-', 'satisfac'), ('-"', '"'), ('-', ''), ('-', ''), ('-Warming', 'Warming'), ('-', '')] PUR19170607-V16-44-page21.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170607-V16-44-page23.txt: [('thirty-', 'thirty')] PUR19170607-V16-44-page26.txt: [('-Work', 'Work')] PUR19170607-V16-44-page27.txt: [('-', ''), ('Ec-', 'Ec')] PUR19170607-V16-44-page30.txt: [('Because---', 'Because--'), ('to-', 'to')] PUR19170607-V16-44-page31.txt: [('L-L-', 'L-L'), ('-', ''), ('-', ''), ('-', '')] PUR19170607-V16-44-page32.txt: [('-', ''), ('-st', 'st'), ('-', ''), ('-lkeye', 'lkeye'), ('-.', '.'), ('t-', 't'), ('-', '')] PUR19170614-V16-45-page1.txt: [('-cent', 'cent'), ('peo-', 'peo'), ('empha-', 'empha'), ('depart-', 'depart'), ('Ameri-', 'Ameri'), ('let-', 'let')] PUR19170614-V16-45-page2.txt: [('West-', 'West')] PUR19170614-V16-45-page3.txt: [('con-', 'con'), ('breth-', 'breth'), ('confi-', 'confi')] PUR19170614-V16-45-page4.txt: [('Inter-', 'Inter'), ('morn-', 'morn'), ('San-', 'San'), ('Junc-', 'Junc'), ('camp-meet-', 'camp-meet'), ('Kun-', 'Kun')] PUR19170614-V16-45-page5.txt: [('par-', 'par'), ('re-', 're'), ('Camp-', 'Camp'), ('al-', 'al')] PUR19170614-V16-45-page6.txt: [('dur-', 'dur'), ('"mas-', '"mas'), ('de-', 'de'), ('follow-', 'follow'), ('faith-', 'faith'), ('pleas-', 'pleas'), ('Covell-', 'Covell'), ('Sab-', 'Sab'), ('"Re-', '"Re'), ('Command-', 'Command'), ('experi-', 'experi')] PUR19170614-V16-45-page7.txt: [('Deliveries-', 'Deliveries'), ('Middle-', 'Middle'), ('prin-', 'prin'), ('-', ''), ('-', ''), ('cen-', 'cen'), ('Associ-', 'Associ'), ('en-', 'en'), ('meet-', 'meet'), ('Exchange.-', 'Exchange.'), ('-', '')] PUR19170614-V16-45-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('un-', 'un'), ('difficul-', 'difficul'), ('sub-', 'sub'), ('-', ''), ('ex-', 'ex'), ('jew-', 'jew'), ('Mas-', 'Mas'), ('-', ''), ('Arizona-', 'Arizona'), ('-', ''), ('I-', 'I')] PUR19170621-V16-46-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-B.', 'B.'), ('-', ''), ('-E.', 'E.'), ('-', ''), ('-', '')] PUR19170621-V16-46-page2.txt: [('ef-', 'ef'), ('print-', 'print')] PUR19170621-V16-46-page3.txt: [('-had', 'had'), ('Bar-', 'Bar'), ('graduat-', 'graduat'), ('nor-', 'nor'), ('-yet', 'yet'), ('Dan-', 'Dan')] PUR19170621-V16-46-page4.txt: [('substan-', 'substan'), ('Mc-', 'Mc'), ('ex-', 'ex'), ('At-', 'At'), ('-once', 'once'), ('confer-', 'confer'), ('situa-', 'situa'), ('at-', 'at'), ('El-', 'El'), ('meet-', 'meet')] PUR19170621-V16-46-page5.txt: [('-', ''), ('-', ''), ('--result', '-result'), ('deprived-', 'deprived'), ('-', ''), ('-', ''), ('-', ''), ('-may', 'may'), ('-materially', 'materially'), ('-traveled', 'traveled'), ('-the', 'the'), ('near-', 'near'), ('week.-', 'week.'), ('-', ''), ('-', ''), ('-hour.', 'hour.'), ('-weeks', 'weeks'), ('-', ''), ("'other-", "'other"), ('-colporteurs', 'colporteurs'), ('-the', 'the'), ('-traveling', 'traveling'), ('troub-', 'troub')] PUR19170621-V16-46-page6.txt: [('F.--', 'F.-'), ('-A', 'A'), ('ce-', 'ce'), ('-', ''), ('sani-', 'sani'), ('Cor-', 'Cor'), ('Sale.-', 'Sale.'), ('-', '')] PUR19170621-V16-46-page7.txt: [('suffer-', 'suffer'), ('-', ''), ('-', ''), ('El-', 'El'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Arizona-', 'Arizona'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('San-', 'San'), ('will-', 'will')] PUR19170621-V16-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('pre-', 'pre'), ('vil-', 'vil')] PUR19170628-V16-47-page1.txt: [('Asj-', 'Asj'), ('quick-', 'quick')] PUR19170628-V16-47-page2.txt: [('-missions', 'missions'), ('offer-', 'offer'), ('offer-', 'offer'), ('in-', 'in')] PUR19170628-V16-47-page3.txt: [('Cali-', 'Cali'), ('Phoe-', 'Phoe'), ('con-', 'con'), ('addi-', 'addi'), ('ex-', 'ex'), ('re-', 're'), ('camp-meet-', 'camp-meet'), ('camp-', 'camp'), ('in-', 'in')] PUR19170628-V16-47-page4.txt: [('oth-', 'oth'), ('Sub-', 'Sub'), ('Thir-', 'Thir'), ('En-', 'En')] PUR19170628-V16-47-page5.txt: [('aft-', 'aft'), ('camp-', 'camp'), ('ques-', 'ques'), ('cer-', 'cer'), ('in-', 'in'), ('teach-', 'teach')] PUR19170628-V16-47-page6.txt: [('work-', 'work'), ('faith-', 'faith'), ('for-', 'for')] PUR19170628-V16-47-page7.txt: [('-', ''), ('Associ-', 'Associ'), ('Re-', 'Re'), ('Up-', 'Up')] PUR19170628-V16-47-page8.txt: [('-', ''), ('three-', 'three'), ('-', ''), ('-', ''), ('-', ''), ('ad-', 'ad'), ('peo-', 'peo'), ('con-', 'con'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170705-V16-48-page1.txt: [('-', ''), ('-', ''), ('Je-', 'Je')] PUR19170705-V16-48-page2.txt: [('mid-', 'mid'), ('your-', 'your'), ('as-', 'as'), ('convenient-', 'convenient'), ('at-', 'at')] PUR19170705-V16-48-page3.txt: [('o-', 'o'), ('meth-', 'meth'), ('profit-', 'profit'), ('splen-', 'splen'), ('In-', 'In'), ('-from', 'from'), ('af-', 'af')] PUR19170705-V16-48-page4.txt: [('bind-', 'bind'), ('as-', 'as'), ('-', ''), ('chil-', 'chil'), ('-', ''), ('-', ''), ('-large', 'large'), ('bind-', 'bind')] PUR19170705-V16-48-page5.txt: [('wa-', 'wa'), ('meet-', 'meet'), ('real-', 'real')] PUR19170705-V16-48-page6.txt: [('re-', 're'), ('CAMP-', 'CAMP'), ('count-', 'count'), ('Junc-', 'Junc'), ('camp-meet-', 'camp-meet')] PUR19170705-V16-48-page7.txt: [('Acad-', 'Acad'), ('Califor-', 'Califor'), ('exer-', 'exer'), ('can-', 'can'), ('asso-', 'asso'), ('"Bles-', '"Bles'), ('Fer-', 'Fer'), ('en-', 'en'), ('organi-', 'organi'), ('In-', 'In'), ('en-', 'en'), ('wa-', 'wa')] PUR19170705-V16-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('o-', 'o'), ('ex-', 'ex'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('I-', 'I'), ('-', ''), ('-', ''), ('-', ''), ('I-', 'I'), ('-', ''), ('-', ''), ('-', '')] PUR19170712-V16-49-page1.txt: [('de-', 'de'), ('giv-', 'giv'), ('-', '')] PUR19170712-V16-49-page2.txt: [('wit-', 'wit'), ('thor-', 'thor'), ('origi-', 'origi'), ('num-', 'num'), ('ad-', 'ad')] PUR19170712-V16-49-page3.txt: [('-siesta', 'siesta'), ('hold-', 'hold'), ('Sun-', 'Sun'), ('un-', 'un'), ('speak-', 'speak'), ('---', '--'), ('con-', 'con'), ('cam-', 'cam'), ('pre-', 'pre')] PUR19170712-V16-49-page4.txt: [('pur-', 'pur'), ('Sabbath-', 'Sabbath'), ('num-', 'num'), ('re-', 're'), ('Ches-', 'Ches'), ('elemen-', 'elemen')] PUR19170712-V16-49-page5.txt: [('spe-', 'spe')] PUR19170712-V16-49-page6.txt: [('-', ''), ('Acade-', 'Acade'), ('"Ven-', '"Ven'), ('secre-', 'secre'), ('-', ''), ('wish-', 'wish'), ('-', ''), ('-of', 'of')] PUR19170712-V16-49-page7.txt: [('reorgan-', 'reorgan'), ('chil-', 'chil'), ('Ad-', 'Ad'), ('-A', 'A'), ('ser-', 'ser'), ('-', ''), ('Thomp-', 'Thomp'), ('remain-', 'remain'), ('pur-', 'pur'), ('salva-', 'salva')] PUR19170712-V16-49-page8.txt: [('-', ''), ('-', ''), ('sancti-', 'sancti'), ('con-', 'con'), ('In-', 'In'), ('min-', 'min'), ('-', ''), ('giv-', 'giv'), ('call-', 'call'), ('ques-', 'ques'), ('denomina-', 'denomina'), ('assist-', 'assist'), ('pro-', 'pro'), ('Tru-', 'Tru'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170719-V16-50-page1.txt: [('-', ''), ('heav-', 'heav'), ('Dic-', 'Dic'), ('rec-', 'rec')] PUR19170719-V16-50-page2.txt: [('ton-', 'ton'), ('-Marine', 'Marine'), ('Oth-', 'Oth'), ('declara-', 'declara'), ('publica-', 'publica'), ('every-', 'every'), ('-', '')] PUR19170719-V16-50-page3.txt: [('Broth-', 'Broth'), ('Ly-', 'Ly'), ('manifest-', 'manifest'), ('ef-', 'ef'), ('Armo-', 'Armo')] PUR19170719-V16-50-page4.txt: [('def-', 'def'), ('pre-', 'pre'), ('se-', 'se'), ('neces-', 'neces'), ('Or-', 'Or'), ('un-', 'un'), ('grant-', 'grant')] PUR19170719-V16-50-page5.txt: [('report-', 'report'), ('appre-', 'appre')] PUR19170719-V16-50-page6.txt: [('-', ''), ('con-', 'con'), ('every-', 'every'), ('Twenty-cent-a-', 'Twenty-cent-a')] PUR19170719-V16-50-page7.txt: [('-A', 'A'), ('-', '')] PUR19170719-V16-50-page8.txt: [('-', ''), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('un-', 'un'), ('respect-', 'respect'), ('pre-', 'pre'), ('-or', 'or'), ('pos-', 'pos'), ('es-', 'es'), ('Establish-', 'Establish'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170726-V16-51-page1.txt: [('un-', 'un'), ('be-', 'be')] PUR19170726-V16-51-page2.txt: [('es-', 'es'), ('lec-', 'lec'), ('El-', 'El'), ('decen-', 'decen'), ('giv-', 'giv'), ('fal-', 'fal'), ('en-', 'en')] PUR19170726-V16-51-page3.txt: [('publish-', 'publish'), ('litera-', 'litera'), ('publish-', 'publish')] PUR19170726-V16-51-page4.txt: [('-', ''), ('Elec-', 'Elec'), ('re-', 're'), ('Wash-', 'Wash'), ('in-', 'in'), ('-t-tion', 't-tion')] PUR19170726-V16-51-page5.txt: [('Tues-', 'Tues'), ('rep-', 'rep'), ('Hol-', 'Hol')] PUR19170726-V16-51-page6.txt: [('meas-', 'meas'), ('work-', 'work'), ('-', ''), ('Cali-', 'Cali'), ('cer-', 'cer'), ('Kos-', 'Kos'), ('coun-', 'coun')] PUR19170726-V16-51-page7.txt: [('min-', 'min'), ('prop-', 'prop'), ('-UCATIONAL-', 'UCATIONAL-'), ('addi-', 'addi'), ('ar-', 'ar'), ('of-', 'of'), ('view-', 'view'), ('build-', 'build'), ('increas-', 'increas'), ('-', ''), ('-cent-', 'cent-'), ('frame-', 'frame')] PUR19170726-V16-51-page8.txt: [('-', ''), ('-', ''), ('.-', '.'), ('-', ''), ('.--', '.-'), ('.--', '.-'), ('--.', '-.'), ('.-', '.'), ('.-', '.'), ('-', ''), ('-.', '.'), ('.--', '.-'), ('.-', '.'), ('.-', '.'), ('.-', '.'), ('pay-', 'pay'), ('-', ''), ('peo-', 'peo'), ('camp-', 'camp'), ('passen-', 'passen'), ('keep-', 'keep'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170802-V16-52-page1.txt: [('Sev-', 'Sev'), ('excite-', 'excite'), ('edito-', 'edito'), ('revela-', 'revela'), ('enjoy-', 'enjoy'), ('disci-', 'disci'), ('-', '')] PUR19170802-V16-52-page2.txt: [('heart-', 'heart'), ('suf-', 'suf'), ('admira-', 'admira'), ('Breth-', 'Breth'), ('In-', 'In')] PUR19170802-V16-52-page3.txt: [('Eu-', 'Eu'), ('mys-', 'mys'), ('accept-', 'accept'), ('Trin-', 'Trin'), ("-class'", "class'")] PUR19170802-V16-52-page4.txt: [('Inter-', 'Inter'), ('con-', 'con'), ('vaca-', 'vaca'), ('fail-', 'fail'), ('mem-', 'mem'), ('self-', 'self'), ('Snod-', 'Snod'), ('peo-', 'peo')] PUR19170802-V16-52-page5.txt: [('at-', 'at'), ('-grOund', 'grOund'), ('Sab-', 'Sab'), ('ap-', 'ap')] PUR19170802-V16-52-page6.txt: [('Flagg-', 'Flagg'), ('se-', 'se'), ('Controv-', 'Controv'), ('Broth-', 'Broth'), ('be-', 'be'), ('camp-meet-', 'camp-meet'), ('Mem-', 'Mem'), ('em-', 'em')] PUR19170802-V16-52-page8.txt: [('-hould', 'hould'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('at-', 'at'), ('af-', 'af'), ('-to', 'to'), ('Pa-', 'Pa')] PUR19170809-V17-01-page1.txt: [('re-', 're'), ('sol-', 'sol'), ('judg-', 'judg')] PUR19170809-V17-01-page2.txt: [('-', ''), ('-study', 'study'), ('county-', 'county'), ('Seventh-', 'Seventh')] PUR19170809-V17-01-page3.txt: [('ad-', 'ad'), ('tick-', 'tick'), ('attend-', 'attend'), ('prob-', 'prob')] PUR19170809-V17-01-page4.txt: [('UNION-', 'UNION')] PUR19170809-V17-01-page5.txt: [('be-', 'be'), ('near-', 'near'), ('lit-', 'lit'), ('al-', 'al')] PUR19170809-V17-01-page6.txt: [('-"firoiig', '"firoiig'), ('"Bi-', '"Bi')] PUR19170809-V17-01-page7.txt: [('child-', 'child'), ('Presbyte-', 'Presbyte'), ('con-', 'con'), ('await-', 'await'), ('Moore.-', 'Moore.'), ('-F.', 'F.'), ('sum-', 'sum'), ('Oak-', 'Oak'), ('Weather-', 'Weather'), ('Ad-', 'Ad'), ('to-', 'to'), ('per-', 'per'), ('mis-', 'mis')] PUR19170809-V17-01-page8.txt: [('sis-', 'sis'), ('-', ''), ('-', ''), ('-', ''), ('un-', 'un'), ('val-', 'val'), ('mes-', 'mes'), ('mis-', 'mis'), ('mission-', 'mission'), ('re-', 're'), ('every-', 'every'), ('thresh-', 'thresh'), ('-', ''), ('-', ''), ('-t', 't'), ('-t-', 't-')] PUR19170816-V17-02-page1.txt: [('Evan-', 'Evan'), ('Evan-', 'Evan'), ('con-', 'con'), ('Evange-', 'Evange'), ('Pa-', 'Pa'), ('Volun-', 'Volun'), ('fol-', 'fol'), ('mem-', 'mem'), ('eight-', 'eight'), ('Mis-', 'Mis'), ('-', '')] PUR19170816-V17-02-page2.txt: [('ar-', 'ar'), ('-other', 'other'), ('re-', 're')] PUR19170816-V17-02-page3.txt: [('ob-', 'ob'), ('-', ''), ('This-', 'This')] PUR19170816-V17-02-page5.txt: [('-PACIFIC', 'PACIFIC'), ('num-', 'num'), ('-look', 'look'), ('-yawneda', 'yawneda'), ('-hand.-', 'hand.-'), ('-', ''), ('-', '')] PUR19170816-V17-02-page6.txt: [('Mag-', 'Mag'), ('dol-', 'dol'), ('wait-', 'wait'), ('-to', 'to'), ('pro-', 'pro')] PUR19170816-V17-02-page7.txt: [('-', ''), ('intermedi-', 'intermedi'), ('-', '')] PUR19170816-V17-02-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('neces-', 'neces'), ('-', ''), ('govern-', 'govern'), ('hold-', 'hold'), ('-', ''), ('-', '')] PUR19170823-V17-03-page1.txt: [('-', ''), ('-in', 'in'), ('-the-', 'the-')] PUR19170823-V17-03-page2.txt: [('com-', 'com'), ('of-', 'of'), ('reach-', 'reach'), ('Her-', 'Her'), ('an-', 'an')] PUR19170823-V17-03-page3.txt: [('re-', 're'), ('confer-', 'confer'), ('Chris-', 'Chris'), ('-', '')] PUR19170823-V17-03-page4.txt: [('lit-', 'lit'), ('ob-', 'ob'), ('ef-', 'ef'), ('ef-', 'ef'), ('-', '')] PUR19170823-V17-03-page5.txt: [('Dix-', 'Dix'), ('In-', 'In')] PUR19170823-V17-03-page6.txt: [('Wanted.-', 'Wanted.'), ('-A', 'A'), ('-', ''), ('child-', 'child'), ('Bargain.-', 'Bargain.'), ('Arl-', 'Arl'), ('Oak-', 'Oak'), ('Exchange.-', 'Exchange.'), ('un-', 'un'), ('-', ''), ('can-', 'can'), ('-', ''), ('wa-', 'wa'), ('Sale.-', 'Sale.'), ('con-', 'con'), ('sacri-', 'sacri'), ('satis-', 'satis'), ('knowl-', 'knowl')] PUR19170823-V17-03-page7.txt: [('Michi-', 'Michi'), ('Caro-', 'Caro'), ('Nor-', 'Nor'), ('new-', 'new'), ('Matte-', 'Matte'), ('per-', 'per'), ('-his.', 'his.'), ('-not', 'not'), ('Wash-', 'Wash'), ('mes-', 'mes')] PUR19170823-V17-03-page8.txt: [('-', ''), ('Pa-', 'Pa'), ('God-', 'God'), ('-', '')] PUR19170830-V17-04-page1.txt: [('Takoma-', 'Takoma'), ('-', ''), ('Immediate-', 'Immediate'), ('pray-', 'pray'), ('Every-', 'Every'), ('coun-', 'coun'), ('that-peo-', 'that-peo')] PUR19170830-V17-04-page2.txt: [('temp-', 'temp'), ('splen-', 'splen'), ('con-', 'con'), ('de-', 'de'), ('-', ''), ('for-', 'for'), ('con-', 'con'), ('instruc-', 'instruc'), ('believ-', 'believ'), ('situ-', 'situ'), ('di-', 'di')] PUR19170830-V17-04-page3.txt: [('Sep-', 'Sep'), ('at-', 'at'), ('immi-', 'immi')] PUR19170830-V17-04-page4.txt: [('-', ''), ('en-', 'en')] PUR19170830-V17-04-page5.txt: [('to-', 'to'), ('un-', 'un'), ('Sub-', 'Sub'), ('count-', 'count'), ('for-', 'for'), ('im-', 'im'), ('sum-', 'sum'), ('ac-', 'ac'), ('fur-', 'fur'), ('recom-', 'recom'), ('civi-', 'civi'), ('-', '')] PUR19170830-V17-04-page6.txt: [('RECORDER-', 'RECORDER'), ('Inci-', 'Inci'), ('-year-old', 'year-old'), ('-s', 's'), ('chil-', 'chil'), ('writ-', 'writ'), ('im-', 'im'), ('Junc-', 'Junc'), ('inter-', 'inter'), ('-', ''), ('en-', 'en')] PUR19170830-V17-04-page7.txt: [('writ-', 'writ'), ('Civ-', 'Civ'), ('confer-', 'confer'), ('sacri-', 'sacri'), ('reas-', 'reas'), ('-', ''), ('-oorn', 'oorn'), ('-nost', 'nost'), ('re-', 're'), ('grand-', 'grand'), ('-Sale', 'Sale'), ('Presi-', 'Presi'), ('illus-', 'illus'), ('Tomor-', 'Tomor'), ('de-', 'de')] PUR19170830-V17-04-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('CONFER-', 'CONFER'), ('owvogivoiridir-', 'owvogivoiridir'), ('slogan-', 'slogan'), ('varnish-', 'varnish'), ('im-', 'im'), ('Col-', 'Col'), ('Or-', 'Or')] PUR19170906-V17-05-page1.txt: [('be-', 'be'), ('every-', 'every'), ('-', ''), ('im-', 'im'), ('-', '')] PUR19170906-V17-05-page2.txt: [('deal-', 'deal'), ('en-', 'en'), ('ex-', 'ex'), ('king-', 'king'), ('em-', 'em'), ('Rev-', 'Rev')] PUR19170906-V17-05-page3.txt: [('so-', 'so'), ('mission-', 'mission'), ('-', ''), ('---', '--'), ('Ails-', 'Ails'), ('Broth-', 'Broth')] PUR19170906-V17-05-page4.txt: [('con-', 'con')] PUR19170906-V17-05-page5.txt: [('hun-', 'hun'), ('-With', 'With'), ('-', '')] PUR19170906-V17-05-page6.txt: [('Revela-', 'Revela'), ('class-', 'class'), ('of-', 'of'), ('liter-', 'liter'), ('-', ''), ('Seventh-', 'Seventh'), ('seven-', 'seven'), ('al-', 'al')] PUR19170906-V17-05-page7.txt: [('fur-', 'fur'), ('an-', 'an'), ('Sale.-', 'Sale.'), ('-place', 'place'), ('Advent-', 'Advent'), ('Madi-', 'Madi'), ('-B.', 'B.')] PUR19170906-V17-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-A.', 'A.'), ('-', ''), ('attend-', 'attend'), ('Mc-', 'Mc'), ('Freder-', 'Freder'), ('cer-', 'cer'), ('mqn-', 'mqn'), ('reg-', 'reg'), ('-', ''), ('-', ''), ('-', '')] PUR19170913-V17-06-page1.txt: [('be-', 'be'), ('com-', 'com'), ('trib-', 'trib'), ('ap-', 'ap'), ('Lough-', 'Lough'), ('--G.-..W.', '-G.-..W.'), ('at-', 'at')] PUR19170913-V17-06-page2.txt: [('sur-', 'sur'), ('herfaith-', 'herfaith'), ('An-', 'An'), ('-', ''), ('-', ''), ('proclaimin-', 'proclaimin'), ('-the', 'the'), ('under-', 'under'), ('includ-', 'includ'), ('-And', 'And'), ('la-', 'la'), ('Fran-', 'Fran'), ('-she', 'she'), ('ac-', 'ac'), ('Brit-', 'Brit'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('sur-', 'sur'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19170913-V17-06-page3.txt: [('Sev-', 'Sev'), ('to-', 'to'), ('can-', 'can'), ('ex-', 'ex'), ('"Re-', '"Re'), ('confer-', 'confer'), ('-Indies.', 'Indies.'), ('Wanted-', 'Wanted'), ('-Every', 'Every'), ('thir-', 'thir')] PUR19170913-V17-06-page4.txt: [('obliga-', 'obliga'), ('ed-', 'ed'), ('es-', 'es'), ('lit-', 'lit')] PUR19170913-V17-06-page5.txt: [('carrypart-', 'carrypart'), ('mail-', 'mail'), ('Confer-', 'Confer'), ('-nessage.', 'nessage.'), ('mission-', 'mission'), ('con-', 'con')] PUR19170913-V17-06-page6.txt: [('-cent', 'cent'), ('An-', 'An'), ('o-', 'o'), ('SaIe.-', 'SaIe.'), ('ex-', 'ex')] PUR19170913-V17-06-page7.txt: [('la-', 'la'), ('pas-', 'pas'), ('twen-', 'twen'), ('permit-', 'permit'), ('A-', 'A'), ('--', '-'), ('his-', 'his'), ('-', ''), ('num-', 'num')] PUR19170913-V17-06-page8.txt: [('tdt-', 'tdt'), ('-', ''), ('El-', 'El'), ('CONFER-', 'CONFER'), ('-edition', 'edition'), ('ioripuiciomv-', 'ioripuiciomv'), ('-.', '.'), ('gain-', 'gain')] PUR19170920-V17-07-page1.txt: [('-', ''), ('-etinkt', 'etinkt'), ('-word', 'word'), ('car-', 'car'), ('deserv-', 'deserv'), ('-the', 'the'), ('-of-', 'of-')] PUR19170920-V17-07-page2.txt: [('mil-', 'mil'), ('-', ''), ('right-', 'right'), ('-cent', 'cent'), ('-aweek', 'aweek'), ('ca-', 'ca'), ('parent-', 'parent'), ('-cent-a-week', 'cent-a-week'), ('mat-', 'mat'), ('-up', 'up')] PUR19170920-V17-07-page3.txt: [('emi-', 'emi'), ('ac-', 'ac'), ('com-', 'com')] PUR19170920-V17-07-page4.txt: [('-', ''), ('Tay-', 'Tay'), ('Oth-', 'Oth'), ('that-', 'that'), ('--', '-'), ('start-', 'start'), ('Jesus.-', 'Jesus.')] PUR19170920-V17-07-page5.txt: [('earn-', 'earn'), ('be-', 'be'), ('de-', 'de'), ('Mes-', 'Mes'), ('defin-', 'defin')] PUR19170920-V17-07-page6.txt: [('anx-', 'anx'), ('con-', 'con'), ('re-', 're'), ('ex-', 'ex'), ('-Brother', 'Brother'), ('Me-', 'Me'), ('do-', 'do')] PUR19170920-V17-07-page7.txt: [('Sani-', 'Sani'), ('com-', 'com'), ('be-', 'be'), ('-', ''), ('-U.S.inP.', 'U.S.inP.')] PUR19170920-V17-07-page8.txt: [('-', ''), ('Pa-', 'Pa'), ('Thous-', 'Thous'), ('-', ''), ('-', ''), ('CONFER-', 'CONFER'), ('gw-Prviwiror-orw-', 'gw-Prviwiror-orw'), ('.-', '.'), ('.-', '.'), ('con-', 'con'), ('-', ''), ('suc-', 'suc'), ('-', '')] PUR19170927-V17-08-page1.txt: [('-', ''), ('-', ''), ('com-', 'com'), ('-words', 'words'), ('be-', 'be')] PUR19170927-V17-08-page3.txt: [('pro-', 'pro'), ('preach-', 'preach'), ('be-', 'be'), ('often-', 'often'), ('-', ''), ('-services', 'services')] PUR19170927-V17-08-page4.txt: [('Eu-', 'Eu'), ('inter-', 'inter'), ('fin-', 'fin'), ('Broth-', 'Broth'), ('in-', 'in'), ('-', '')] PUR19170927-V17-08-page5.txt: [('vol-', 'vol'), ('state-', 'state'), ('mem-', 'mem'), ('or-', 'or'), ('morn-', 'morn'), ('con-', 'con')] PUR19170927-V17-08-page6.txt: [('plan-', 'plan'), ('offer-', 'offer'), ('ad-', 'ad'), ('hand.-', 'hand.')] PUR19170927-V17-08-page7.txt: [('R-', 'R'), ('Sab-', 'Sab'), ('do-', 'do'), ('methods.-', 'methods.'), ('Sanitar-', 'Sanitar'), ('An-', 'An'), ('edu-', 'edu'), ('Sani-', 'Sani'), ('or-', 'or'), ('Advent-', 'Advent')] PUR19170927-V17-08-page8.txt: [('-', ''), ('He-', 'He'), ('How-', 'How'), ('re-', 're'), ('-', ''), ('-', ''), ('fre-', 'fre'), ('Sunday-Sab-', 'Sunday-Sab'), ('CONFER-', 'CONFER')] PUR19171004-V17-09-page1.txt: [('navi-', 'navi')] PUR19171004-V17-09-page2.txt: [('Som-', 'Som'), ('ce-', 'ce')] PUR19171004-V17-09-page3.txt: [('north-', 'north'), ('toim-', 'toim'), ('col-', 'col')] PUR19171004-V17-09-page4.txt: [('be-', 'be'), ('stu-', 'stu'), ('re-', 're')] PUR19171004-V17-09-page5.txt: [('-', ''), ('fu-', 'fu'), ('excite-', 'excite'), ('of-', 'of')] PUR19171004-V17-09-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('treas-', 'treas')] PUR19171004-V17-09-page7.txt: [('lir-', 'lir'), ('-', ''), ('-', ''), ('in-', 'in'), ('en-', 'en'), ('re-', 're'), ('com-', 'com'), ('de-', 'de')] PUR19171004-V17-09-page8.txt: [('Con-', 'Con'), ('-', ''), ('-', ''), ('-', ''), ('Hele-', 'Hele'), ('-the', 'the'), ('CONFER-', 'CONFER'), ('-', ''), ('Mac-', 'Mac')] PUR19171011-V17-10-page1.txt: [('labor-', 'labor'), ('instruc-', 'instruc'), ('confer-', 'confer'), ('-Park', 'Park')] PUR19171011-V17-10-page2.txt: [('-fund', 'fund'), ('opportu-', 'opportu')] PUR19171011-V17-10-page3.txt: [('arrange-', 'arrange'), ('re-', 're'), ('-per', 'per'), ('ar-', 'ar'), ('direc-', 'direc'), ('for-', 'for')] PUR19171011-V17-10-page4.txt: [('associat-', 'associat'), ('exper-', 'exper'), ('Farns-', 'Farns'), ('-', ''), ('Confer-', 'Confer')] PUR19171011-V17-10-page5.txt: [('Le-', 'Le'), ('Bag-', 'Bag'), ('-etentive', 'etentive'), ('In-', 'In'), ('-ion', 'ion'), ('attend-', 'attend'), ('interest-', 'interest')] PUR19171011-V17-10-page6.txt: [('Hins-', 'Hins'), ('"Re-', '"Re'), ('con-', 'con'), ('expres-', 'expres')] PUR19171011-V17-10-page7.txt: [('open-', 'open'), ('"Re-', '"Re'), ('in-', 'in'), ('ex-', 'ex'), ('Sani-', 'Sani')] PUR19171011-V17-10-page8.txt: [('-', ''), ('con-', 'con'), ('con-', 'con'), ('interest-', 'interest')] PUR19171018-V17-11-page1.txt: [('-W', 'W'), ('-', ''), ('-', ''), ('-', ''), ('great-', 'great'), ('con-', 'con'), ('pre-', 'pre'), ('ap-', 'ap')] PUR19171018-V17-11-page2.txt: [('col-', 'col'), ('mis-', 'mis')] PUR19171018-V17-11-page3.txt: [('peo-', 'peo'), ('addi-', 'addi')] PUR19171018-V17-11-page4.txt: [('-', '')] PUR19171018-V17-11-page5.txt: [('twenty-cent-a-', 'twenty-cent-a')] PUR19171018-V17-11-page6.txt: [('-', ''), ('"col-', '"col'), ('classi-', 'classi'), ('about-', 'about'), ('colle-', 'colle')] PUR19171018-V17-11-page7.txt: [('hard-', 'hard'), ('cus-', 'cus'), ('per-', 'per')] PUR19171018-V17-11-page8.txt: [('-', ''), ('liv-', 'liv'), ('prob-', 'prob'), ('-', ''), ('-', ''), ('mission-', 'mission'), ('Cali-', 'Cali'), ('Be-', 'Be')] PUR19171025-V17-12-page1.txt: [('follow-', 'follow'), ('peo-', 'peo'), ('con-', 'con'), ('prom-', 'prom'), ('Vent-', 'Vent'), ('-missionary', 'missionary'), ('-people', 'people'), ('-Harvest', 'Harvest'), ('Ingatherbig.-', 'Ingatherbig.'), ('Con-', 'Con')] PUR19171025-V17-12-page2.txt: [('mem-', 'mem'), ('op-', 'op'), ('di-', 'di'), ('Wed-', 'Wed'), ('litera-', 'litera'), ('auto-', 'auto'), ('ques-', 'ques'), ('mis-', 'mis'), ('move-', 'move')] PUR19171025-V17-12-page3.txt: [('ev-', 'ev'), ('con-', 'con')] PUR19171025-V17-12-page4.txt: [('inno-', 'inno'), ('bat-', 'bat'), ('regu-', 'regu'), ('govern-', 'govern'), ('advan-', 'advan'), ('danger-', 'danger'), ('protect-', 'protect')] PUR19171025-V17-12-page5.txt: [('receiv-', 'receiv'), ('of-', 'of'), ('correspond-', 'correspond'), ('read-', 'read'), ('circu-', 'circu'), ('cardi-', 'cardi'), ('-', ''), ('min-', 'min'), ('-pastor--', 'pastor--'), ('-explain', 'explain'), ('-it', 'it'), ('-his', 'his'), ('congregationand--', 'congregationand-'), ('-them', 'them'), ('-asthey', 'asthey')] PUR19171025-V17-12-page6.txt: [('Volun-', 'Volun'), ('Bap-', 'Bap'), ('Porter-', 'Porter'), ('ap-', 'ap'), ('Oc-', 'Oc'), ('in-', 'in'), ('Oc-', 'Oc'), ('hear-', 'hear'), ('pub-', 'pub'), ('en-', 'en')] PUR19171025-V17-12-page7.txt: [('de-', 'de'), ('breth-', 'breth'), ('Perma-', 'Perma'), ('dishwash-', 'dishwash')] PUR19171025-V17-12-page8.txt: [('evange-', 'evange'), ('-', ''), ('-', ''), ('-', ''), ('ser-', 'ser'), ('intel-', 'intel'), ('mes-', 'mes'), ('procla-', 'procla')] PUR19171101-V17-13-page1.txt: [('-r', 'r'), ('im-', 'im'), ('represent-', 'represent'), ('-Review"', 'Review"'), ('ed-', 'ed'), ('-this', 'this'), ('Mis-', 'Mis'), ('-Do', 'Do')] PUR19171101-V17-13-page2.txt: [('pa-', 'pa'), ('de-', 'de'), ('"Re-', '"Re')] PUR19171101-V17-13-page3.txt: [('ev-', 'ev'), ('per-', 'per'), ('read-', 'read'), ('-', ''), ('-cent', 'cent'), ('-', ''), ('"Re-', '"Re')] PUR19171101-V17-13-page4.txt: [('PACIFIC-', 'PACIFIC'), ('cherish-', 'cherish'), ('with-', 'with'), ('eon-', 'eon')] PUR19171101-V17-13-page5.txt: [('dan-', 'dan'), ('abil-', 'abil'), ('in-', 'in'), ('Dieffen-', 'Dieffen'), ('examina-', 'examina')] PUR19171101-V17-13-page6.txt: [('Ger-', 'Ger'), ('fun-', 'fun'), ('In-', 'In'), ('them-', 'them'), ('Pali-', 'Pali'), ('In-', 'In'), ('re-', 're'), ('C-', 'C')] PUR19171101-V17-13-page7.txt: [('-Opportunity', 'Opportunity'), ('Sanitari-', 'Sanitari'), ('-', ''), ('-', ''), ('East-', 'East'), ("'Loa-", "'Loa"), ('immediate-', 'immediate'), ('-Eider', 'Eider'), ('liter-', 'liter'), ('Wil-', 'Wil'), ('-', ''), ('-', ''), ('two-', 'two'), ('a-T."P-', 'a-T."P'), ('-', '')] PUR19171101-V17-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-nd', 'nd')] PUR19171108-V17-14-page1.txt: [('-Box', 'Box'), ('-E.', 'E.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-B.', 'B.'), ('-', ''), ('-E.', 'E.'), ('liv-', 'liv'), ('-', ''), ('sub-', 'sub')] PUR19171108-V17-14-page2.txt: [('regard-', 'regard'), ('-', ''), ('Cam-', 'Cam')] PUR19171108-V17-14-page3.txt: [('return-', 'return'), ('ex-', 'ex'), ('em-', 'em'), ('-thatthe', 'thatthe'), ('ac-', 'ac'), ('be-', 'be')] PUR19171108-V17-14-page4.txt: [('--FIELD', '-FIELD'), ('G"AS--', 'G"AS-'), ('-', ''), ('meet-', 'meet')] PUR19171108-V17-14-page5.txt: [('N-', 'N'), ('Univer-', 'Univer'), ('yea-', 'yea'), ('Ed-', 'Ed'), ('Cal-', 'Cal'), ('Mon-', 'Mon'), ("-work'", "work'"), ('--short', '-short'), ('for-', 'for'), ('-strong', 'strong')] PUR19171108-V17-14-page6.txt: [('al-', 'al'), ('Returning-', 'Returning'), ('Proc-', 'Proc'), ('r-', 'r'), ('encourag-', 'encourag'), ('pre-', 'pre'), ('sani-', 'sani'), ('Sale.-', 'Sale.')] PUR19171108-V17-14-page7.txt: [('-', ''), ('rza-', 'rza'), ('-', ''), ('-drawing.', 'drawing.'), ('-to', 'to'), ('nrany-', 'nrany'), ('week.-', 'week.')] PUR19171108-V17-14-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Ec-', 'Ec'), ('govern-', 'govern'), ('un-', 'un'), ('train-', 'train')] PUR19171115-V17-15-page1.txt: [('funds.-', 'funds.'), ('contempla-', 'contempla'), ('-the', 'the'), ('deep-', 'deep'), ('whet-', 'whet'), ('-', ''), ('mes-', 'mes'), ('-i', 'i'), ('-life', 'life'), ('-that', 'that'), ('-', '')] PUR19171115-V17-15-page2.txt: [('beg-', 'beg'), ('DE-', 'DE'), ('num-', 'num'), ('Nel-', 'Nel')] PUR19171115-V17-15-page3.txt: [('re-', 're'), ('ex-', 'ex'), ('-Others', 'Others'), ('Campaign-', 'Campaign'), ('Inter-', 'Inter'), ('es-', 'es')] PUR19171115-V17-15-page4.txt: [('ef-', 'ef'), ('rust-', 'rust'), ('ex-', 'ex'), ('broth-', 'broth'), ('be-', 'be')] PUR19171115-V17-15-page5.txt: [('com-', 'com'), ('re-', 're'), ('ef-', 'ef'), ('Seventh-', 'Seventh'), ('-', '')] PUR19171115-V17-15-page6.txt: [('super-', 'super'), ('stu-', 'stu'), ('stu-', 'stu'), ('Un-', 'Un'), ('attend-', 'attend'), ('-Sec.', 'Sec.')] PUR19171115-V17-15-page7.txt: [('grow-', 'grow'), ('-fiveyears', 'fiveyears'), ('Ad-', 'Ad'), ('-at-', 'at-'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('-', '')] PUR19171115-V17-15-page8.txt: [('fev-', 'fev'), ('-', ''), ('-Sabbath', 'Sabbath'), ('-', ''), ('-', ''), ('pat-', 'pat'), ('Minnea-', 'Minnea'), ('or-', 'or'), ('ac-', 'ac'), ('as-', 'as'), ('cooper-', 'cooper'), ('no-', 'no'), ('-This', 'This')] PUR19171122-V17-16-page1.txt: [('ar-', 'ar'), ('Bibli-', 'Bibli'), ('cosmo-', 'cosmo'), ('notwithstand-', 'notwithstand'), ('well-', 'well'), ('-at', 'at'), ('-if', 'if'), ('-of', 'of')] PUR19171122-V17-16-page2.txt: [('TIDINGS-', 'TIDINGS'), ('pleas-', 'pleas'), ('lim-', 'lim')] PUR19171122-V17-16-page3.txt: [('Sever-', 'Sever'), ('No-', 'No')] PUR19171122-V17-16-page4.txt: [('offer-', 'offer'), ('baptis-', 'baptis')] PUR19171122-V17-16-page5.txt: [('Sab-', 'Sab')] PUR19171122-V17-16-page6.txt: [('ex-', 'ex')] PUR19171122-V17-16-page7.txt: [('as-', 'as'), ('nu-', 'nu'), ('deep-', 'deep'), ('in-', 'in'), ('Jenks--', 'Jenks-'), ('-', '')] PUR19171122-V17-16-page8.txt: [('-', ''), ('sup-', 'sup'), ('-', ''), ('-', ''), ('-', ''), ('prac-', 'prac'), ('"Re-', '"Re'), ('de-', 'de'), ('pres-', 'pres'), ('our-', 'our'), ('relish-', 'relish'), ('bulle-', 'bulle'), ('per-', 'per')] PUR19171129-V17-17-page1.txt: [('ex-', 'ex'), ('librar-', 'librar'), ('unprecedent-', 'unprecedent'), ('-by', 'by'), ('His-', 'His'), ('combina-', 'combina'), ('col-', 'col'), ('gen-', 'gen'), ('fulfill-', 'fulfill'), ('Be-', 'Be'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('publish-', 'publish'), ('prac-', 'prac'), ('-', '')] PUR19171129-V17-17-page2.txt: [('-', ''), ('-', ''), ('pro-', 'pro'), ('-no', 'no'), ('fol-', 'fol'), ('oth-', 'oth'), ('con-', 'con')] PUR19171129-V17-17-page3.txt: [('teach-', 'teach'), ('teach-', 'teach'), ('un-', 'un'), ('Han-', 'Han'), ('Han-', 'Han')] PUR19171129-V17-17-page4.txt: [('-', ''), ('-Cent-a-Week', 'Cent-a-Week'), ('Sab-', 'Sab'), ('send-', 'send'), ('ex-', 'ex'), ('-been', 'been')] PUR19171129-V17-17-page5.txt: [('prac-', 'prac'), ('includ-', 'includ'), ('Phy-', 'Phy'), ('to-', 'to'), ('-books', 'books'), ('-have', 'have'), ('Year-', 'Year'), ('"Steps-', '"Steps'), ('--Ohrist', '-Ohrist'), ('-With', 'With'), ('-ether"', 'ether"')] PUR19171129-V17-17-page6.txt: [('pur-', 'pur'), ('-', ''), ('re-', 're'), ('meet-', 'meet'), ('plan-', 'plan'), ('ser-', 'ser')] PUR19171129-V17-17-page7.txt: [('-three', 'three'), ('-within', 'within'), ('--', '-'), ('cham-', 'cham'), ('Hick-', 'Hick'), ('secre-', 'secre'), ('trum-', 'trum')] PUR19171129-V17-17-page8.txt: [('-', ''), ('-', ''), ('move-', 'move'), ('ap-', 'ap'), ('-per-', 'per-'), ('cit-', 'cit'), ('-', '')] PUR19171206-V17-18-page1.txt: [('Gener-', 'Gener'), ('-undertakings', 'undertakings'), ('cheer-', 'cheer'), ('benevol-', 'benevol'), ('self-sacri-', 'self-sacri'), ('ex-', 'ex')] PUR19171206-V17-18-page2.txt: [('ob-', 'ob'), ('Harv-', 'Harv'), ('subscrib-', 'subscrib')] PUR19171206-V17-18-page3.txt: [('-', ''), ('con-', 'con'), ('meas-', 'meas'), ('deteriora-', 'deteriora'), ('pur-', 'pur'), ('-God', 'God'), ('-', ''), ('-', ''), ('sugges-', 'sugges'), ('-', ''), ('-to', 'to'), ('make-', 'make'), ('-a', 'a'), ("-'for", "'for"), ('de-', 'de')] PUR19171206-V17-18-page4.txt: [('in-', 'in'), ('demonstra-', 'demonstra'), ('al-', 'al'), ('Sab-', 'Sab'), ('chil-', 'chil')] PUR19171206-V17-18-page5.txt: [('ta-', 'ta'), ('-ice', 'ice'), ('sur-', 'sur'), ('re-', 're'), ('as-', 'as'), ('prac-', 'prac'), ('let-', 'let'), ('an-', 'an'), ('re-', 're'), ('pro-', 'pro'), ('El-', 'El'), ('ser-', 'ser')] PUR19171206-V17-18-page6.txt: [('faith-', 'faith'), ('-', '')] PUR19171206-V17-18-page7.txt: [('mes-', 'mes'), ('Buckminister.-', 'Buckminister.')] PUR19171206-V17-18-page8.txt: [('interest-', 'interest'), ('il-', 'il'), ('-', ''), ('-', ''), ('Pa-', 'Pa'), ('con-', 'con')] PUR19171213-V17-19-page1.txt: [('Ad-', 'Ad'), ('en-', 'en'), ('-and', 'and'), ('verba-', 'verba'), ('Advent-', 'Advent')] PUR19171213-V17-19-page2.txt: [('love.-', 'love.'), ('-foot', 'foot'), ('prohibit-', 'prohibit'), ('op-', 'op')] PUR19171213-V17-19-page3.txt: [('P-', 'P'), ('-tT', 'tT'), ('message-', 'message'), ('-difficulty', 'difficulty'), ('do-', 'do')] PUR19171213-V17-19-page4.txt: [('cour-', 'cour'), ('attract-', 'attract')] PUR19171213-V17-19-page5.txt: [('teach-', 'teach'), ('-from', 'from'), ('This-', 'This'), ('-"ray-"', '"ray-"'), ('and--', 'and-'), ('re-', 're'), ('some-', 'some')] PUR19171213-V17-19-page6.txt: [('ev-', 'ev'), ('cri-', 'cri'), ('def-', 'def'), ('canvass-', 'canvass'), ('at-', 'at')] PUR19171213-V17-19-page8.txt: [('An-', 'An'), ('tem-', 'tem'), ('-', ''), ('un-', 'un'), ('stagger-', 'stagger'), ('obed-', 'obed'), ('Redeem-', 'Redeem'), ('Of-', 'Of')] PUR19171220-V17-20-page1.txt: [('ad-', 'ad'), ('encourag-', 'encourag'), ('Pain-', 'Pain'), ('offer-', 'offer')] PUR19171220-V17-20-page3.txt: [('Broth-', 'Broth'), ('them-', 'them'), ("'Watch-", "'Watch"), ('Mac-', 'Mac')] PUR19171220-V17-20-page4.txt: [('Cal-', 'Cal'), ('pub-', 'pub'), ('lim-', 'lim'), ('-', ''), ('subscrip-', 'subscrip')] PUR19171220-V17-20-page5.txt: [('be-', 'be'), ('test-', 'test'), ('camp-meet-', 'camp-meet'), ('late-', 'late'), ('meet-', 'meet'), ('-takes', 'takes'), ('-efforts', 'efforts'), ('-the', 'the')] PUR19171220-V17-20-page6.txt: [('accept-', 'accept'), ('im-', 'im'), ('finan-', 'finan'), ('-our', 'our'), ('pur-', 'pur')] PUR19171220-V17-20-page7.txt: [('-', ''), ('Advent-', 'Advent'), ('a-', 'a')] PUR19171220-V17-20-page8.txt: [('-', ''), ('-', ''), ('represent-', 'represent'), ('un-', 'un'), ('-', ''), ('possi-', 'possi'), ('-', ''), ('-started', 'started'), ('quan-', 'quan'), ('subscrib-', 'subscrib')] PUR19171227-V17-21-page1.txt: [('be-', 'be'), ('ac-', 'ac')] PUR19171227-V17-21-page2.txt: [('-', ''), ('-RE', 'RE'), ('-', ''), ('-heartiest', 'heartiest'), ('be-', 'be'), ('at-', 'at'), ('op-', 'op'), ('pre-', 'pre'), ('ev-', 'ev'), ('re-', 're'), ('defi-', 'defi')] PUR19171227-V17-21-page3.txt: [('-begin', 'begin'), ('impossi-', 'impossi'), ('-perhaps', 'perhaps'), ('ef-', 'ef'), ('unchris-', 'unchris'), ('mis-', 'mis'), ('-is', 'is'), ('-THIRTEENTH', 'THIRTEENTH'), ('neces-', 'neces')] PUR19171227-V17-21-page4.txt: [('re-', 're'), ('teach-', 'teach'), ('dry-', 'dry'), ('in-', 'in'), ('Pali-', 'Pali')] PUR19171227-V17-21-page5.txt: [('-', ''), ('El-', 'El'), ('Ingatherirpa-', 'Ingatherirpa'), ('Jen-', 'Jen'), ('con-', 'con'), ('Eliza-', 'Eliza'), ('bet-', 'bet'), ('yield-', 'yield'), ('Fri-', 'Fri'), ('Gel-', 'Gel')] PUR19171227-V17-21-page6.txt: [('attend-', 'attend'), ('num-', 'num'), ('strength-', 'strength'), ('impor-', 'impor'), ('Cali-', 'Cali'), ('lead-', 'lead'), ('con-', 'con'), ('cotducting-', 'cotducting'), ('in-', 'in'), ('attend-', 'attend')] PUR19171227-V17-21-page7.txt: [('pray-', 'pray'), ('-', ''), ('.....Sini-', '.....Sini'), ('physi-', 'physi'), ('-clan', 'clan'), ('GeorgiaMilier-', 'GeorgiaMilier'), ('-', '')] PUR19171227-V17-21-page8.txt: [('awak-', 'awak'), ('-', ''), ('-', ''), ('-', ''), ('lit-', 'lit'), ('Singa-', 'Singa'), ('-', ''), ('Coun-', 'Coun'), ('imper-', 'imper'), ('Broth-', 'Broth'), ('offer-', 'offer'), ('work-', 'work'), ('extreme-', 'extreme'), ('mis-', 'mis'), ('occa-', 'occa')] PUR19180103-V17-22-page1.txt: [('fin-', 'fin'), ('-which', 'which'), ('com-', 'com')] PUR19180103-V17-22-page2.txt: [('let-', 'let')] PUR19180103-V17-22-page3.txt: [('pre-', 'pre')] PUR19180103-V17-22-page4.txt: [('sub-', 'sub'), ('confer-', 'confer'), ('In-', 'In'), ('Her-', 'Her'), ('sev-', 'sev')] PUR19180103-V17-22-page5.txt: [('-r', 'r'), ('-i', 'i'), ('work-', 'work')] PUR19180103-V17-22-page6.txt: [('hun-', 'hun'), ('dif-', 'dif'), ('oc-', 'oc'), ('permit-', 'permit'), ('num-', 'num')] PUR19180103-V17-22-page7.txt: [('per-', 'per'), ('-', ''), ('Sanita-', 'Sanita'), ('corpo-', 'corpo'), ('con-', 'con')] PUR19180103-V17-22-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('confer-', 'confer'), ('for-', 'for'), ('-spend', 'spend'), ('con-', 'con'), ('im-', 'im')] PUR19180110-V17-23-page1.txt: [('-Then', 'Then'), ('visita-', 'visita'), ('eter-', 'eter'), ('-oast', 'oast'), ('-', '')] PUR19180110-V17-23-page2.txt: [('-', ''), ('.ap--', '.ap-'), ('year--', 'year-'), ('-', ''), ('--', '-'), ('Con-', 'Con'), ('-', ''), ('ex-', 'ex'), ('soon.-', 'soon.'), ('-Ukiah', 'Ukiah'), ('mo-', 'mo'), ('re-', 're'), ('-', ''), ('-Fern-', 'Fern-'), ('dur-', 'dur'), ('-', ''), ("-Will'", "Will'"), ('con-', 'con'), ('-', '')] PUR19180110-V17-23-page3.txt: [('of-', 'of'), ('bap-', 'bap'), ('-', ''), ('twenty-', 'twenty'), ('mem-', 'mem'), ('amount-', 'amount'), ('-This', 'This'), ('C-', 'C'), ('-N', 'N'), ('A-', 'A'), ('-tit', 'tit'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-No', 'No'), ('-', '')] PUR19180110-V17-23-page4.txt: [('Sab-', 'Sab'), ('Bur-', 'Bur'), ('-with', 'with'), ('ex-', 'ex'), ('confi-', 'confi'), ('-', ''), ('pleas-', 'pleas')] PUR19180110-V17-23-page5.txt: [('cour-', 'cour'), ('-', ''), ('mon-', 'mon'), ('re-', 're'), ('in-', 'in'), ('hav-', 'hav'), ('stu-', 'stu')] PUR19180110-V17-23-page6.txt: [('Cal-', 'Cal'), ('-Six', 'Six'), ('Ad-', 'Ad'), ('in-', 'in'), ('-', ''), ('-Cent', 'Cent')] PUR19180110-V17-23-page7.txt: [('-A\'C"I', 'A\'C"I'), ('De-', 'De'), ('new-', 'new'), ('--Contained', '-Contained'), ('-', ''), ('-sale', 'sale'), ('-cent', 'cent'), ('the-', 'the'), ('-issue', 'issue'), ('makes-', 'makes'), ('rem-', 'rem'), ('-', ''), ('--', '-'), ('the-', 'the'), ('--are-carrying', '-are-carrying'), ("-'nationaliti", "'nationaliti"), ('dare-Allan-', 'dare-Allan'), ('-', ''), ('--', '-'), ('-', ''), ('California-', 'California'), ('-', ''), ('-', ''), ('Reese-', 'Reese'), ('AnderSon-', 'AnderSon'), ('-three', 'three'), ('-', ''), ('-', '')] PUR19180110-V17-23-page8.txt: [('-', ''), ('Advent-', 'Advent'), ('-', ''), ('-', ''), ('peri-', 'peri'), ('-', ''), ('de-', 'de')] PUR19180117-V17-24-page1.txt: [('re-', 're'), ('-and', 'and'), ('of-', 'of')] PUR19180117-V17-24-page2.txt: [('-', ''), ('histo-', 'histo'), ('Attain-', 'Attain'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Leaf-', 'Leaf'), ('re-', 're')] PUR19180117-V17-24-page3.txt: [('-Flinn', 'Flinn'), ('-', ''), ('or-', 'or'), ('-thoroughly', 'thoroughly')] PUR19180117-V17-24-page4.txt: [('Cali-', 'Cali'), ('through-', 'through'), ('aver-', 'aver'), ('prob-', 'prob'), ('prev-', 'prev'), ('com-', 'com')] PUR19180117-V17-24-page5.txt: [('-ct', 'ct'), ('-', ''), ('-s', 's'), ('regu-', 'regu'), ('iii-', 'iii')] PUR19180117-V17-24-page6.txt: [('inser-', 'inser'), ('amend-', 'amend')] PUR19180117-V17-24-page7.txt: [('Sanita-', 'Sanita'), ('de-', 'de'), ('funer-', 'funer'), ('Homes.-', 'Homes.'), ('Mark-', 'Mark')] PUR19180117-V17-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('appreciat-', 'appreciat'), ('contri-', 'contri'), ('ho--', 'ho-')] PUR19180124-V17-25-page1.txt: [('provi-', 'provi'), ('Febru-', 'Febru')] PUR19180124-V17-25-page2.txt: [('Con-', 'Con'), ('meet-', 'meet'), ('contri-', 'contri'), ('Con-', 'Con'), ('At-', 'At')] PUR19180124-V17-25-page3.txt: [('be-', 'be'), ('consecrat-', 'consecrat'), ('Ad-', 'Ad')] PUR19180124-V17-25-page4.txt: [('Fund-', 'Fund'), ('-cent', 'cent'), ('pro-', 'pro'), ('build-', 'build'), ('furnish-', 'furnish'), ('-J.', 'J.'), ('ad-', 'ad'), ('seat-', 'seat'), ('mis-', 'mis'), ('en-', 'en')] PUR19180124-V17-25-page5.txt: [('.Nel-', '.Nel'), ('examina-', 'examina'), ('-', ''), ('class-', 'class'), ('se-', 'se'), ('Attain-', 'Attain'), ('-', ''), ('-the', 'the'), ('"Morn-', '"Morn'), ('through-', 'through')] PUR19180124-V17-25-page6.txt: [('plamaingto-', 'plamaingto'), ('-they', 'they'), ('general-', 'general'), ('thir-', 'thir'), ('-no', 'no'), ('of--', 'of-'), ('-Julius', 'Julius'), ('-were', 'were'), ('-as', 'as'), ('var-', 'var'), ('dona-', 'dona'), ('-of', 'of'), ('oth-', 'oth'), ('diffi-', 'diffi'), ('serv-', 'serv'), ('-', ''), ('-', '')] PUR19180124-V17-25-page7.txt: [('lo-', 'lo'), ('Publishing--', 'Publishing-'), ('existing-', 'existing'), ('-', ''), ('-', ''), ('of-', 'of'), ('amend-', 'amend'), ('Pr.-', 'Pr.'), ('Kelsey-', 'Kelsey'), ('en-', 'en')] PUR19180124-V17-25-page8.txt: [('-', ''), ('mem-', 'mem'), ('-', ''), ('-', ''), ('tim-', 'tim'), ('Newfound-', 'Newfound'), ('dis-', 'dis'), ('heartrending-', 'heartrending'), ('mattress-', 'mattress'), ('fami-', 'fami'), ('pres-', 'pres'), ('oth-', 'oth'), ('with-', 'with'), ('espec-', 'espec')] PUR19180131-V17-26-page1.txt: [('-', ''), ('ef-', 'ef'), ('respons-', 'respons'), ('-', ''), ('Ern-', 'Ern'), ('dol-', 'dol')] PUR19180131-V17-26-page2.txt: [('insti-', 'insti'), ('treas-', 'treas')] PUR19180131-V17-26-page3.txt: [('pur-', 'pur')] PUR19180131-V17-26-page4.txt: [('arous-', 'arous'), ('inactiv-', 'inactiv'), ('cot-', 'cot'), ('-of', 'of'), ('experien-', 'experien'), ('re-', 're'), ('ma-', 'ma'), ('dis-', 'dis'), ('meet-', 'meet'), ('improve-', 'improve'), ('-Milton', 'Milton')] PUR19180131-V17-26-page5.txt: [('carry-', 'carry'), ('-but', 'but'), ('con-', 'con'), ('-ct.-a-week', 'ct.-a-week'), ('-', ''), ('-', ''), ('-', ''), ('ef-', 'ef'), ('-cent-a-week', 'cent-a-week')] PUR19180131-V17-26-page6.txt: [('hun-', 'hun'), ('hun-', 'hun'), ('inclu-', 'inclu'), ('im-', 'im'), ('con-', 'con')] PUR19180131-V17-26-page7.txt: [('In-', 'In'), ('years.-', 'years.')] PUR19180131-V17-26-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('preach-', 'preach'), ('Feb-', 'Feb'), ('Train-', 'Train'), ('re-', 're'), ('embarrass-', 'embarrass'), ('ex-', 'ex'), ('con-', 'con'), ('Mag-', 'Mag')] PUR19180207-V17-27-page1.txt: [('ref-', 'ref')] PUR19180207-V17-27-page2.txt: [('-s.', 's.'), ('-', ''), ('Inter-', 'Inter'), ('rela-', 'rela'), ('-', ''), ('-', ''), ('conser-', 'conser')] PUR19180207-V17-27-page3.txt: [('re-', 're'), ('cam-', 'cam'), ('An-', 'An'), ('new-', 'new'), ('Sab-', 'Sab')] PUR19180207-V17-27-page4.txt: [('ad-', 'ad'), ('mak-', 'mak'), ('Sab-', 'Sab'), ('Seventh-', 'Seventh'), ('Arrange-', 'Arrange'), ('attend-', 'attend'), ('in-', 'in')] PUR19180207-V17-27-page5.txt: [('-', ''), ('-c', 'c'), ('secre-', 'secre'), ('--some', '-some')] PUR19180207-V17-27-page6.txt: [("-Recorder'", "Recorder'"), ('in-', 'in')] PUR19180207-V17-27-page7.txt: [('beauti-', 'beauti'), ('Maga-', 'Maga'), ('Nich-', 'Nich'), ('ex-', 'ex')] PUR19180207-V17-27-page8.txt: [('-', ''), ('educa-', 'educa'), ('Confer-', 'Confer'), ('cough-', 'cough'), ('-', ''), ('Mana-', 'Mana'), ('suffer-', 'suffer'), ('heav-', 'heav')] PUR19180214-V17-28-page1.txt: [('-', ''), ('-', ''), ('sol-', 'sol'), ('liter-', 'liter'), ('sub-', 'sub'), ('Lit-', 'Lit'), ('-', '')] PUR19180214-V17-28-page2.txt: [('Ira-', 'Ira'), ('neigh-', 'neigh'), ('after-', 'after'), ('sug-', 'sug'), ('Ingath-', 'Ingath'), ('mis-', 'mis')] PUR19180214-V17-28-page3.txt: [('com-', 'com'), ('peo-', 'peo'), ('in-', 'in'), ('plan-', 'plan'), ('med-', 'med'), ('back-', 'back'), ('Han-', 'Han'), ('Mon-', 'Mon'), ('mission-', 'mission'), ('col-', 'col')] PUR19180214-V17-28-page4.txt: [('the-', 'the'), ('Stand-', 'Stand'), ('peo-', 'peo'), ('re-', 're'), ('cele-', 'cele'), ('Schaff-', 'Schaff'), ('se-', 'se')] PUR19180214-V17-28-page6.txt: [('Audito-', 'Audito'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('let-', 'let'), ('Oak-', 'Oak'), ('pour-', 'pour')] PUR19180221-V17-29-page1.txt: [('forty-', 'forty'), ('com-', 'com'), ('un-', 'un'), ('-', ''), ('an-', 'an'), ('-faith', 'faith')] PUR19180221-V17-29-page10.txt: [('-', ''), ('sin-bur-', 'sin-bur'), ('Danish-', 'Danish'), ('en-', 'en'), ('transla-', 'transla'), ('pre-', 'pre'), ('-page', 'page'), ('ed-', 'ed'), ('Bo-', 'Bo'), ('-foot', 'foot'), ('edi-', 'edi'), ('sev-', 'sev'), ('Ru-', 'Ru'), ('mechan-', 'mechan'), ('equip-', 'equip')] PUR19180221-V17-29-page11.txt: [('"Bi-', '"Bi'), ('work.-', 'work.'), ('work-', 'work'), ('confer-', 'confer'), ('fol-', 'fol'), ('Central-', 'Central'), ('-', ''), ('-', '')] PUR19180221-V17-29-page12.txt: [('-', ''), ('in-', 'in'), ('num-', 'num'), ('suc-', 'suc'), ('in-', 'in'), ('-', ''), ('in-', 'in'), ('.-', '.')] PUR19180221-V17-29-page13.txt: [('confer-', 'confer'), ('circu-', 'circu'), ('-', ''), ('Fel-', 'Fel'), ('-', ''), ('.-', '.'), ('plan-', 'plan'), ('Watch-', 'Watch'), ('defi-', 'defi')] PUR19180221-V17-29-page14.txt: [('-', ''), ('-', ''), ('-', ''), ('enter-', 'enter'), ('-', '')] PUR19180221-V17-29-page15.txt: [('moth-', 'moth'), ('de-', 'de'), ('there-', 'there'), ('Confer-', 'Confer'), ('Cali-', 'Cali'), ('Con-', 'Con'), ('re-', 're'), ('cash-', 'cash'), ('suc-', 'suc'), ('read-', 'read'), ('-the', 'the'), ('Mag-', 'Mag')] PUR19180221-V17-29-page16.txt: [('con-', 'con'), ('pay-', 'pay'), ('-', ''), ('-', ''), ('-', ''), ('Sher-', 'Sher'), ('Febru-', 'Febru'), ('fore-', 'fore'), ('mission-', 'mission'), ('citi-', 'citi'), ('pro-', 'pro'), ('fore-', 'fore'), ('eve-', 'eve')] PUR19180221-V17-29-page2.txt: [('-', ''), ('-royalty', 'royalty'), ('rec-', 'rec'), ('-', ''), ('ex-', 'ex')] PUR19180221-V17-29-page3.txt: [('lan-', 'lan'), ('-', ''), ('Periodical-', 'Periodical'), ('-', ''), ('Canada-', 'Canada'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180221-V17-29-page4.txt: [('-UNjON', 'UNjON')] PUR19180221-V17-29-page5.txt: [('consid-', 'consid'), ('vari-', 'vari'), ('pub-', 'pub'), ('re-', 're'), ('chang-', 'chang')] PUR19180221-V17-29-page6.txt: [('proph-', 'proph'), ('-A', 'A'), ('PON-', 'PON'), ('GO-', 'GO'), ('and-', 'and'), ('-experienced', 'experienced'), ('-shows', 'shows'), ('-', ''), ('dur-', 'dur'), ('-morning', 'morning'), ('aver-', 'aver'), ('-', ''), ('-', ''), ('-', ''), ('-a', 'a'), ('-ton', 'ton'), ('-', ''), ('-', ''), ('repre-', 'repre'), ('-One', 'One')] PUR19180221-V17-29-page7.txt: [('of-', 'of'), ('be-', 'be'), ('re-', 're'), ('espec-', 'espec'), ('in-', 'in'), ('es-', 'es'), ('of-', 'of')] PUR19180221-V17-29-page8.txt: [("-N''T", "N''T"), ('R-', 'R'), ('-', ''), ('-neaking', 'neaking'), ('mil-', 'mil'), ('Coun-', 'Coun')] PUR19180221-V17-29-page9.txt: [('-', ''), ('-C', 'C'), ('Danish-', 'Danish'), ('-copies.', 'copies.'), ('Danish-', 'Danish'), ('Danish-', 'Danish'), ('per-', 'per'), ('na-', 'na'), ('notwith-', 'notwith'), ('-', ''), ('-the.splendid', 'the.splendid'), ('-to', 'to')] PUR19180228-V17-30-page1.txt: [('touch-', 'touch'), ('warn-', 'warn')] PUR19180228-V17-30-page3.txt: [('-', ''), ('ear-', 'ear'), ('oth-', 'oth'), ('dis-', 'dis')] PUR19180228-V17-30-page5.txt: [('people--', 'people-'), ('grad-', 'grad'), ('af-', 'af'), ('ill-', 'ill'), ('-', ''), ('chil-', 'chil'), ('Cas-', 'Cas'), ('-the', 'the'), ('or-', 'or'), ('teach-', 'teach'), ('Attain-', 'Attain'), ('firma-', 'firma'), ('recent-', 'recent')] PUR19180228-V17-30-page6.txt: [('Southeast-', 'Southeast'), ('com-', 'com'), ('twenty-', 'twenty'), ('ex-', 'ex'), ('"Re-', '"Re')] PUR19180228-V17-30-page7.txt: [('oppo-', 'oppo'), ('An-', 'An'), ('cur-', 'cur'), ('-roves', 'roves'), ('-', '')] PUR19180228-V17-30-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('Sev-', 'Sev'), ('of-', 'of'), ('Represen-', 'Represen'), ('pre-', 'pre'), ('-', ''), ('Hay-', 'Hay'), ('-year-old', 'year-old'), ('Ne-', 'Ne'), ('So-', 'So'), ('Rob-', 'Rob')] PUR19180307-V17-31-page1.txt: [('after-', 'after'), ('privi-', 'privi'), ('lo-', 'lo'), ('confer-', 'confer'), ('es-', 'es'), ('Mori-', 'Mori'), ('comfort-', 'comfort')] PUR19180307-V17-31-page2.txt: [('bap-', 'bap'), ('meet-', 'meet'), ('work-', 'work'), ('Califor-', 'Califor'), ('Pasa-', 'Pasa'), ('ac-', 'ac'), ('ren-', 'ren')] PUR19180307-V17-31-page3.txt: [('-', ''), ('quar-', 'quar'), ('commit-', 'commit'), ('litera-', 'litera'), ('Seventh-', 'Seventh')] PUR19180307-V17-31-page4.txt: [('fill-', 'fill'), ('so-', 'so'), ('Glen-', 'Glen'), ('Han-', 'Han')] PUR19180307-V17-31-page5.txt: [('-UNION', 'UNION'), ('para-', 'para'), ('ask-', 'ask'), ('mis-', 'mis'), ('report-', 'report'), ('ta-', 'ta'), ('-', ''), ('-', ''), ('read-', 'read'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-year', 'year'), ('-more', 'more'), ('move-', 'move')] PUR19180307-V17-31-page6.txt: [('col-', 'col'), ('-', ''), ('righte-', 'righte'), ('wick-', 'wick')] PUR19180307-V17-31-page7.txt: [('En-', 'En'), ('-Daniells', 'Daniells'), ('An-', 'An'), ('cor-', 'cor'), ('fre-', 'fre'), ('Volun-', 'Volun'), ('"Pacif-', '"Pacif'), ('sol-', 'sol'), ('meet-', 'meet')] PUR19180307-V17-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('oc-', 'oc'), ('lo-', 'lo'), ('Confer-', 'Confer'), ('mat-', 'mat'), ('Ad-', 'Ad')] PUR19180314-V17-32-page1.txt: [('mis-', 'mis'), ('hay-', 'hay'), ('mat-', 'mat')] PUR19180314-V17-32-page2.txt: [('tak-', 'tak'), ('-', ''), ('Sall-', 'Sall'), ('-', ''), ('re-', 're'), ('consider-', 'consider'), ('mis-', 'mis')] PUR19180314-V17-32-page3.txt: [('plac-', 'plac'), ('con-', 'con'), ('disor-', 'disor'), ('-', ''), ('work-', 'work'), ('for-', 'for')] PUR19180314-V17-32-page4.txt: [('vis-', 'vis'), ('demonstra-', 'demonstra'), ('en-', 'en'), ('"Watch-', '"Watch'), ('-finds', 'finds'), ('The-', 'The'), ('-children.', 'children.'), ('-', ''), ('mis-', 'mis'), ("'com-", "'com"), ('-Hall', 'Hall')] PUR19180314-V17-32-page5.txt: [('renew-', 'renew'), ('-had', 'had'), ('col-', 'col'), ('-first', 'first'), ('-year', 'year'), ('-', ''), ('-for', 'for'), ('-Our', 'Our'), ('-this', 'this'), ('at-', 'at'), ('-', '')] PUR19180314-V17-32-page6.txt: [('ser-', 'ser'), ('encottrag-', 'encottrag'), ('-', ''), ('faith-', 'faith')] PUR19180314-V17-32-page7.txt: [('-bei', 'bei'), ('cor-', 'cor'), ('UNION-', 'UNION'), ('-pound', 'pound'), ('au-', 'au'), ('attrac-', 'attrac'), ('-', ''), ('Glen-', 'Glen')] PUR19180314-V17-32-page8.txt: [('-', ''), ('Lar-', 'Lar'), ('un-', 'un'), ('Fer-', 'Fer')] PUR19180321-V17-33-page1.txt: [('ex-', 'ex'), ('-', ''), ('-Often', 'Often'), ('-Vc', 'Vc'), ('Ae.--', 'Ae.-'), ('-', '')] PUR19180321-V17-33-page2.txt: [('-RECORDER', 'RECORDER'), ('-many', 'many'), ('been-', 'been'), ('and.-', 'and.'), ('-hoping', 'hoping'), ('stand-', 'stand'), ('-magazine', 'magazine'), ('cur-', 'cur'), ('-quite', 'quite'), ('print-', 'print'), ('-"In', '"In'), ('-But', 'But'), ('-', ''), ('been-', 'been'), ('-suceehs', 'suceehs'), ('-feel', 'feel'), ('meetings.-', 'meetings.'), ('-keep', 'keep'), ('-believe', 'believe'), ('bless-', 'bless'), ('-crisis', 'crisis'), ('-our', 'our')] PUR19180321-V17-33-page3.txt: [('suc-', 'suc'), ('Gen-', 'Gen'), ('ex-', 'ex')] PUR19180321-V17-33-page4.txt: [('Broth-', 'Broth'), ('-', ''), ('Member-', 'Member'), ('-to', 'to'), ('sev-', 'sev')] PUR19180321-V17-33-page5.txt: [('Mis-', 'Mis'), ('-', ''), ('pre-', 'pre'), ('Chris-', 'Chris'), ('fel-', 'fel')] PUR19180321-V17-33-page6.txt: [('meet-', 'meet'), ('espec-', 'espec')] PUR19180321-V17-33-page7.txt: [('cor-', 'cor'), ('au-', 'au'), ('attrac-', 'attrac'), ('-Jose', 'Jose'), ('Su-', 'Su'), ('Glen-', 'Glen'), ('dale-', 'dale'), ('Acade-', 'Acade'), ('Cali-', 'Cali'), ('An-', 'An'), ('constitu-', 'constitu'), ('Evan-', 'Evan'), ('Febru-', 'Febru'), ('--For', '-For'), ('El-', 'El'), ('-pound', 'pound')] PUR19180321-V17-33-page8.txt: [('Ad-', 'Ad'), ('-', ''), ('-', ''), ('-', ''), ('pub-', 'pub'), ('neigh-', 'neigh')] PUR19180328-V17-34-page1.txt: [('-', ''), ('-Conard-', 'Conard-'), ('-M.', 'M.'), ('-at', 'at'), ('-triPoSsiblelfor', 'triPoSsiblelfor'), ('-', ''), ('.An-', '.An')] PUR19180328-V17-34-page2.txt: [('-', ''), ('Melchise-', 'Melchise'), ('Twenty-five-Cent-a-', 'Twenty-five-Cent-a'), ('-n-.', 'n-.'), ('con-', 'con'), ('speak-', 'speak'), ('-', ''), ('mag-', 'mag'), ('-', ''), ('-', ''), ('-', ''), ('splen-', 'splen')] PUR19180328-V17-34-page3.txt: [('secre-', 'secre'), ('Con-', 'Con'), ('-', '')] PUR19180328-V17-34-page4.txt: [('-a', 'a'), ('coun-', 'coun'), ('en-', 'en'), ('larg-', 'larg'), ('quar-', 'quar'), ('sani-', 'sani'), ('render-', 'render'), ('lec-', 'lec'), ('-Linda', 'Linda'), ('Bernar-', 'Bernar')] PUR19180328-V17-34-page5.txt: [('-PKCIFI', 'PKCIFI'), ('-', ''), ('-', ''), ('ac-', 'ac'), ('-', ''), ('ev-', 'ev'), ('pri-', 'pri'), ('-', '')] PUR19180328-V17-34-page6.txt: [('sys-', 'sys'), ('usual-', 'usual'), ('dis-', 'dis'), ('Glen-', 'Glen'), ('-in', 'in'), ('ex-', 'ex'), ('Ad-', 'Ad')] PUR19180328-V17-34-page7.txt: [('de-', 'de'), ('-', ''), ('Fu-', 'Fu'), ('Ar-', 'Ar'), ('com-', 'com')] PUR19180328-V17-34-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('writing-', 'writing'), ('acquaint-', 'acquaint'), ('-Jewish', 'Jewish'), ('article-', 'article'), ('great-', 'great'), ('na-', 'na'), ('cop-', 'cop'), ('appreciated.-', 'appreciated.'), ('vi-', 'vi')] PUR19180404-V17-35-page1.txt: [('de-', 'de'), ('-', ''), ('mate-', 'mate'), ('San-', 'San'), ('remain-', 'remain'), ('-', ''), ('-', '')] PUR19180404-V17-35-page2.txt: [('of-', 'of'), ('men-', 'men'), ('effi-', 'effi'), ('re-', 're'), ('guard-', 'guard'), ('treat-', 'treat'), ('treat-', 'treat'), ('depart-', 'depart'), ('co-', 'co'), ('in-', 'in')] PUR19180404-V17-35-page3.txt: [('sur-', 'sur'), ('phy-', 'phy'), ('neces-', 'neces'), ('writ-', 'writ'), ('per-', 'per'), ('fol-', 'fol')] PUR19180404-V17-35-page4.txt: [('-the', 'the'), ('capitals.-', 'capitals.'), ('rep-', 'rep'), ('-Outline', 'Outline'), ('Ad-', 'Ad'), ('-.', '.')] PUR19180404-V17-35-page5.txt: [('communi-', 'communi'), ('-Recorder"', 'Recorder"'), ('-', ''), ('boy-', 'boy'), ('-he', 'he'), ('Su-', 'Su'), ('Tu-', 'Tu'), ('un-', 'un'), ('ser-', 'ser')] PUR19180404-V17-35-page6.txt: [('ar-', 'ar'), ('-', ''), ('ab-', 'ab'), ('-', ''), ('-', ''), ('in-', 'in'), ('Al-', 'Al'), ('wa-', 'wa'), ('wick-', 'wick'), ('De-', 'De'), ('eterni-', 'eterni'), ('his-', 'his'), ('Dan-', 'Dan'), ('pre-', 'pre')] PUR19180411-V17-36-page1.txt: [('ack-', 'ack'), ('pre-', 'pre'), ('main-', 'main')] PUR19180411-V17-36-page2.txt: [('rill.-', 'rill.'), ("-tort'", "tort'"), ('member-', 'member'), ('-', ''), ('.-', '.'), ('-', ''), ('mil-', 'mil'), ('meet-', 'meet')] PUR19180411-V17-36-page3.txt: [('com-', 'com'), ('-out', 'out'), ('-', ''), ('fro-', 'fro'), ('ser-', 'ser'), ('meet-', 'meet')] PUR19180411-V17-36-page4.txt: [('sec-', 'sec'), ('-', ''), ('out-', 'out'), ('an-', 'an'), ('trav-', 'trav'), ('moun-', 'moun'), ('ses-', 'ses'), ('Sab-', 'Sab'), ('ques-', 'ques')] PUR19180411-V17-36-page5.txt: [('PACIFIC-', 'PACIFIC'), ('-ECD', 'ECD'), ('carry-', 'carry'), ('de-', 'de'), ('--this', '-this'), ('-', ''), ('en-', 'en')] PUR19180411-V17-36-page6.txt: [('-articles', 'articles'), ('to-', 'to'), ('-', ''), ('-', ''), ('-', ''), ('short-', 'short'), ('-a', 'a'), ('As-', 'As'), ('num-', 'num'), ('-to', 'to'), ('Parm-', 'Parm')] PUR19180411-V17-36-page7.txt: [('con-', 'con'), ('ac-', 'ac'), ('at-', 'at'), ('inser-', 'inser'), ('-', ''), ('"con-', '"con')] PUR19180411-V17-36-page8.txt: [('-', ''), ('-', ''), ('Confer-', 'Confer'), ('do-', 'do'), ('one-', 'one'), ('-', ''), ('splen-', 'splen'), ('-', ''), ('-', ''), ('-page', 'page'), ('-', ''), ('Gen-', 'Gen'), ('-', ''), ('Meet-', 'Meet')] PUR19180418-V17-37-page1.txt: [('--ireared', '-ireared'), ('North-', 'North'), ('confer-', 'confer'), ('five-', 'five'), ('per-', 'per'), ('-', ''), ('ef-', 'ef'), ('-', ''), ('re-', 're'), ('-i', 'i')] PUR19180418-V17-37-page2.txt: [('wo-', 'wo'), ('pur-', 'pur'), ('-', ''), ('-', ''), ('hydro-', 'hydro'), ('fur-', 'fur'), ('in-', 'in')] PUR19180418-V17-37-page3.txt: [('firm-', 'firm'), ('-page', 'page'), ('convicted--', 'convicted-'), ('-of', 'of'), ('-', ''), ('-', ''), ('socie-', 'socie'), ('in-', 'in'), ('ques-', 'ques')] PUR19180418-V17-37-page4.txt: [('cot-', 'cot'), ('for-', 'for'), ('Asso-', 'Asso'), ('-', ''), ('re-', 're'), ('addi-', 'addi'), ('pro-', 'pro'), ('.-', '.'), ('-', ''), ('Con-', 'Con')] PUR19180418-V17-37-page5.txt: [('carry-', 'carry'), ('im-', 'im'), ('nec-', 'nec'), ('un-', 'un')] PUR19180418-V17-37-page6.txt: [('-', ''), ('un-', 'un'), ('-we', 'we')] PUR19180418-V17-37-page7.txt: [('-RECORDER', 'RECORDER'), ('"min-', '"min')] PUR19180418-V17-37-page8.txt: [('-', ''), ('-', ''), ('be-', 'be'), ('-', ''), ('na-', 'na'), ('put-', 'put'), ('of-', 'of'), ('tem-', 'tem'), ('seat-', 'seat'), ('-Liberty"', 'Liberty"')] PUR19180425-V17-38-page1.txt: [('Another.-', 'Another.'), ('ac-', 'ac'), ('Gam-', 'Gam'), ('lob-', 'lob'), ('per-', 'per'), ('observ-', 'observ'), ('or-', 'or'), ('con-', 'con'), ('Seventh-', 'Seventh'), ('face-', 'face'), ('evangel-', 'evangel')] PUR19180425-V17-38-page2.txt: [('-', ''), ('Vol-', 'Vol'), ('-', ''), ('-', ''), ('legis-', 'legis')] PUR19180425-V17-38-page3.txt: [('Broth-', 'Broth'), ('-is', 'is'), ('Vol-', 'Vol'), ('inter-', 'inter')] PUR19180425-V17-38-page4.txt: [('quart-', 'quart'), ('loca-', 'loca'), ('Mac-', 'Mac'), ('re-', 're'), ('Ange-', 'Ange')] PUR19180425-V17-38-page5.txt: [('Ad-', 'Ad'), ('vis-', 'vis'), ('con-', 'con'), ('Su-', 'Su'), ('sit-', 'sit'), ('Sun-', 'Sun'), ('con-', 'con')] PUR19180425-V17-38-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('cen-', 'cen'), ('ex-', 'ex'), ('dispens-', 'dispens'), ('de-', 'de'), ('-', ''), ('in-', 'in'), ('India-', 'India'), ('vice-pres-', 'vice-pres')] PUR19180502-V17-39-page1.txt: [('-', ''), ('Lil-', 'Lil'), ('regu-', 'regu'), ('whole-', 'whole')] PUR19180502-V17-39-page2.txt: [('re-', 're'), ('sec-', 'sec'), ('consecrated--', 'consecrated-'), ('fur-', 'fur'), ('-the', 'the'), ('ex-', 'ex'), ('oth-', 'oth'), ('cop-', 'cop'), ('his-', 'his'), ('for-', 'for')] PUR19180502-V17-39-page3.txt: [('seek-', 'seek'), ('con-', 'con')] PUR19180502-V17-39-page4.txt: [('-acre', 'acre'), ('fig-', 'fig'), ('twenty-five-cent-a-', 'twenty-five-cent-a')] PUR19180502-V17-39-page5.txt: [('stand-', 'stand'), ('-', ''), ('start-', 'start'), ('Cali-', 'Cali'), ('con-', 'con'), ('ac-', 'ac'), ('Conwe-', 'Conwe'), ('-', ''), ('mem-', 'mem'), ('Con-', 'Con'), ('-', ''), ('Liber-', 'Liber'), ('Sun-', 'Sun')] PUR19180502-V17-39-page7.txt: [('high-', 'high'), ('of-', 'of'), ('en-', 'en')] PUR19180502-V17-39-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('Re-', 'Re'), ('morn-', 'morn'), ('-', ''), ('giv-', 'giv'), ('en-', 'en'), ('message-', 'message'), ('rib-', 'rib'), ('chil-', 'chil'), ('Fran-', 'Fran'), ('-', ''), ('-', '')] PUR19180509-V17-40-page1.txt: [('in-', 'in')] PUR19180509-V17-40-page2.txt: [('-N', 'N'), ('meet-', 'meet'), ('re-', 're'), ('wel-', 'wel')] PUR19180509-V17-40-page3.txt: [('Dieffen-', 'Dieffen'), ('secur-', 'secur'), ('Cal-', 'Cal'), ('dur-', 'dur')] PUR19180509-V17-40-page4.txt: [('con-', 'con'), ('hap-', 'hap'), ('rest-', 'rest')] PUR19180509-V17-40-page5.txt: [('thous-', 'thous'), ('-SOUTHEASTERN', 'SOUTHEASTERN'), ('per-', 'per'), ('Wash-', 'Wash')] PUR19180509-V17-40-page6.txt: [('Bar-', 'Bar'), ('breth-', 'breth')] PUR19180509-V17-40-page7.txt: [('num-', 'num'), ('-inch', 'inch'), ('at-', 'at')] PUR19180509-V17-40-page8.txt: [('Associa-', 'Associa'), ('-', ''), ('-', ''), ('-', ''), ('camp-', 'camp'), ('-', ''), ('-', ''), ('--', '-'), ('I-', 'I'), ('-I', 'I'), ('-', '')] PUR19180516-V17-41-page1.txt: [('uncer-', 'uncer'), ('stu-', 'stu'), ('-', ''), ('partic-', 'partic')] PUR19180516-V17-41-page2.txt: [('-the', 'the')] PUR19180516-V17-41-page3.txt: [('-P.ACTFIC', 'P.ACTFIC'), ('UNION-', 'UNION'), ('REC.O..RDE.R-', 'REC.O..RDE.R'), ('Spic-', 'Spic'), ('-', ''), ('labor-', 'labor'), ('Sis-', 'Sis'), ('ser-', 'ser'), ('en-', 'en'), ('Confer-', 'Confer'), ('Ari-', 'Ari'), ('at-', 'at')] PUR19180516-V17-41-page4.txt: [('UN-ION-', 'UN-ION'), ('-.', '.'), ('cir-', 'cir'), ('-', '')] PUR19180516-V17-41-page5.txt: [('-', ''), ('-will', 'will'), ('rejoice-', 'rejoice'), ('-', ''), ('Ogxger-', 'Ogxger'), ('-', '')] PUR19180516-V17-41-page7.txt: [('patroniz-', 'patroniz'), ('Phil-', 'Phil'), ('Hele-', 'Hele'), ('di-', 'di'), ('Train-', 'Train'), ('prac-', 'prac'), ('-inch', 'inch'), ('Sev-', 'Sev')] PUR19180516-V17-41-page8.txt: [('-', ''), ('Mc-', 'Mc'), ('-', ''), ('-', ''), ('-', '')] PUR19180523-V17-42-page1.txt: [('forc-', 'forc'), ('--Box', '-Box'), ('-Secretary', 'Secretary'), ('-', '')] PUR19180523-V17-42-page2.txt: [('Con-', 'Con'), ('.-', '.'), ('Inter-', 'Inter'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180523-V17-42-page3.txt: [('-', ''), ('-July', 'July')] PUR19180523-V17-42-page4.txt: [('camp-', 'camp'), ('in-', 'in'), ('per-', 'per'), ('the-', 'the'), ('meetfirst-', 'meetfirst'), ('ex-', 'ex'), ('grow-', 'grow')] PUR19180523-V17-42-page5.txt: [('taste-', 'taste'), ('flow-', 'flow'), ('sub-', 'sub'), ('Con-', 'Con'), ('-for', 'for'), ('-a', 'a'), ('vol-', 'vol')] PUR19180523-V17-42-page6.txt: [('-many', 'many'), ('-at', 'at'), ('eve-', 'eve')] PUR19180523-V17-42-page7.txt: [('Sani-', 'Sani'), ('-inch', 'inch')] PUR19180523-V17-42-page8.txt: [('pay-', 'pay'), ('A-', 'A'), ('-', ''), ('-', ''), ('-', ''), ('"Bulle-', '"Bulle'), ('num-', 'num'), ('the-', 'the'), ('-', ''), ('-', ''), ('-', ''), ('date-', 'date'), ('-', ''), ('-', ''), ('-', ''), ('-e', 'e')] PUR19180530-V17-43-page1.txt: [('re-', 're'), ('my-', 'my'), ('exempt-', 'exempt'), ('author-', 'author'), ('tempo-', 'tempo'), ('organiza-', 'organiza'), ('para-', 'para')] PUR19180530-V17-43-page2.txt: [('-military', 'military'), ('ser-', 'ser'), ('-', ''), ('-', ''), ('state-', 'state')] PUR19180530-V17-43-page3.txt: [('read-', 'read'), ('volun-', 'volun'), ('Ex-', 'Ex'), ('valu-', 'valu'), ('-', ''), ('Man-', 'Man'), ('doc-', 'doc'), ('they-', 'they'), ('in-', 'in')] PUR19180530-V17-43-page4.txt: [('peo-', 'peo'), ('at-', 'at'), ('rejoieln-', 'rejoieln'), ('inter-', 'inter'), ('usual-', 'usual'), ('camp-meet-', 'camp-meet'), ('atteirl-', 'atteirl'), ('Cal-', 'Cal'), ('-', ''), ('-or."', 'or."')] PUR19180530-V17-43-page5.txt: [('English-speak-', 'English-speak'), ('with-', 'with'), ('El-', 'El'), ('on-', 'on'), ('camp-', 'camp')] PUR19180530-V17-43-page6.txt: [('-Home', 'Home'), ('Mace-', 'Mace')] PUR19180530-V17-43-page7.txt: [('ma-', 'ma'), ('tim-', 'tim'), ('-advertisement', 'advertisement'), ('-one', 'one'), ('-Twenty', 'Twenty'), ('offi-', 'offi'), ('si-', 'si'), ('-', '')] PUR19180530-V17-43-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('prin-', 'prin'), ('appli-', 'appli'), ('vari-', 'vari'), ('Morn-', 'Morn'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-I-', 'I-'), ('-', ''), ('-', ''), ('.--', '.-'), ('--', '-'), ('-I', 'I'), ('-', '')] PUR19180606-V17-44-page1.txt: [('es-', 'es'), ('-Office', 'Office'), ('lit-', 'lit'), ('lit-', 'lit'), ('every--', 'every-'), ('-o', 'o'), ('sign-', 'sign'), ('-ofthe', 'ofthe')] PUR19180606-V17-44-page2.txt: [('tui-', 'tui'), ('-our', 'our')] PUR19180606-V17-44-page3.txt: [('credit-', 'credit'), ('-', ''), ('-rank', 'rank'), ('.-', '.'), ('interest-', 'interest')] PUR19180606-V17-44-page4.txt: [('to-', 'to'), ('Nel-', 'Nel'), ('-', ''), ('con-', 'con'), ('be-', 'be'), ('Af-', 'Af'), ('foun-', 'foun')] PUR19180606-V17-44-page5.txt: [('inser-', 'inser'), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('loca-', 'loca'), ('San-', 'San')] PUR19180606-V17-44-page6.txt: [('independ-', 'independ'), ('-should', 'should'), ('frac-', 'frac'), ('Secre-', 'Secre'), ('Seventh-', 'Seventh'), ('Francis-', 'Francis'), ('death-', 'death'), ('the-', 'the'), ('fif-', 'fif'), ('-', ''), ('Hensley-', 'Hensley')] PUR19180606-V17-44-page7.txt: [('-ago', 'ago'), ('-Oakland', 'Oakland'), ('heart-', 'heart'), ('-stricken', 'stricken'), ('-care.', 'care.'), ('-writer.', 'writer.'), ('-was', 'was')] PUR19180606-V17-44-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Maga-', 'Maga'), ('-volume', 'volume'), ('-volume', 'volume'), ('fur-', 'fur'), ('sis-', 'sis'), ('-Volume', 'Volume'), ('-', ''), ('-Reno', 'Reno'), ('-', ''), ('-', '')] PUR19180613-V17-45-page1.txt: [('California-', 'California'), ('-er', 'er'), ('pre-', 'pre'), ('Col-', 'Col'), ('--chools', '-chools'), ('mas-', 'mas'), ('Rob-', 'Rob'), ('-', ''), ('fu-', 'fu'), ('Benja-', 'Benja'), ('recep-', 'recep'), ('-a', 'a'), ('pro-', 'pro'), ('-chapel', 'chapel'), ('Prom-', 'Prom')] PUR19180613-V17-45-page2.txt: [('Trini-', 'Trini'), ('Wind-', 'Wind'), ('confer-', 'confer'), ('camp-meet-', 'camp-meet'), ('Gen-', 'Gen'), ('Adams-', 'Adams'), ('of-', 'of'), ('Sun-', 'Sun')] PUR19180613-V17-45-page3.txt: [('-', ''), ('-', ''), ('Per--', 'Per-')] PUR19180613-V17-45-page4.txt: [('prac-', 'prac'), ('-this', 'this'), ('-folks"', 'folks"'), ('-Llyettmer', 'Llyettmer'), ('-companies', 'companies'), ('con-', 'con'), ('some-', 'some'), ('con-', 'con')] PUR19180613-V17-45-page5.txt: [('con-', 'con'), ('re-', 're'), ('-will', 'will'), ('camp-', 'camp'), ('-Recorder"', 'Recorder"'), ('-', '')] PUR19180613-V17-45-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-u', 'u'), ('-', ''), ('-', ''), ('-', ''), ('the-', 'the'), ('posters--', 'posters-'), ('frac-', 'frac'), ('Sub-', 'Sub'), ('PERSE-', 'PERSE'), ('quarter-', 'quarter'), ('-', ''), ('-meeting', 'meeting'), ('ap-', 'ap'), ('be-', 'be'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180620-V17-46-page1.txt: [('-VOL.', 'VOL.'), ('.-', '.'), ('-', ''), ('-..', '..'), ('-', ''), ('--i', '-i'), ('-During', 'During'), ('--', '-')] PUR19180620-V17-46-page2.txt: [('thir-', 'thir'), ('cer-', 'cer'), ('is-', 'is'), ('mes-', 'mes'), ('-', ''), ('shap-', 'shap'), ('sub-', 'sub')] PUR19180620-V17-46-page3.txt: [('Lit-', 'Lit'), ('ac-', 'ac'), ('Sab-', 'Sab'), ('Set-', 'Set'), ('-', '')] PUR19180620-V17-46-page4.txt: [('con--', 'con-'), ('Tithe-', 'Tithe'), ('plac-', 'plac'), ('mem-', 'mem'), ('con-', 'con'), ('Hum-', 'Hum'), ('Val--', 'Val-'), ('were-', 'were'), ('-', ''), ('-', '')] PUR19180620-V17-46-page5.txt: [('-company', 'company'), ('real-', 'real'), ('Sis-', 'Sis'), ('distribut-', 'distribut'), ('after-', 'after'), ('-ouls', 'ouls'), ('Watch-', 'Watch')] PUR19180620-V17-46-page6.txt: [('ili-', 'ili'), ('re-', 're'), ('confer-', 'confer'), ('Dispel-', 'Dispel'), ('-We', 'We'), ('im-', 'im'), ('"Univer-', '"Univer')] PUR19180620-V17-46-page7.txt: [('Glen-', 'Glen'), ('re-', 're'), ('-Remember', 'Remember'), ('twin-', 'twin'), ('third.-', 'third.'), ('Bak-', 'Bak')] PUR19180620-V17-46-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('-', ''), ('-', ''), ('be-', 'be'), ('midnights--', 'midnights-'), ('quot-', 'quot'), ('Wine-', 'Wine'), ('-I', 'I'), ('Aal-', 'Aal'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180627-V17-47-page1.txt: [('Emer-', 'Emer'), ('sin-', 'sin'), ('-Missionary', 'Missionary'), ('pre-', 'pre'), ('Bar-', 'Bar'), ('-have', 'have'), ('-came', 'came'), ('serv-', 'serv')] PUR19180627-V17-47-page2.txt: [('Legisla-', 'Legisla'), ('de-', 'de'), ('fami-', 'fami'), ('-', ''), ('Ga-', 'Ga'), ('world-', 'world')] PUR19180627-V17-47-page3.txt: [('church-mem-', 'church-mem'), ('confer-', 'confer'), ('-ms', 'ms'), ('through-', 'through'), ("'in-", "'in"), ('sour-', 'sour'), ('-', ''), ('depart-', 'depart'), ('-', ''), ('-while', 'while')] PUR19180627-V17-47-page4.txt: [('--hich', '-hich'), ('lit-', 'lit'), ('Dur-', 'Dur'), ('leader-', 'leader'), ('sis-', 'sis'), ('re-', 're')] PUR19180627-V17-47-page5.txt: [('bur-', 'bur'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Cali-', 'Cali'), ('Salary-', 'Salary')] PUR19180627-V17-47-page6.txt: [('our-', 'our'), ('-elves', 'elves'), ('ef-', 'ef'), ('la-', 'la'), ('Val-', 'Val'), ('pres-', 'pres'), ('-to', 'to')] PUR19180627-V17-47-page7.txt: [('sev-', 'sev'), ('Glen-', 'Glen'), ('Dani-', 'Dani')] PUR19180627-V17-47-page8.txt: [('con-', 'con'), ('-', ''), ('reve-', 'reve'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180704-V17-48-page1.txt: [('-', ''), ('en-', 'en'), ('be-', 'be'), ('Elder-', 'Elder'), ('dis-', 'dis')] PUR19180704-V17-48-page2.txt: [('treas-', 'treas'), ('camp-meet-', 'camp-meet'), ('impor-', 'impor'), ('rep-', 'rep'), ('disci-', 'disci'), ('-', '')] PUR19180704-V17-48-page3.txt: [('peo-', 'peo'), ('pro-', 'pro'), ('-', ''), ('earn-', 'earn'), ('in-', 'in'), ('suc-', 'suc'), ('arrange-', 'arrange'), ('ex-', 'ex'), ('An-', 'An'), ('fam-', 'fam')] PUR19180704-V17-48-page4.txt: [('pu-', 'pu'), ('car-', 'car'), ('pu-', 'pu'), ('man-', 'man'), ('-', ''), ('-', ''), ('--', '-'), ('-', ''), ('cen-', 'cen')] PUR19180704-V17-48-page5.txt: [('activi-', 'activi'), ('read-', 'read'), ('tempo-', 'tempo'), ('ta-', 'ta'), ('re-', 're'), ('con-', 'con'), ('mem-', 'mem'), ('es-', 'es'), ('is-', 'is')] PUR19180704-V17-48-page6.txt: [('-which', 'which'), ('-I', 'I')] PUR19180704-V17-48-page8.txt: [('-DAY', 'DAY'), ('-', ''), ('car-', 'car'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-aoney', 'aoney'), ('op-', 'op'), ('bien-', 'bien'), ('Wash-', 'Wash'), ('recommend-', 'recommend'), ('interme-', 'interme'), ('-', ''), ('-I', 'I'), ('-', ''), ('-', '')] PUR19180711-V17-49-page1.txt: [('go-', 'go'), ('-', ''), ('-', ''), ('lis-', 'lis')] PUR19180711-V17-49-page2.txt: [('be-', 'be'), ('inform-', 'inform'), ('com-', 'com'), ('follow-', 'follow')] PUR19180711-V17-49-page3.txt: [('grow-', 'grow'), ('ex-', 'ex'), ('amp-', 'amp'), ('goal-', 'goal')] PUR19180711-V17-49-page4.txt: [('-', ''), ('fa-', 'fa'), ('Fruit-', 'Fruit')] PUR19180711-V17-49-page5.txt: [('open-', 'open'), ('Davis-', 'Davis'), ('-he', 'he')] PUR19180711-V17-49-page6.txt: [('volunteer-', 'volunteer'), ('C-', 'C'), ('spec-', 'spec'), ('so-', 'so'), ('or-', 'or'), ('At-', 'At')] PUR19180711-V17-49-page7.txt: [('or-', 'or'), ('MISCELLANY--', 'MISCELLANY-'), ('--', '-'), ('con-', 'con'), ('per-', 'per')] PUR19180711-V17-49-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Incorpora-', 'Incorpora'), ('-', ''), ('-', ''), ('conven-', 'conven'), ('par-', 'par'), ('Califor-', 'Califor'), ('-', ''), ('--', '-'), ('--i', '-i'), ('--f', '-f'), ('--', '-'), ('--', '-'), ('--', '-'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('corpora-', 'corpora'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180718-V17-50-page1.txt: [('ad-', 'ad'), ('ex-', 'ex'), ('hap-', 'hap'), ('every-', 'every'), ('mo-', 'mo')] PUR19180718-V17-50-page2.txt: [('-', ''), ('Vol-', 'Vol'), ('re-', 're'), ('re-', 're')] PUR19180718-V17-50-page3.txt: [('offer-', 'offer'), ('Tues-', 'Tues'), ('bap-', 'bap'), ('mis-', 'mis'), ('end-', 'end'), ('-company', 'company')] PUR19180718-V17-50-page4.txt: [('ful-', 'ful'), ('camp-', 'camp'), ('or-', 'or')] PUR19180718-V17-50-page5.txt: [('Phil-', 'Phil'), ('Broth-', 'Broth'), ('pre-', 'pre'), ('re-', 're'), ('excel-', 'excel'), ('real-', 'real')] PUR19180718-V17-50-page6.txt: [('COM-', 'COM')] PUR19180718-V17-50-page7.txt: [('-', '')] PUR19180718-V17-50-page8.txt: [('pay-', 'pay'), ('ser-', 'ser'), ('-', ''), ('en-', 'en'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('pro-', 'pro'), ('camp-meet-', 'camp-meet'), ('As-', 'As'), ('education-', 'education'), ('-', ''), ('-', '')] PUR19180725-V17-51-page1.txt: [('treat-', 'treat'), ('pro-', 'pro'), ('Pasa-', 'Pasa'), ('of-', 'of'), ('al-', 'al'), ('sec-', 'sec'), ('co-', 'co')] PUR19180725-V17-51-page2.txt: [('mak-', 'mak'), ('reason-', 'reason'), ('be-', 'be'), ('Sev-', 'Sev'), ('sus-', 'sus'), ('Ad-', 'Ad'), ('con-', 'con')] PUR19180725-V17-51-page3.txt: [('inter-', 'inter'), ('peo-', 'peo'), ('ob-', 'ob'), ('Bel-', 'Bel'), ('re-', 're'), ('beau-', 'beau')] PUR19180725-V17-51-page4.txt: [('re-', 're')] PUR19180725-V17-51-page5.txt: [('-None', 'None'), ('beauti-', 'beauti'), ('stat-', 'stat'), ('con-', 'con'), ('tooth-', 'tooth'), ('seventy-', 'seventy'), ('in-', 'in'), ('Gam-', 'Gam'), ('As-', 'As')] PUR19180725-V17-51-page6.txt: [('Sanitar-', 'Sanitar'), ('pas-', 'pas')] PUR19180725-V17-51-page7.txt: [('Seventh-', 'Seventh'), ('Hack-', 'Hack'), ('daugh-', 'daugh'), ('ex-', 'ex'), ('re-', 're'), ('inspir-', 'inspir'), ('moth-', 'moth'), ('Bar-', 'Bar'), ('con-', 'con')] PUR19180725-V17-51-page8.txt: [('ev-', 'ev'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('circu-', 'circu'), ('as-', 'as'), ('Cal-', 'Cal'), ('I-', 'I'), ('-I', 'I'), ('-I-', 'I-'), ('-I', 'I'), ('--', '-'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180801-V17-52-page1.txt: [('Wash-', 'Wash'), ('-', ''), ('Presi-', 'Presi')] PUR19180801-V17-52-page2.txt: [('-', ''), ('far-', 'far'), ('-', ''), ('gos-', 'gos'), ('fin-', 'fin'), ('Stan-', 'Stan'), ('Af-', 'Af'), ('-Sabbath', 'Sabbath'), ('"Sab-', '"Sab'), ('away-', 'away'), ('-only', 'only'), ('in-', 'in'), ('-', ''), ('Move-', 'Move')] PUR19180801-V17-52-page3.txt: [('Fif-', 'Fif'), ('sec-', 'sec'), ('-', ''), ('-', ''), ('ope-', 'ope'), ('Ga-', 'Ga'), ('com-', 'com'), ('Santeeofficiatir-', 'Santeeofficiatir'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('mem-', 'mem')] PUR19180801-V17-52-page4.txt: [('Cal-', 'Cal'), ('camp-', 'camp'), ('educa-', 'educa'), ('la-', 'la'), ('finan-', 'finan'), ('-a', 'a'), ('meet-', 'meet'), ('in-', 'in'), ('subscrip-', 'subscrip')] PUR19180801-V17-52-page5.txt: [('"Re-', '"Re'), ('aw--', 'aw-'), ('year-', 'year'), ('Camp-', 'Camp'), ('"Sab-', '"Sab'), ('nun-', 'nun')] PUR19180801-V17-52-page6.txt: [('-great', 'great'), ('cour-', 'cour'), ('---rfecting', '--rfecting')] PUR19180801-V17-52-page7.txt: [('-and', 'and'), ('in-', 'in')] PUR19180801-V17-52-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-watchmen.-', 'watchmen.-'), ('-', ''), ('-', ''), ('fail-', 'fail'), ('Septem-', 'Septem'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180808-V18-01-page1.txt: [('large-', 'large'), ('list-', 'list'), ('ex-', 'ex'), ('-of', 'of'), ('depart-', 'depart'), ('through-', 'through')] PUR19180808-V18-01-page2.txt: [('depart-', 'depart'), ('Confer-', 'Confer'), ('-', ''), ('In-', 'In'), ('be-', 'be')] PUR19180808-V18-01-page3.txt: [('edu-', 'edu'), ('successfu-', 'successfu'), ('vul-', 'vul'), ('-', ''), ('char-', 'char')] PUR19180808-V18-01-page4.txt: [('Bar-', 'Bar'), ('Bel-', 'Bel'), ('presi-', 'presi'), ('-laid', 'laid'), ('-', ''), ('serv-', 'serv'), ('har-', 'har'), ('fol-', 'fol')] PUR19180808-V18-01-page5.txt: [('three-', 'three'), ('end-', 'end'), ('sev-', 'sev'), ('con-', 'con'), ('famine-', 'famine'), ('El-', 'El'), ('Es-', 'Es'), ('in--', 'in-'), ('ar-', 'ar'), ('be-', 'be')] PUR19180808-V18-01-page6.txt: [('de-', 'de'), ('cen-', 'cen'), ('Sab-', 'Sab'), ('Te-', 'Te'), ('moun-', 'moun'), ('beauti-', 'beauti'), ('pres-', 'pres'), ('ac-', 'ac')] PUR19180808-V18-01-page7.txt: [('-Recorder"', 'Recorder"'), ('re-', 're'), ('dis-', 'dis'), ('ex-', 'ex'), ('fol-', 'fol')] PUR19180808-V18-01-page8.txt: [('-', ''), ('superinten-', 'superinten'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('peo-', 'peo'), ('re-', 're'), ('Resolu-', 'Resolu'), ('-', ''), ('-', ''), ('-', ''), ('.--', '.-'), ('.-', '.'), ('.--', '.-'), ('-', ''), ('-', ''), ('---', '--'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19180815-V18-02-page1.txt: [('-over', 'over'), ('suc-', 'suc'), ('to-', 'to'), ('-day', 'day'), ('-', ''), ('-of', 'of'), ('-this', 'this'), ('re-', 're')] PUR19180815-V18-02-page2.txt: [('twenty-', 'twenty'), ('vol-', 'vol'), ('mis-', 'mis'), ('accomp-', 'accomp'), ('Prov-', 'Prov'), ('-work', 'work'), ('pur-', 'pur')] PUR19180815-V18-02-page3.txt: [('Sup-', 'Sup'), ('-', ''), ('pro-', 'pro'), ('morn-', 'morn'), ('co-', 'co'), ('im-', 'im'), ('-Recorder"', 'Recorder"'), ('Support-', 'Support'), ('ex-', 'ex'), ('mea-', 'mea'), ('Ma-', 'Ma'), ('com-', 'com')] PUR19180815-V18-02-page4.txt: [('Philip-', 'Philip'), ('suc-', 'suc'), ('Mis-', 'Mis'), ('Philip-', 'Philip'), ('-each', 'each')] PUR19180815-V18-02-page5.txt: [('so-', 'so'), ('-do', 'do')] PUR19180815-V18-02-page6.txt: [('-cent-a-week', 'cent-a-week'), ('re-', 're'), ('papers-', 'papers'), ('iso-', 'iso'), ('Sep-', 'Sep'), ('addi-', 'addi'), ('ex-', 'ex'), ('-', '')] PUR19180815-V18-02-page7.txt: [('One-', 'One'), ('prin-', 'prin'), ('sub-', 'sub'), ('-', ''), ('ex-', 'ex'), ('con-', 'con'), ('build-', 'build')] PUR19180815-V18-02-page8.txt: [('Hun-', 'Hun'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('mat-', 'mat'), ('mag-', 'mag'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('I-', 'I')] PUR19180822-V18-03-page1.txt: [('-General', 'General'), ('of-', 'of'), ('un-', 'un'), ('meet-', 'meet'), ('under-', 'under'), ('sis-', 'sis')] PUR19180822-V18-03-page2.txt: [('rep-', 'rep'), ('every-', 'every'), ('-Watchman"', 'Watchman"'), ('-papers', 'papers'), ('-vandei', 'vandei'), ('en-', 'en'), ('de-', 'de'), ('chang-', 'chang'), ('-should', 'should'), ('con-', 'con')] PUR19180822-V18-03-page3.txt: [('-', ''), ('ac-', 'ac'), ('sincere-', 'sincere'), ('bur-', 'bur'), ('cam-', 'cam'), ('over-', 'over'), ('ap-', 'ap'), ('-coloted', 'coloted')] PUR19180822-V18-03-page4.txt: [('strug-', 'strug'), ('impor-', 'impor'), ('Inter-Moun-', 'Inter-Moun')] PUR19180822-V18-03-page5.txt: [('Beech-', 'Beech'), ('Watch-', 'Watch'), ('Lib-', 'Lib'), ('For-', 'For'), ('-', '')] PUR19180822-V18-03-page6.txt: [('-', ''), ('chil-', 'chil'), ('Thous-', 'Thous'), ('"cough-', '"cough'), ('temper-', 'temper'), ('"-', '"'), ('u-', 'u'), ('Hunter-', 'Hunter')] PUR19180822-V18-03-page7.txt: [('-of', 'of'), ('cir-', 'cir'), ('-cmastances.', 'cmastances.'), ('-part', 'part'), ('The-', 'The')] PUR19180822-V18-03-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mc-', 'Mc'), ('Mc-', 'Mc'), ('Mc-', 'Mc'), ('mes-', 'mes'), ('Presi-', 'Presi'), ('Presi-', 'Presi'), ('fol-', 'fol'), ('-', ''), ('-', ''), ('-', ''), ('--', '-')] PUR19180829-V18-04-page1.txt: [('pre-', 'pre'), ('com-', 'com'), ('pray-', 'pray'), ('des-', 'des'), ('-Ind', 'Ind'), ('faith-', 'faith')] PUR19180829-V18-04-page2.txt: [('-', ''), ('divid-', 'divid'), ('-become', 'become'), ('serv-', 'serv'), ('Les-', 'Les')] PUR19180829-V18-04-page3.txt: [('cam-', 'cam'), ('Oc-', 'Oc'), ('in-', 'in')] PUR19180829-V18-04-page4.txt: [('encourag-', 'encourag'), ('writ-', 'writ'), ('ef-', 'ef'), ('Cal-', 'Cal')] PUR19180829-V18-04-page5.txt: [('-', '')] PUR19180829-V18-04-page6.txt: [('soul-win-', 'soul-win')] PUR19180829-V18-04-page7.txt: [('-', ''), ('Gern-', 'Gern'), ('accept-', 'accept'), ('Trade-', 'Trade'), ('-room', 'room'), ('con-', 'con'), ('opin-', 'opin')] PUR19180829-V18-04-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('An-', 'An'), ('Ange-', 'Ange'), ('Aug-', 'Aug'), ('-', ''), ('de-', 'de')] PUR19180905-V18-05-page1.txt: [('-Then', 'Then'), ('wher-', 'wher'), ('ofatechni-', 'ofatechni'), ('en-', 'en')] PUR19180905-V18-05-page2.txt: [('Ste-', 'Ste'), ('-', ''), ('camp-', 'camp'), ('-', ''), ('North-', 'North'), ('sal-', 'sal'), ('North-', 'North'), ('increas-', 'increas'), ('-cent-a-week', 'cent-a-week'), ('Ste-', 'Ste'), ('be-', 'be'), ('ad-', 'ad'), ('Read-', 'Read'), ('en-', 'en'), ('--couraging', '-couraging'), ('-manner', 'manner'), ('deliv-', 'deliv'), ('Diffen-', 'Diffen'), ('-', ''), ('Un-', 'Un'), ('pur-', 'pur'), ('Pa-', 'Pa')] PUR19180905-V18-05-page3.txt: [('Sab-', 'Sab'), ('secre-', 'secre'), ('dur-', 'dur'), ('cam-', 'cam'), ('Accordin-', 'Accordin'), ('-', ''), ('-', ''), ('pro-', 'pro'), ('-', ''), ('lib-', 'lib'), ('dele-', 'dele')] PUR19180905-V18-05-page4.txt: [('world-', 'world'), ('encour-', 'encour'), ('work-', 'work'), ('-of', 'of'), ('meet-', 'meet'), ('in-', 'in'), ('represent-', 'represent')] PUR19180905-V18-05-page5.txt: [('Sev-', 'Sev'), ('In-', 'In'), ('Oak-', 'Oak'), ('Sab-', 'Sab'), ('Mendo-', 'Mendo'), ('Breiti-', 'Breiti'), ('Dur-', 'Dur')] PUR19180905-V18-05-page6.txt: [('-the', 'the'), ('-cent-a-week', 'cent-a-week'), ('Bar-', 'Bar'), ('-', ''), ('bara-', 'bara'), ('seeking-', 'seeking'), ('di-', 'di')] PUR19180905-V18-05-page7.txt: [('Ad-', 'Ad'), ('-', ''), ('excel-', 'excel'), ('-part', 'part'), ('Hunts-', 'Hunts'), ('Con-', 'Con'), ('Trade-', 'Trade'), ('-room', 'room'), ('need-', 'need')] PUR19180905-V18-05-page8.txt: [('-', ''), ('Los-', 'Los'), ('qw.s-', 'qw.s'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Williams', 'Williams'), ('Septem-', 'Septem')] PUR19180912-V18-06-page1.txt: [('ad-', 'ad'), ('Carr-', 'Carr')] PUR19180912-V18-06-page2.txt: [('-our', 'our'), ('-Intense', 'Intense'), ('-', ''), ('-Heavenly', 'Heavenly'), ('mem-', 'mem'), ('teach-', 'teach'), ('espec-', 'espec'), ('cam-', 'cam')] PUR19180912-V18-06-page3.txt: [('ad-', 'ad'), ('assist-', 'assist')] PUR19180912-V18-06-page4.txt: [('Pa-', 'Pa'), ('Sab-', 'Sab'), ('Walla-', 'Walla'), ('Sab-', 'Sab'), ('mis-', 'mis')] PUR19180912-V18-06-page5.txt: [('-', ''), ('insti-', 'insti'), ('in-', 'in'), ('-', ''), ('-California', 'California')] PUR19180912-V18-06-page6.txt: [('Cali-', 'Cali'), ('South-', 'South'), ('-', ''), ('build-', 'build')] PUR19180912-V18-06-page7.txt: [('week-', 'week'), ('execu-', 'execu'), ('Sny-', 'Sny'), ('creden-', 'creden'), ('con-', 'con'), ("-Recorder.'", "Recorder.'"), ('prohi-', 'prohi'), ('Phil-', 'Phil'), ('ev-', 'ev'), ('de-', 'de'), ('appro-', 'appro'), ('enroll-', 'enroll'), ('mis-', 'mis'), ('evan-', 'evan')] PUR19180912-V18-06-page8.txt: [('-', ''), ('-', ''), ('man-', 'man'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('of-', 'of'), ('-', ''), ('Oak-', 'Oak'), ('mission-', 'mission'), ('.-', '.'), ('Ne-', 'Ne'), ('-', ''), ('educa-', 'educa'), ('doubt-', 'doubt'), ('Califor-', 'Califor'), ('-of', 'of'), ('Pa-', 'Pa'), ('Bur-', 'Bur'), ('"Record-', '"Record')] PUR19180919-V18-07-page1.txt: [('-the', 'the'), ('com-', 'com'), ('re-', 're'), ('con-', 'con'), ('build-', 'build')] PUR19180919-V18-07-page2.txt: [('ac-', 'ac'), ('priv-', 'priv'), ('spend-', 'spend'), ('-', '')] PUR19180919-V18-07-page3.txt: [('Mis-', 'Mis'), ('-', ''), ('Coun-', 'Coun'), ('en-', 'en'), ('hea-', 'hea'), ('help-', 'help'), ('transfer-', 'transfer')] PUR19180919-V18-07-page4.txt: [('-Z', 'Z'), ('faith-', 'faith'), ('to-day.-', 'to-day.'), ('coun-', 'coun'), ('con-', 'con'), ('-', '')] PUR19180919-V18-07-page5.txt: [('togeth-', 'togeth'), ('-', ''), ('In-', 'In')] PUR19180919-V18-07-page6.txt: [('con-', 'con'), ('mis-', 'mis'), ('n-si-', 'n-si'), ('-', ''), ('bene-', 'bene'), ('num-', 'num'), ('ex-', 'ex'), ('Bro-', 'Bro')] PUR19180919-V18-07-page7.txt: [('be-', 'be'), ('con-', 'con'), ('five-', 'five'), ('Con-', 'Con')] PUR19180919-V18-07-page8.txt: [('expi-', 'expi'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('pa-', 'pa'), ('-', ''), ('-', ''), ('need-', 'need'), ('every-', 'every'), ('cou-', 'cou'), ('adopt-', 'adopt')] PUR19180926-V18-08-page1.txt: [('to-', 'to'), ('--what', '-what'), ('re-', 're')] PUR19180926-V18-08-page2.txt: [('im-', 'im'), ('-The', 'The'), ('from-', 'from'), ('-wvere', 'wvere'), ('fu-', 'fu'), ('re-', 're'), ('-ruction', 'ruction'), ('-', ''), ('Vol-', 'Vol')] PUR19180926-V18-08-page3.txt: [('re-', 're'), ('-', ''), ('-', ''), ('wide-', 'wide')] PUR19180926-V18-08-page4.txt: [('per-', 'per'), ('eter-', 'eter'), ('offi-', 'offi'), ('cap-', 'cap')] PUR19180926-V18-08-page5.txt: [('in-', 'in'), ('Opposi-', 'Opposi'), ('dur-', 'dur')] PUR19180926-V18-08-page6.txt: [('tak-', 'tak'), ('look-', 'look'), ('Ingather-', 'Ingather'), ('work-', 'work'), ('"Watch-', '"Watch'), ('sup-', 'sup'), ('par-', 'par'), ('defi-', 'defi')] PUR19180926-V18-08-page7.txt: [('Mission-', 'Mission'), ('soul-', 'soul'), ('Trus-', 'Trus'), ('-', '')] PUR19180926-V18-08-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('under-', 'under'), ('-', ''), ('heat-', 'heat'), ('War-', 'War'), ('refer-', 'refer'), ('Cali-', 'Cali'), ('-visiting', 'visiting'), ('Revelation.-', 'Revelation.')] PUR19181003-V18-09-page1.txt: [('-Gazette."', 'Gazette."'), ('there-', 'there'), ('ac-', 'ac'), ('-', ''), ('en-', 'en'), ('ar-', 'ar'), ('particu-', 'particu'), ('Speak--', 'Speak-')] PUR19181003-V18-09-page2.txt: [('cam-', 'cam')] PUR19181003-V18-09-page3.txt: [('attend-', 'attend'), ('Confer-', 'Confer'), ('af-', 'af'), ('suc-', 'suc'), ('Ari-', 'Ari')] PUR19181003-V18-09-page4.txt: [('pri-', 'pri'), ('Oc-', 'Oc'), ('Bakers-', 'Bakers'), ('-', ''), ('re-', 're'), ('pu-', 'pu')] PUR19181003-V18-09-page5.txt: [('omnipo-', 'omnipo'), ('"Pres-', '"Pres'), ('-concerned', 'concerned'), ('re-', 're'), ('-', '')] PUR19181003-V18-09-page6.txt: [('for-', 'for'), ('ex-', 'ex'), ('-amination.', 'amination.'), ('"pub-', '"pub'), ('Inter-', 'Inter')] PUR19181003-V18-09-page7.txt: [('Chris-', 'Chris'), ('Car-', 'Car'), ('propa-', 'propa'), ('as-', 'as'), ('Stock-', 'Stock')] PUR19181003-V18-09-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19181010-V18-10-page1.txt: [('....-', '....'), ('con-', 'con'), ('Emer-', 'Emer'), ('mission-', 'mission'), ('re-', 're'), ('good-', 'good'), ('do-', 'do'), ('-the', 'the')] PUR19181010-V18-10-page2.txt: [('-workers"', 'workers"')] PUR19181010-V18-10-page3.txt: [('re-', 're'), ('prov-', 'prov'), ('mem-', 'mem'), ('instru-', 'instru'), ('church-', 'church')] PUR19181010-V18-10-page4.txt: [('con-', 'con'), ('-ordered.', 'ordered.'), ('-and', 'and'), ('camp-', 'camp'), ('-churches', 'churches'), ('conven-', 'conven'), ('support-', 'support')] PUR19181010-V18-10-page5.txt: [('oth-', 'oth'), ('Me-', 'Me'), ('be-', 'be'), ('-', ''), ('de-', 'de'), ('pur-', 'pur')] PUR19181010-V18-10-page6.txt: [('to-', 'to'), ('en-', 'en'), ('morn-', 'morn')] PUR19181010-V18-10-page7.txt: [('cen-', 'cen'), ('-either', 'either'), ('-way', 'way'), ('Kind-', 'Kind'), ('teach-', 'teach'), ('chil-', 'chil')] PUR19181010-V18-10-page8.txt: [('num-', 'num'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('announce-', 'announce'), ('-', ''), ('consid-', 'consid'), ('reason-', 'reason'), ('posi-', 'posi')] PUR19181017-V18-11-page1.txt: [('-Office', 'Office'), ('-Secretary', 'Secretary'), ('peo-', 'peo'), ('of-', 'of'), ('secre-', 'secre'), ('Gen-', 'Gen'), ('especi-', 'especi'), ('com-', 'com'), ('ses-', 'ses')] PUR19181017-V18-11-page2.txt: [('depart-', 'depart'), ('-', ''), ('-such', 'such'), ('chil-', 'chil'), ('-', ''), ('-cent-a-week', 'cent-a-week'), ('well-', 'well'), ('encour-', 'encour'), ('Col-', 'Col'), ('dedi-', 'dedi'), ('camp-', 'camp'), ('secretary-', 'secretary')] PUR19181017-V18-11-page3.txt: [('-credentials', 'credentials'), ('oppor-', 'oppor'), ('-', '')] PUR19181017-V18-11-page4.txt: [('-FIELD', 'FIELD'), ('-', ''), ('sales-', 'sales'), ('some-', 'some'), ('try-', 'try'), ('opposi-', 'opposi'), ('de-', 'de'), ('-', ''), ('us-', 'us'), ('-the', 'the')] PUR19181017-V18-11-page5.txt: [('im-', 'im'), ('Sep-', 'Sep'), ('con-', 'con'), ('slow-', 'slow'), ('in-', 'in'), ('-', '')] PUR19181017-V18-11-page6.txt: [('were-', 'were'), ('encour-', 'encour'), ('service.-', 'service.')] PUR19181017-V18-11-page7.txt: [('-his', 'his'), ('-work', 'work'), ('Ad-', 'Ad'), ('shad-', 'shad'), ('-day', 'day'), ('disap-', 'disap'), ('con-', 'con'), ('-or', 'or'), ('-study', 'study'), ('from--', 'from-'), ('-result', 'result'), ('manage-', 'manage'), ('ref-', 'ref')] PUR19181017-V18-11-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('in-', 'in'), ('-members', 'members'), ('mis-', 'mis')] PUR19181024-V18-12-page1.txt: [('erect-', 'erect'), ('-Secretary', 'Secretary'), ('-', ''), ('cents-', 'cents'), ('-', ''), ('-', ''), ('Sep-', 'Sep'), ('mem-', 'mem'), ('-given', 'given'), ('train-', 'train')] PUR19181024-V18-12-page2.txt: [('ser-', 'ser'), ('-usual.', 'usual.'), ('beauti-', 'beauti'), ('-', ''), ('resur-', 'resur'), ('spir-', 'spir'), ('-place', 'place')] PUR19181024-V18-12-page4.txt: [('has-', 'has'), ('con-', 'con'), ('rich-', 'rich'), ('for-', 'for'), ('Pacific-', 'Pacific'), ('invited-', 'invited')] PUR19181024-V18-12-page5.txt: [('anx-', 'anx'), ('Inter-', 'Inter'), ('ans-', 'ans'), ("'trip-", "'trip")] PUR19181024-V18-12-page6.txt: [('-colporteur', 'colporteur'), ('An-', 'An'), ('to-', 'to'), ('carry-', 'carry'), ('Durango-', 'Durango'), ('en-', 'en'), ('"Big-', '"Big'), ('thir-', 'thir')] PUR19181024-V18-12-page7.txt: [('-', ''), ('-Central', 'Central'), ('-schedule', 'schedule'), ('-her', 'her'), ('con-', 'con'), ('War-', 'War'), ('-company.', 'company.'), ('Calipa-', 'Calipa'), ('-tria', 'tria'), ('school-', 'school'), ('Ad-', 'Ad')] PUR19181024-V18-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('be-', 'be'), ('de-', 'de'), ('work-', 'work'), ('expect-', 'expect')] PUR19181031-V18-13-page1.txt: [('be-', 'be'), ('in-', 'in'), ('-', ''), ('mis-', 'mis'), ('cal-', 'cal')] PUR19181031-V18-13-page2.txt: [('-', ''), ('fin-', 'fin'), ('-to', 'to'), ('-My', 'My'), ('oppor-', 'oppor'), ('"-', '"'), ('thor-', 'thor'), ('be-', 'be'), ('quo-', 'quo')] PUR19181031-V18-13-page3.txt: [('-successful', 'successful'), ('-', ''), ('-should', 'should'), ('Mc-', 'Mc'), ('-', '')] PUR19181031-V18-13-page4.txt: [('com-', 'com'), ('try-', 'try')] PUR19181031-V18-13-page5.txt: [('Oc-', 'Oc'), ('ac-', 'ac'), ('con-', 'con'), ('dele-', 'dele')] PUR19181031-V18-13-page6.txt: [('heed-', 'heed'), ('-the-', 'the-'), ('com-', 'com'), ('Testa-', 'Testa'), ('Chica-', 'Chica'), ('-', ''), ('the-', 'the'), ('see-', 'see'), ('Riv-', 'Riv')] PUR19181031-V18-13-page7.txt: [('splen-', 'splen'), ('as-', 'as'), ('-Gospel', 'Gospel'), ('-Gospel', 'Gospel'), ('Rid-', 'Rid'), ('it-', 'it'), ('pros-', 'pros'), ('-pectus', 'pectus'), ('Ad-', 'Ad'), ('-Ilnitarium.', 'Ilnitarium.'), ('prepara-', 'prepara'), ('prec-', 'prec'), ('stone-', 'stone'), ('-', ''), ('-o', 'o'), ('-', '')] PUR19181031-V18-13-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('quan-', 'quan'), ('unveil-', 'unveil'), ('im-', 'im'), ('know-', 'know'), ('con-', 'con'), ('na-', 'na')] PUR19181107-V18-14-page1.txt: [('smok-', 'smok'), ('--J.', '-J.'), ('-', ''), ('Anti-', 'Anti'), ('period-', 'period'), ('tri-', 'tri'), ('haphaz-', 'haphaz'), ('us-', 'us')] PUR19181107-V18-14-page2.txt: [('-', ''), ('-faith', 'faith'), ('-', ''), ('step-', 'step'), ('-', ''), ('this-', 'this'), ('us--', 'us-'), ('care--', 'care-'), ('cir-', 'cir'), ('-', ''), ('of-', 'of'), ('them-', 'them'), ('-Co', 'Co')] PUR19181107-V18-14-page3.txt: [('-as', 'as')] PUR19181107-V18-14-page4.txt: [('mis-', 'mis'), ('stan-', 'stan'), ('-Sister', 'Sister'), ('accom-', 'accom'), ('Fal-', 'Fal'), ('Sev-', 'Sev')] PUR19181107-V18-14-page5.txt: [('-', ''), ('im-', 'im'), ('non-', 'non'), ('pray-', 'pray')] PUR19181107-V18-14-page6.txt: [('wor-', 'wor'), ('prophe-', 'prophe'), ('-to', 'to'), ('earnest-', 'earnest'), ('under-', 'under'), ('-of', 'of')] PUR19181107-V18-14-page7.txt: [('Dim-', 'Dim'), ('Oak-', 'Oak'), ('twenty-five-', 'twenty-five'), ('de-', 'de'), ('Hight-', 'Hight'), ('Cal.-', 'Cal.'), ('con-', 'con'), ('tnanafze-', 'tnanafze')] PUR19181107-V18-14-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-chool', 'chool'), ('mem-', 'mem')] PUR19181114-V18-15-page1.txt: [('of-', 'of'), ('mes-', 'mes'), ('Amer-', 'Amer'), ('atroci-', 'atroci'), ('-which', 'which'), ('-fact', 'fact')] PUR19181114-V18-15-page2.txt: [('-in', 'in'), ('greatc-', 'greatc'), ('foreign-speak-', 'foreign-speak'), ('genera-', 'genera'), ('-', ''), ('pro-', 'pro'), ('be-', 'be')] PUR19181114-V18-15-page3.txt: [('mes-', 'mes'), ('op-', 'op'), ('an-', 'an'), ('dif-', 'dif')] PUR19181114-V18-15-page4.txt: [('-', ''), ('na-', 'na'), ('be-', 'be'), ('multi-', 'multi'), ('.-', '.'), ('ron-', 'ron'), ('quick-', 'quick'), ('-foreign', 'foreign'), ('super-', 'super'), ('-c-kl', 'c-kl'), ('look-', 'look'), ('en-', 'en'), ('Chi-', 'Chi')] PUR19181114-V18-15-page5.txt: [('of-', 'of'), ('mis-', 'mis'), ('-looking', 'looking')] PUR19181114-V18-15-page6.txt: [('-', ''), ('-', ''), ('Doubt-', 'Doubt'), ('confer-', 'confer')] PUR19181114-V18-15-page8.txt: [('-', ''), ('brother-in-', 'brother-in'), ('-', ''), ('-', ''), ('-', ''), ('re-', 're'), ('hun-', 'hun'), ('perplexi-', 'perplexi')] PUR19181121-V18-16-page1.txt: [('signa-', 'signa'), ('or-', 'or'), ('confer-', 'confer'), ('im-', 'im'), ('confer-', 'confer'), ('Federa-', 'Federa')] PUR19181121-V18-16-page2.txt: [('pub-', 'pub'), ('emp-', 'emp'), ('sumptu-', 'sumptu'), ('un-', 'un')] PUR19181121-V18-16-page4.txt: [('-The', 'The')] PUR19181121-V18-16-page5.txt: [('move-', 'move'), ('sis-', 'sis'), ('Sab-', 'Sab'), ('-continued', 'continued'), ('peo-', 'peo'), ('indica-', 'indica'), ('fulfill-', 'fulfill')] PUR19181121-V18-16-page6.txt: [('Confer-', 'Confer'), ('mil-', 'mil'), ('-', ''), ('ex-', 'ex'), ('"Arma-', '"Arma')] PUR19181121-V18-16-page7.txt: [('-taken', 'taken'), ('dif-', 'dif'), ('-G.', 'G.'), ('Ameri-', 'Ameri'), ('mis-', 'mis'), ('Ad-', 'Ad'), ('-parts', 'parts'), ('pro-', 'pro'), ('un-', 'un'), ('-heard', 'heard'), ('slacken-', 'slacken'), ('pos-', 'pos'), ('manage-', 'manage'), ('-', '')] PUR19181121-V18-16-page8.txt: [('-Night', 'Night'), ('-', ''), ('-', ''), ('-', ''), ('hun-', 'hun'), ('-', ''), ('-', ''), ('-', ''), ('ad-', 'ad'), ('un-', 'un'), ('deso-', 'deso'), ('un-', 'un')] PUR19181128-V18-17-page1.txt: [('com-', 'com'), ('-.Office', '.Office'), ('-.General', '.General'), ('offer-', 'offer'), ('depart-', 'depart'), ('chil-', 'chil'), ('for-', 'for'), ('val-', 'val'), ('-women', 'women')] PUR19181128-V18-17-page2.txt: [('--yes', '-yes'), ('scat-', 'scat'), ('litera-', 'litera'), ('Christ-', 'Christ'), ('mes-', 'mes'), ('sub-', 'sub'), ('-', ''), ('litera-', 'litera'), ('sug-', 'sug'), ('-', ''), ('plan-', 'plan')] PUR19181128-V18-17-page3.txt: [('Inter-', 'Inter')] PUR19181128-V18-17-page4.txt: [('Seventh-', 'Seventh'), ('-oingfrom', 'oingfrom'), ('-eking', 'eking'), ('depart-', 'depart')] PUR19181128-V18-17-page5.txt: [('contribu-', 'contribu'), ('seeking"-', 'seeking"'), ('be-', 'be')] PUR19181128-V18-17-page6.txt: [('prayer-', 'prayer'), ('of-', 'of'), ('as-', 'as')] PUR19181128-V18-17-page7.txt: [('-session', 'session'), ('Cal-', 'Cal'), ('re-', 're'), ('sec-', 'sec'), ('"Re-', '"Re'), ('advis-', 'advis'), ('confer-', 'confer'), ('-', ''), ('-', ''), ('-', '')] PUR19181128-V18-17-page8.txt: [('-DAY', 'DAY'), ('Confer-', 'Confer'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Paradise-', 'Paradise'), ('-', ''), ('-', ''), ('con-', 'con'), ('missed-.the-', 'missed-.the'), ('-e', 'e'), ('lab-', 'lab'), ('-', ''), ('Ad-', 'Ad')] PUR19181205-V18-18-page1.txt: [('senti-', 'senti'), ('con-', 'con'), ('line-', 'line')] PUR19181205-V18-18-page2.txt: [('chil-', 'chil'), ('holy.-', 'holy.'), ('Em-', 'Em'), ('pub-', 'pub'), ('en-', 'en')] PUR19181205-V18-18-page3.txt: [('-', ''), ('dis-', 'dis'), ('Goal-', 'Goal')] PUR19181205-V18-18-page4.txt: [('inter-', 'inter'), ('-cent-a-week', 'cent-a-week'), ('fol-', 'fol'), ('Confer-', 'Confer'), ('per-', 'per'), ('Her-', 'Her'), ('-', '')] PUR19181205-V18-18-page5.txt: [('pros-', 'pros'), ('physi-', 'physi'), ('.-', '.'), ('attend-', 'attend'), ('---', '--')] PUR19181205-V18-18-page6.txt: [('sec-', 'sec'), ('ig-', 'ig'), ('en-', 'en'), ('pub-', 'pub'), ('ex-', 'ex'), ('oppor-', 'oppor'), ('conse-', 'conse')] PUR19181205-V18-18-page7.txt: [('-prepare', 'prepare'), ('de-', 'de'), ('advis-', 'advis'), ('-', ''), ('mansme-', 'mansme')] PUR19181205-V18-18-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-other', 'other')] PUR19181212-V18-19-page1.txt: [('morn-', 'morn'), ("People's-", "People's"), ('-holy', 'holy'), ('care-', 'care'), ('-ful', 'ful')] PUR19181212-V18-19-page2.txt: [('ori-', 'ori'), ('-', ''), ('at-', 'at'), ('sis-', 'sis'), ('re-', 're'), ('sur-', 'sur')] PUR19181212-V18-19-page3.txt: [('lit-', 'lit'), ('re-', 're'), ('Har-', 'Har'), ('in-', 'in'), ('meet-', 'meet'), ('con-', 'con'), ('Ingath-', 'Ingath'), ('ordi-', 'ordi'), ('ses-', 'ses'), ('mem-', 'mem'), ('prepara-', 'prepara')] PUR19181212-V18-19-page4.txt: [('associa-', 'associa'), ('recov-', 'recov'), ('-for', 'for'), ('-record', 'record'), ('influen-', 'influen'), ('church-', 'church'), ('"Thankful-', '"Thankful'), ('impossi-', 'impossi'), ('-who', 'who'), ('Stan-', 'Stan'), ('An-', 'An'), ('mem-', 'mem'), ('South-', 'South'), ('depart-', 'depart'), ('re-', 're'), ('Martin-', 'Martin'), ('-long', 'long')] PUR19181212-V18-19-page5.txt: [('-', ''), ('-', ''), ('re-', 're'), ('pa-', 'pa'), ('offer-', 'offer'), ('re-', 're')] PUR19181212-V18-19-page6.txt: [('rheuma-', 'rheuma'), ('ap-', 'ap'), ('can-', 'can'), ('ap-', 'ap')] PUR19181212-V18-19-page7.txt: [('Har-', 'Har'), ('Seventh-', 'Seventh'), ('-Watch', 'Watch'), ('Ad-', 'Ad'), ('-work', 'work'), ('-four-room', 'four-room'), ('-screen', 'screen'), ('-', ''), ('mortgage-', 'mortgage'), ('-the', 'the')] PUR19181212-V18-19-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mr-ISE"-', 'Mr-ISE"')] PUR19181219-V18-20-page1.txt: [('.k"-', '.k"'), ('Tehacha-', 'Tehacha'), ('-Young', 'Young'), ('-He', 'He'), ('ses-', 'ses'), ('Con-', 'Con')] PUR19181219-V18-20-page2.txt: [('dis-', 'dis'), ('per-', 'per'), ('com-', 'com')] PUR19181219-V18-20-page3.txt: [('thous-', 'thous'), ('rep-', 'rep')] PUR19181219-V18-20-page4.txt: [('any-', 'any'), ('before-', 'before'), ('deter-', 'deter'), ('the-', 'the'), ('Seventh-', 'Seventh'), ('four-', 'four'), ('al-', 'al'), ('mis-', 'mis')] PUR19181219-V18-20-page5.txt: [('weeklies--', 'weeklies-')] PUR19181219-V18-20-page6.txt: [('cem-', 'cem'), ('Boulder-Colo-', 'Boulder-Colo'), ('to-', 'to'), ('-', ''), ('-c--', 'c--'), ('War-', 'War'), ('Fun-', 'Fun')] PUR19181219-V18-20-page7.txt: [('-cook', 'cook'), ('--tion.', '-tion.'), ('con-', 'con'), ('-elder', 'elder'), ('mis-', 'mis'), ('Seventh-', 'Seventh'), ('-could', 'could'), ('-on', 'on'), ('-dining-room', 'dining-room'), ('Ex-', 'Ex'), ('-', '')] PUR19181219-V18-20-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('twenty-five-cent-a-', 'twenty-five-cent-a'), ('dur-', 'dur'), ('loyal-', 'loyal'), ('mis-', 'mis'), ('-a', 'a'), ('Mem-', 'Mem')] PUR19181226-V18-21-page1.txt: [('-Office', 'Office'), ('Treasurer.-', 'Treasurer.'), ('Emer-', 'Emer'), ('-', ''), ('-Publicity', 'Publicity'), ('-So', 'So'), ('"to-day"-', '"to-day"'), ('ex-', 'ex')] PUR19181226-V18-21-page2.txt: [('Her-', 'Her'), ('Ser-', 'Ser'), ('in-', 'in'), ('-page', 'page'), ('in-', 'in')] PUR19181226-V18-21-page3.txt: [('read-', 'read'), ('proph-', 'proph'), ('cour-', 'cour'), ('sup-', 'sup'), ('-', ''), ('-', '')] PUR19181226-V18-21-page4.txt: [('-page', 'page'), ('the-', 'the'), ('avail-', 'avail'), ('-page', 'page'), ('-page.', 'page.'), ('co-', 'co'), ('mis-', 'mis'), ('arti-', 'arti'), ('-', '')] PUR19181226-V18-21-page5.txt: [('Maga-', 'Maga'), ('use.-', 'use.')] PUR19181226-V18-21-page6.txt: [('-', ''), ('were-', 'were'), ('-', ''), ('-', ''), ('Suth-', 'Suth')] PUR19181226-V18-21-page7.txt: [('-church', 'church'), ('com-', 'com'), ('-services', 'services'), ('Mis-', 'Mis'), ('-ago', 'ago'), ('-children', 'children'), ('-children', 'children'), ('-the', 'the'), ('-as', 'as'), ('-the', 'the'), ('-the', 'the'), ('John-', 'John'), ('corre-', 'corre'), ('-touiSe', 'touiSe'), ('tim-', 'tim')] PUR19181226-V18-21-page8.txt: [('-', ''), ('-', ''), ('suffer-', 'suffer'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ses-', 'ses'), ('-of', 'of'), ('-an', 'an'), ('-titled', 'titled'), ('-prudent', 'prudent'), ('trans-', 'trans'), ('-', ''), ('il-', 'il'), ('-', ''), ('--', '-'), ('--', '-'), ('per-', 'per'), ('-that', 'that'), ('-', ''), ('-', '')] PUR19190102-V18-22-page1.txt: [('-Secretary', 'Secretary'), ('consecra-', 'consecra'), ('fu-', 'fu'), ('de-', 'de'), ('-Old', 'Old'), ('to-day--', 'to-day-'), ('-Or', 'Or'), ('-"Going', '"Going'), ('year-', 'year'), ('---', '--')] PUR19190102-V18-22-page2.txt: [('-will', 'will'), ('-or', 'or'), ('urgency-', 'urgency'), ('dur-', 'dur'), ('-', '')] PUR19190102-V18-22-page3.txt: [('fam-', 'fam'), ('-to', 'to'), ('ef-', 'ef'), ('-', ''), ('vil-', 'vil'), ('bed-', 'bed')] PUR19190102-V18-22-page4.txt: [('-with', 'with'), ('seri-', 'seri'), ('cable-', 'cable')] PUR19190102-V18-22-page5.txt: [('Car-', 'Car'), ('-O', 'O'), ('Down-', 'Down'), ('Hender-', 'Hender'), ('By-', 'By'), ('prin-', 'prin'), ('resurrec-', 'resurrec'), ('mission-', 'mission'), ('rel-', 'rel'), ('-', ''), ('Sis-', 'Sis')] PUR19190102-V18-22-page6.txt: [('Glen-', 'Glen'), ('-', ''), ('-superior', 'superior')] PUR19190102-V18-22-page7.txt: [('in-', 'in'), ('to-', 'to'), ('-Recorder"', 'Recorder"'), ('can-', 'can'), ('-Vs.', 'Vs.'), ('-', ''), ('Hebarct-', 'Hebarct')] PUR19190102-V18-22-page8.txt: [('-', ''), ('pres-', 'pres'), ('mortifi-', 'mortifi'), ('-earn', 'earn'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('read-', 'read'), ('-the', 'the'), ('pro-', 'pro'), ('-claimed', 'claimed'), ('-in', 'in')] PUR19190109-V18-23-page1.txt: [('-', ''), ('-', '')] PUR19190109-V18-23-page2.txt: [('van-', 'van'), ('-', ''), ('inter-', 'inter'), ('de-', 'de'), ('-', ''), ('Chris-', 'Chris'), ('gath-', 'gath'), ('-', '')] PUR19190109-V18-23-page3.txt: [('Pa-', 'Pa'), ('path---', 'path--'), ('-on', 'on'), ('Over-', 'Over'), ('sure-', 'sure'), ('an-', 'an'), ('-the', 'the'), ('-of', 'of'), ('-a', 'a')] PUR19190109-V18-23-page4.txt: [('Jesus.-', 'Jesus.'), ('num-', 'num'), ('com-', 'com'), ('incompar-', 'incompar')] PUR19190109-V18-23-page5.txt: [('Seran-', 'Seran'), ('dis-', 'dis'), ('-can', 'can'), ('evangelis-', 'evangelis'), ('-', ''), ('Oc-', 'Oc'), ('Pa-', 'Pa'), ('lan-', 'lan'), ('is-', 'is'), ('-Box', 'Box'), ('-', ''), ('mis-', 'mis'), ('mes-', 'mes')] PUR19190109-V18-23-page6.txt: [('-those', 'those'), ('diffi-', 'diffi'), ('for-', 'for'), ('mem-', 'mem'), ('over-', 'over'), ('Col-', 'Col'), ('great-', 'great')] PUR19190109-V18-23-page7.txt: [('re-', 're'), ('-work', 'work'), ('ex-', 'ex'), ('un-', 'un'), ('re-', 're'), ('-Thyself', 'Thyself'), ('-..', '..'), ('-J', 'J'), ('in-', 'in'), ('-centive', 'centive'), ('manave-', 'manave'), ('-', ''), ('-to', 'to')] PUR19190109-V18-23-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('strug-', 'strug'), ('with-', 'with'), ('ap-', 'ap'), ('thir-', 'thir'), ('Pre-', 'Pre')] PUR19190116-V18-24-page1.txt: [('-the', 'the'), ('-Secretary', 'Secretary'), ('un-', 'un'), ('-do', 'do'), ('-the', 'the'), ('-many', 'many'), ('-tithe', 'tithe'), ('-', ''), ('-very', 'very'), ('-', ''), ('-curse', 'curse'), ('thank-of-', 'thank-of'), ('-return', 'return')] PUR19190116-V18-24-page2.txt: [('morn-', 'morn'), ('-', ''), ('-', ''), ('earl-', 'earl'), ('re-', 're'), ('-', ''), ('privi-', 'privi'), ('effic-', 'effic'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19190116-V18-24-page3.txt: [('pos-', 'pos'), ('-', ''), ('consecra-', 'consecra'), ('responsibili-', 'responsibili'), ('opera-', 'opera'), ('-other', 'other'), ('unus-', 'unus'), ('-church', 'church')] PUR19190116-V18-24-page4.txt: [('-', ''), ('-', ''), ('so-', 'so')] PUR19190116-V18-24-page5.txt: [('P-', 'P'), ('Inter-', 'Inter'), ('same----', 'same---'), ('--What', '-What'), ('an-', 'an'), ('-cent-a-week', 'cent-a-week'), ('Af-', 'Af'), ('interest-', 'interest')] PUR19190116-V18-24-page6.txt: [('lit-', 'lit'), ('-', ''), ('-the', 'the'), ('-to', 'to'), ('sus-', 'sus'), ('-backbite', 'backbite'), ('-sOciety', 'sOciety')] PUR19190116-V18-24-page7.txt: [('ex-', 'ex'), ('-of', 'of'), ('-called', 'called'), ('Coll-', 'Coll'), ('con-', 'con'), ('corre-', 'corre'), ('inser-', 'inser'), ('Val-', 'Val'), ('-Mrs.', 'Mrs.'), ('pre-', 'pre')] PUR19190116-V18-24-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-this', 'this'), ('sen-', 'sen'), ('-ten', 'ten'), ('con-', 'con'), ('hu-', 'hu'), ('Su-', 'Su'), ('as-', 'as')] PUR19190123-V18-25-page1.txt: [('-Box', 'Box'), ('-J.', 'J.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-F.', 'F.'), ('-J.', 'J.'), ('-Frank', 'Frank'), ('-J.W.', 'J.W.'), ('-', ''), ('-', ''), ('Mem-', 'Mem')] PUR19190123-V18-25-page2.txt: [('Las-', 'Las'), ('.-', '.')] PUR19190123-V18-25-page3.txt: [('-', ''), ('Cen-', 'Cen'), ('-', ''), ('-', '')] PUR19190123-V18-25-page4.txt: [('-We', 'We'), ('church-', 'church'), ('en-', 'en'), ('Ox-', 'Ox'), ('-', ''), ('-', ''), ('de-', 'de'), ('Leg-', 'Leg'), ('ex-', 'ex'), ('mes-', 'mes'), ('"Recorder"-', '"Recorder"')] PUR19190123-V18-25-page5.txt: [('-center', 'center'), ('assur-', 'assur'), ('sen-', 'sen'), ('-', ''), ('-', ''), ('-H.', 'H.'), ('con-', 'con'), ('-', ''), ('i--', 'i-')] PUR19190123-V18-25-page6.txt: [('-eternity', 'eternity'), ('circum-', 'circum')] PUR19190123-V18-25-page7.txt: [('com-', 'com'), ('news-', 'news'), ('-papers', 'papers'), ('S.-', 'S.'), ('cor-', 'cor'), ('-kii', 'kii')] PUR19190123-V18-25-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-letter', 'letter'), ('-', ''), ('sigma-', 'sigma'), ('-Union', 'Union'), ('-', ''), ('Jan-', 'Jan'), ('Califor-', 'Califor'), ('receiv-', 'receiv'), ('an-', 'an'), ('"God-', '"God'), ('of-', 'of')] PUR19190130-V18-26-page1.txt: [('..-', '..'), ('-"He', '"He'), ('-Through', 'Through'), ('-"He', '"He'), ('up-', 'up')] PUR19190130-V18-26-page2.txt: [('recon-', 'recon')] PUR19190130-V18-26-page3.txt: [('cam-', 'cam'), ('-our', 'our'), ('Inter-', 'Inter'), ('al-', 'al'), ("Charles'G.-", "Charles'G."), ('-it', 'it'), ('-merchant', 'merchant'), ('peo-', 'peo'), ('Warren-', 'Warren'), ('An-', 'An')] PUR19190130-V18-26-page4.txt: [('Soul-', 'Soul'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('-', ''), ('-', ''), ('sur-', 'sur'), ('confer-', 'confer'), ('response-', 'response')] PUR19190130-V18-26-page5.txt: [('-', ''), ('-', ''), ('.-', '.'), ('-earnest', 'earnest'), ('-depths', 'depths'), ('-', ''), ('daugh-', 'daugh'), ('as-', 'as'), ('-God', 'God'), ('carry-', 'carry')] PUR19190130-V18-26-page6.txt: [('-Kings', 'Kings'), ('-ago', 'ago'), ('Trin-', 'Trin'), ('daugh-', 'daugh'), ('ill-', 'ill'), ('-few', 'few'), ('Wheel-', 'Wheel'), ('Seventh-', 'Seventh'), ('tuber-', 'tuber'), ('dis-', 'dis'), ('uncom-', 'uncom')] PUR19190130-V18-26-page7.txt: [('-', ''), ('-sisters', 'sisters'), ('rela-', 'rela'), ('-', ''), ('Fran-', 'Fran'), ('Assoc-', 'Assoc'), ('chick-', 'chick'), ('-we', 'we'), ('Cali-', 'Cali'), ('Cali-', 'Cali'), ('ed-', 'ed'), ('person-', 'person'), ('-closing', 'closing'), ('eon-', 'eon'), ('cli-', 'cli'), ('magni-', 'magni'), ('Val-', 'Val')] PUR19190130-V18-26-page8.txt: [('-', ''), ('be-', 'be'), ('-', ''), ('-', ''), ('-', ''), ('ma-', 'ma'), ('leg-', 'leg'), ('op-', 'op'), ('-this', 'this')] PUR19190206-V18-27-page1.txt: [('neith-', 'neith')] PUR19190206-V18-27-page2.txt: [('Sun-', 'Sun'), ('Farns-', 'Farns'), ('mar-', 'mar'), ('superintend-', 'superintend'), ('deep-', 'deep'), ('con-', 'con'), ('cense-', 'cense')] PUR19190206-V18-27-page3.txt: [('amuse-', 'amuse'), ('Jan-', 'Jan'), ('ves-', 'ves'), ('plant-', 'plant')] PUR19190206-V18-27-page4.txt: [('mechan-', 'mechan'), ('employ-', 'employ'), ('suf-', 'suf'), ('princi-', 'princi'), ('en-', 'en'), ('produc-', 'produc'), ('mo-', 'mo'), ('Emman-', 'Emman')] PUR19190206-V18-27-page5.txt: [('-', ''), ('pres-', 'pres'), ('op-', 'op'), ('in-', 'in')] PUR19190206-V18-27-page6.txt: [('syste-', 'syste'), ('-while', 'while'), ('con-', 'con'), ('edu-', 'edu'), ('Contro-', 'Contro'), ('-Ukiah', 'Ukiah'), ('Long-', 'Long'), ('in-', 'in')] PUR19190206-V18-27-page7.txt: [('Sani-', 'Sani'), ('-', ''), ('broth-', 'broth'), ('mar-', 'mar'), ('Ad-', 'Ad'), ('con-', 'con'), ('cli-', 'cli')] PUR19190206-V18-27-page8.txt: [('recon-', 'recon'), ('at-', 'at'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('immedi-', 'immedi'), ('liquor-', 'liquor'), ('sym-', 'sym'), ('extend-', 'extend')] PUR19190213-V18-28-page1.txt: [('-Young', 'Young'), ('prompt-', 'prompt'), ('di-', 'di'), ('bur-', 'bur'), ('De-', 'De'), ('-The', 'The')] PUR19190213-V18-28-page2.txt: [('-be.', 'be.'), ('funda-', 'funda'), ('stu-', 'stu'), ('-dent', 'dent'), ('our-', 'our'), ('sec-', 'sec'), ('relig-', 'relig')] PUR19190213-V18-28-page3.txt: [('state-', 'state'), ('hus-', 'hus')] PUR19190213-V18-28-page4.txt: [('Rupert-', 'Rupert')] PUR19190213-V18-28-page5.txt: [('impa-', 'impa'), ('busi-', 'busi'), ('-', ''), ('Ca-', 'Ca'), ('dif-', 'dif'), ('dwell-', 'dwell'), ('trium-', 'trium'), ('attempt-', 'attempt'), ('re-', 're'), ('-sponsible', 'sponsible'), ('on-', 'on')] PUR19190213-V18-28-page6.txt: [('num-', 'num'), ('be-', 'be'), ('suf-', 'suf'), ('-', ''), ('circum-', 'circum'), ('privi-', 'privi'), ('se.-', 'se.'), ('Mc-', 'Mc'), ('ex-', 'ex'), ('Jan-', 'Jan')] PUR19190213-V18-28-page7.txt: [('moun-', 'moun'), ('sur-', 'sur'), ('-all', 'all'), ('Hollen-', 'Hollen'), ('Electri-', 'Electri'), ('-meetings', 'meetings'), ('-which', 'which'), ('-writer', 'writer'), ('consist-', 'consist'), ('-exit', 'exit'), ('-many', 'many')] PUR19190213-V18-28-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('co-', 'co'), ('-Christ', 'Christ')] PUR19190220-V18-29-page1.txt: [('-Carmichael', 'Carmichael'), ('-the', 'the'), ('-soon', 'soon'), ('-this', 'this'), ('-', ''), ('de-', 'de'), ('-this', 'this'), ('-', ''), ('-brethren', 'brethren'), ('-good', 'good'), ('-', ''), ('-', ''), ('-and', 'and'), ('-', ''), ('-theories', 'theories'), ('-', ''), ('-Lord', 'Lord'), ('-enter', 'enter')] PUR19190220-V18-29-page2.txt: [('Port-of-', 'Port-of'), ('-world.', 'world.'), ('-world', 'world')] PUR19190220-V18-29-page3.txt: [('-poorly', 'poorly'), ('any-', 'any')] PUR19190220-V18-29-page4.txt: [('de-', 'de'), ('-', ''), ('-usually', 'usually'), ('love--', 'love-'), ('the--', 'the-'), ('-because', 'because'), ('re-', 're'), ('-faithful', 'faithful')] PUR19190220-V18-29-page5.txt: [('-', ''), ('Barstow-', 'Barstow'), ('in-', 'in'), ('Meek-', 'Meek'), ('at-', 'at'), ('accom-', 'accom'), ('-it', 'it'), ('ar-', 'ar'), ('fin-', 'fin')] PUR19190220-V18-29-page6.txt: [('colpor-', 'colpor')] PUR19190220-V18-29-page7.txt: [('-do', 'do'), ('ad-', 'ad'), ('-dressed', 'dressed'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Cal.', 'Cal.'), ('-of', 'of'), ('-', ''), ('Associa-', 'Associa'), ('-', ''), ('-all', 'all'), ('Scap-', 'Scap')] PUR19190220-V18-29-page8.txt: [('-', ''), ('um-', 'um'), ('five-', 'five'), ('-College', 'College'), ('Medi-', 'Medi'), ('-Elders', 'Elders'), ('re-', 're')] PUR19190227-V18-30-page1.txt: [('or-', 'or'), ('fram-', 'fram'), ('preva-', 'preva'), ('con-', 'con'), ('-a', 'a'), ('-upon', 'upon'), ('-', ''), ('-', ''), ('un-', 'un'), ('-with', 'with'), ('-strong', 'strong'), ('-', ''), ('-be', 'be'), ('-universal', 'universal'), ('good-', 'good'), ('-thing', 'thing'), ('-', '')] PUR19190227-V18-30-page2.txt: [('-', ''), ('-sse', 'sse'), ('am-', 'am'), ('migbe-', 'migbe'), ('will.-', 'will.'), ('insti-', 'insti'), ('peo-', 'peo'), ('-the', 'the'), ('in-', 'in'), ('-and', 'and'), ('-promise', 'promise'), ('im-', 'im'), ('edu-', 'edu')] PUR19190227-V18-30-page3.txt: [('of-', 'of'), ('ef-', 'ef'), ('-v', 'v'), ('visit-', 'visit'), ('-t', 't'), ('-', ''), ('-A', 'A'), ('disap-', 'disap'), ('vis-', 'vis'), ('-.itching', '.itching')] PUR19190227-V18-30-page4.txt: [('-', ''), ('-', ''), ('Cotton-', 'Cotton'), ('invest-', 'invest'), ('apprecia-', 'apprecia'), ('meet-', 'meet'), ('-', ''), ('may-', 'may'), ('"Recorder"-', '"Recorder"')] PUR19190227-V18-30-page5.txt: [('-labors', 'labors'), ('re-', 're'), ('-attention', 'attention'), ('cer-', 'cer'), ('f-', 'f'), ('-torture', 'torture'), ('-with', 'with'), ('him-', 'him'), ('-not', 'not')] PUR19190227-V18-30-page6.txt: [('-diseased', 'diseased'), ('"Signs"-', '"Signs"'), ('pres-', 'pres'), ('in-', 'in'), ('hu-', 'hu')] PUR19190227-V18-30-page7.txt: [('-disturbance', 'disturbance'), ('every-', 'every'), ('-', ''), ('pre-', 'pre'), ('-cover', 'cover'), ('-', ''), ('An-', 'An'), ('-other', 'other'), ('Anarchy.-', 'Anarchy.'), ('-quick', 'quick'), ('-all', 'all'), ('chick-', 'chick'), ('--Boa', '-Boa'), ('-B.', 'B.'), ('-M.', 'M.'), ('-F.', 'F.'), ('-J.', 'J.'), ('-M.', 'M.'), ('-Frank', 'Frank'), ('-J.W.', 'J.W.'), ('-advertisers', 'advertisers'), ('-', ''), ('be-', 'be'), ('-White', 'White'), ('-', ''), ('-.', '.')] PUR19190227-V18-30-page8.txt: [('-names', 'names'), ('-', ''), ('-helpful', 'helpful'), ('-after', 'after'), ('Ser-', 'Ser'), ('daugh-', 'daugh'), ('pre-', 'pre'), ('-', ''), ('-Brethren', 'Brethren'), ('neigh-', 'neigh'), ('-', '')] PUR19190306-V18-31-page1.txt: [('-Healey', 'Healey'), ('-work', 'work'), ('-against', 'against'), ('-from', 'from'), ('-were', 'were'), ('-against', 'against'), ('pre-', 'pre'), ('-vail.', 'vail.'), ('-the', 'the'), ('-March', 'March'), ('-up', 'up'), ('-work', 'work'), ('con-', 'con'), ('be-', 'be'), ('-gets', 'gets'), ('num-', 'num'), ('pro-', 'pro')] PUR19190306-V18-31-page2.txt: [('les-', 'les'), ('the-', 'the'), ('Pacific-', 'Pacific'), ('hold-', 'hold'), ('-courage', 'courage'), ('com-', 'com'), ('com-', 'com'), ('Corre-', 'Corre')] PUR19190306-V18-31-page3.txt: [('de-', 'de'), ('-are', 'are'), ('-some', 'some'), ('-Meeker.', 'Meeker.'), ('-play', 'play'), ('for-', 'for'), ('-in', 'in'), ('and--', 'and-'), ('-every', 'every'), ('-and', 'and'), ('-of', 'of')] PUR19190306-V18-31-page4.txt: [('-', ''), ('as-', 'as'), ('liter-', 'liter'), ('statement-', 'statement'), ('-', ''), ('Member-', 'Member')] PUR19190306-V18-31-page5.txt: [('-out', 'out'), ('--', '-'), ('-especially', 'especially'), ('-attack', 'attack'), ('--of', '-of'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-audi-', 'audi-'), ('-"to', '"to'), ('Mis-', 'Mis'), ('-', '')] PUR19190306-V18-31-page6.txt: [('-', ''), ('con-', 'con'), ('evan-', 'evan'), ('to-', 'to'), ('-coming', 'coming'), ('-L.', 'L.')] PUR19190306-V18-31-page7.txt: [('-', ''), ('-all', 'all'), ('-Box', 'Box'), ('-J.', 'J.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-F.', 'F.'), ('-.T.', '.T.'), ('-M.', 'M.'), ('-Frank', 'Frank'), ('--.T.W.', '-.T.W.'), ('-', ''), ('Scap-', 'Scap')] PUR19190306-V18-31-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('be-', 'be'), ('-.', '.'), ('Califor-', 'Califor'), ('exception-', 'exception'), ('-All', 'All'), ('Timed--', 'Timed-')] PUR19190313-V18-32-page1.txt: [('-operation', 'operation'), ('-', ''), ('lack-', 'lack'), ('indi-', 'indi'), ('defi-', 'defi'), ('-that', 'that'), ('-early', 'early'), ('-Fourth', 'Fourth'), ('-', '')] PUR19190313-V18-32-page2.txt: [('-', ''), ('-days', 'days'), ('-the', 'the'), ('hear-', 'hear'), ('-and', 'and'), ('-will', 'will'), ('-', ''), ('com-', 'com'), ('wit-', 'wit')] PUR19190313-V18-32-page3.txt: [('-by', 'by'), ('-', ''), ('pro-', 'pro'), ('recog-', 'recog'), ('-be', 'be'), ('of-', 'of'), ('-missionary', 'missionary'), ('com-', 'com')] PUR19190313-V18-32-page4.txt: [('.al.It-', '.al.It'), ('Cali-', 'Cali'), ('privi-', 'privi'), ('-a', 'a'), ('or-', 'or')] PUR19190313-V18-32-page5.txt: [('breth-', 'breth'), ('Nations."-', 'Nations."'), ('ad-', 'ad'), ('-tion', 'tion')] PUR19190313-V18-32-page6.txt: [('ef-', 'ef'), ('packed-', 'packed'), ('-', ''), ('pres-', 'pres')] PUR19190313-V18-32-page7.txt: [('An-', 'An'), ('deter-', 'deter'), ('re--', 're-'), ('accompa-', 'accompa'), ('advertise-', 'advertise'), ('Bel-', 'Bel'), ('-', ''), ('experi-', 'experi'), ('sug-', 'sug'), ('affilia-', 'affilia')] PUR19190313-V18-32-page8.txt: [('lib-', 'lib'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-Healey', 'Healey'), ('-the', 'the'), ('-was', 'was'), ('-', ''), ('-', ''), ('ex-', 'ex'), ('-petted', 'petted'), ('be-', 'be'), ('Leg-', 'Leg'), ('-Phoenix', 'Phoenix'), ('secur-', 'secur')] PUR19190320-V18-33-page1.txt: [('-..', '..'), ('de-', 'de'), ('Ad-', 'Ad'), ('-oying', 'oying'), ('-', ''), ('-Jan.', 'Jan.')] PUR19190320-V18-33-page2.txt: [('-', ''), ('new-', 'new'), ('No-', 'No'), ('re-', 're'), ('meet-', 'meet'), ('--hopeless.', '-hopeless.'), ('com-', 'com'), ('re-', 're')] PUR19190320-V18-33-page3.txt: [('-the', 'the'), ('-school', 'school'), ('build-', 'build'), ('Sab-', 'Sab'), ('chil-', 'chil'), ('Any-', 'Any'), ('Mon-', 'Mon'), ('present-', 'present'), ('await-', 'await')] PUR19190320-V18-33-page4.txt: [('heat-', 'heat'), ('sub-', 'sub'), ('gar-', 'gar'), ('-of', 'of'), ('consid-', 'consid'), ('some-', 'some'), ('per-', 'per')] PUR19190320-V18-33-page5.txt: [('-help', 'help'), ('-secre-', 'secre-'), ('enthu-', 'enthu'), ('re-', 're'), ('-been', 'been'), ('render-', 'render')] PUR19190320-V18-33-page6.txt: [('institute.-', 'institute.'), ('-Because', 'Because'), ('mes-', 'mes'), ('Presbyte-', 'Presbyte'), ('Helena-', 'Helena'), ('-show', 'show'), ('king-', 'king')] PUR19190320-V18-33-page7.txt: [('Con-', 'Con'), ('dele-', 'dele'), ('An-', 'An'), ('-five', 'five'), ('advancement."-', 'advancement."'), ('Lin-', 'Lin'), ('---', '--'), ('Ad-', 'Ad'), ('-Box', 'Box'), ('-J.', 'J.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-E.', 'E.'), ('-.I.', '.I.'), ('Ste-', 'Ste'), ('-Frank', 'Frank'), ('-', ''), ('-M.', 'M.')] PUR19190320-V18-33-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19190327-V18-34-page1.txt: [('remark-', 'remark'), ('re-', 're'), ('-capacity', 'capacity'), ('con-', 'con'), ('unit-', 'unit'), ('pos-', 'pos'), ('-port', 'port'), ('-name', 'name'), ('acade-', 'acade'), ('-related', 'related')] PUR19190327-V18-34-page2.txt: [('RECORDER-', 'RECORDER'), ('Mis-', 'Mis'), ('re-', 're'), ('-what', 'what'), ('-blessed', 'blessed'), ('glo-', 'glo'), ('mes-', 'mes'), ('-great', 'great'), ('col-', 'col'), ('be-', 'be')] PUR19190327-V18-34-page3.txt: [('-presentation', 'presentation'), ('tak-', 'tak'), ('ad-', 'ad'), ('Ari-', 'Ari'), ('-zona', 'zona'), ('ex-', 'ex'), ('-as', 'as'), ('-closer', 'closer'), ('-a', 'a'), ('doc-', 'doc'), ('Monday-', 'Monday'), ('Wood-', 'Wood')] PUR19190327-V18-34-page4.txt: [('-Ogden.', 'Ogden.'), ('-our', 'our'), ('-may', 'may'), ('Items-', 'Items'), ('-thought', 'thought')] PUR19190327-V18-34-page5.txt: [('-supply', 'supply'), ('El-', 'El'), ('taktug-', 'taktug'), ('fin-', 'fin'), ('-', ''), ('-do', 'do'), ("-Might'", "Might'"), ('co-', 'co')] PUR19190327-V18-34-page6.txt: [('in-', 'in'), ('to-', 'to'), ('fre-', 'fre'), ('-', ''), ('hours--', 'hours-'), ('start--', 'start-'), ('sev-', 'sev'), ('-of', 'of')] PUR19190327-V18-34-page7.txt: [('-', ''), ('Con-', 'Con'), ('-.Whenonly-', '.Whenonly-'), ('--was', '-was'), ('-', ''), ('-August', 'August'), ('-send', 'send'), ('secre-', 'secre'), ('-her', 'her'), ('Lough-', 'Lough'), ('-were', 'were'), ('writ-', 'writ'), ('-level', 'level'), ('pres-', 'pres'), ('-', ''), ('-', '')] PUR19190327-V18-34-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('indis-', 'indis'), ('-', ''), ('-', ''), ('tre-', 'tre'), ('deep-', 'deep'), ('of-', 'of'), ('sev-', 'sev'), ('-auliting', 'auliting'), ('El-', 'El'), ('out-', 'out'), ('Co-', 'Co'), ('Long-', 'Long'), ('per-', 'per')] PUR19190403-V18-35-page1.txt: [('else-', 'else'), ('pro-', 'pro'), ('-', ''), ('-cure', 'cure'), ('ap-', 'ap'), ('Con-', 'Con'), ('secretary-', 'secretary'), ('I-', 'I'), ('im-', 'im'), ('judg-', 'judg')] PUR19190403-V18-35-page2.txt: [('denawl-', 'denawl'), ('en-', 'en'), ('confer-', 'confer'), ('accom-', 'accom'), ('-', ''), ('they-', 'they'), ('out-', 'out')] PUR19190403-V18-35-page3.txt: [('Cali-', 'Cali'), ('ex-', 'ex'), ('Wil-', 'Wil'), ('re-', 're'), ('recom-', 'recom')] PUR19190403-V18-35-page4.txt: [('ad-', 'ad'), ('fol-', 'fol'), ('recent-', 'recent'), ('owing-', 'owing'), ('As-', 'As'), ('the-', 'the'), ('-called', 'called'), ('vie-', 'vie'), ('colpor-', 'colpor'), ('A-', 'A'), ('Brothel-', 'Brothel'), ('sell-', 'sell')] PUR19190403-V18-35-page5.txt: [('ap-', 'ap'), ('la-', 'la'), ('-seven', 'seven'), ('meet-', 'meet'), ('-each', 'each'), ('Fran-', 'Fran'), ('af-', 'af')] PUR19190403-V18-35-page6.txt: [('har-', 'har'), ('sev-', 'sev'), ('ear-', 'ear')] PUR19190403-V18-35-page7.txt: [('An-', 'An'), ('affilia-', 'affilia'), ('pres-', 'pres'), ('affili-', 'affili'), ('-Box', 'Box'), ('-J.', 'J.'), ('-B.', 'B.'), ('-M.', 'M.'), ('El-', 'El'), ('-F.', 'F.'), ('-J.', 'J.'), ('-M.', 'M.'), ('-Frank', 'Frank'), ('Seventh-', 'Seventh'), ('-J.W.', 'J.W.')] PUR19190403-V18-35-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('at-', 'at'), ('won-', 'won'), ('in-', 'in'), ('Cal-', 'Cal')] PUR19190410-V18-36-page1.txt: [('deter-', 'deter'), ('SUPPORT-', 'SUPPORT'), ('pro-', 'pro'), ('-the', 'the'), ('-her', 'her'), ('-it', 'it'), ('-women', 'women'), ('en-', 'en'), ('credit-', 'credit'), ('-', ''), ('-', ''), ('-.best', '.best'), ('of-', 'of'), ('-ten', 'ten'), ('-of', 'of')] PUR19190410-V18-36-page2.txt: [('Seventh-', 'Seventh'), ('be-', 'be'), ('de-', 'de'), ('Ar-', 'Ar')] PUR19190410-V18-36-page3.txt: [('state-', 'state'), ('every-', 'every'), ('-money', 'money'), ('Cal-', 'Cal'), ('Wise-', 'Wise'), ('celebrat-', 'celebrat'), ('nice-', 'nice')] PUR19190410-V18-36-page4.txt: [('experi-', 'experi'), ('col-', 'col'), ('cam-', 'cam'), ('El--', 'El-'), ('and-', 'and'), ('Neil--', 'Neil-'), ('Brother-', 'Brother'), ('Inter-', 'Inter'), ('-', ''), ('earnest-', 'earnest'), ('re-', 're'), ('-Three', 'Three'), ('-make', 'make')] PUR19190410-V18-36-page5.txt: [('-"people', '"people'), ('do-', 'do'), ('class-', 'class'), ('-es', 'es'), ('meth-', 'meth'), ('-ods', 'ods'), ('ev-', 'ev'), ('de-', 'de'), ('peo-', 'peo'), ('Mc-', 'Mc')] PUR19190410-V18-36-page6.txt: [('-o', 'o'), ('re--', 're-'), ('time-', 'time')] PUR19190410-V18-36-page7.txt: [('-', ''), ('-and', 'and'), ('twenty-five-cent-', 'twenty-five-cent'), ('-cent-a-week', 'cent-a-week'), ('coin-', 'coin'), ('-mendable.', 'mendable.'), ('any-', 'any'), ('in-', 'in')] PUR19190410-V18-36-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('nine-', 'nine'), ('-of', 'of'), ('-the', 'the'), ('doc-', 'doc'), ('-October', 'October'), ('who-', 'who'), ('-', ''), ('dis-', 'dis'), ('our-', 'our'), ('es-', 'es'), ('epi-', 'epi')] PUR19190417-V18-37-page1.txt: [('-that', 'that'), ('-that', 'that'), ('re-', 're'), ('Moun-', 'Moun')] PUR19190417-V18-37-page2.txt: [('-', ''), ('prop-', 'prop'), ('-', ''), ('-away', 'away'), ('superin-', 'superin'), ('Ger-', 'Ger')] PUR19190417-V18-37-page3.txt: [('re-', 're'), ('mis-', 'mis'), ('depart-', 'depart'), ('ex-', 'ex'), ('meet-', 'meet'), ('command-', 'command'), ('reach-', 'reach'), ('-', '')] PUR19190417-V18-37-page4.txt: [('con-', 'con'), ('in-', 'in'), ('be-', 'be'), ('pro-', 'pro'), ('-alone', 'alone'), ('Pub-', 'Pub'), ('in-', 'in')] PUR19190417-V18-37-page5.txt: [('-Coast', 'Coast'), ('-', ''), ('un-', 'un'), ('-family', 'family'), ('ac-', 'ac'), ('-complished.', 'complished.'), ('-Grand', 'Grand'), ('have-', 'have'), ('senti-', 'senti')] PUR19190417-V18-37-page6.txt: [('re-', 're'), ('ob-', 'ob'), ('sub-', 'sub'), ('re-', 're'), ('mes-', 'mes'), ('-hope.', 'hope.'), ('re-', 're')] PUR19190417-V18-37-page7.txt: [('ADVER-', 'ADVER'), ('-the', 'the'), ('Wanted.-', 'Wanted.'), ('Kind-heart-', 'Kind-heart'), ('-eel', 'eel'), ('-Accustomed', 'Accustomed'), ('-country.', 'country.'), ('-write', 'write'), ('Lin-', 'Lin'), ('-portion', 'portion'), ('Pa-', 'Pa'), ('-dignity.', 'dignity.'), ('-S.W.', 'S.W.'), ('-temper.', 'temper.'), ('-courage', 'courage'), ('-Box', 'Box'), ('-alms', 'alms'), ('-thrift', 'thrift'), ('-cruelty', 'cruelty'), ('-J.', 'J.'), ('-E.', 'E.'), ('-M.', 'M.'), ('-F.', 'F.'), ('Stit-', 'Stit'), ('-j.-', 'j.-'), ('-health', 'health'), ('-M.', 'M.'), ('-', ''), ('-Frank', 'Frank')] PUR19190417-V18-37-page8.txt: [('-', ''), ('de-', 'de'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('prob-', 'prob')] PUR19190424-V18-38-page1.txt: [('fail-', 'fail'), ('can-', 'can'), ('-day', 'day'), ('writ-', 'writ')] PUR19190424-V18-38-page2.txt: [('-', ''), ('-LCYN', 'LCYN'), ('\'neighbOring"-', '\'neighbOring"'), ('-sickle', 'sickle'), ('-', ''), ('-The', 'The'), ('--couple', '-couple'), ('-', ''), ('-experwife.', 'experwife.'), ('wan-', 'wan'), ('minis-', 'minis'), ('-secretary', 'secretary'), ('eon-', 'eon'), ('-', ''), ('-', '')] PUR19190424-V18-38-page3.txt: [('-Children.', 'Children.'), ('re-', 're'), ('mis-', 'mis'), ('-eral', 'eral')] PUR19190424-V18-38-page4.txt: [('fellow-', 'fellow'), ('Bless-', 'Bless'), ('-', ''), ('de-', 'de'), ('lunch-', 'lunch'), ('-Help', 'Help'), ('conver-', 'conver'), ('as-', 'as'), ('attend-', 'attend')] PUR19190424-V18-38-page5.txt: [('South-', 'South'), ('-for', 'for'), ('-on', 'on'), ('subscrip-', 'subscrip'), ('Sab-', 'Sab'), ('-', ''), ('-presented', 'presented'), ('offer-', 'offer'), ('-quarter', 'quarter'), ('post-', 'post'), ('re-', 're')] PUR19190424-V18-38-page6.txt: [('-', ''), ('arti-', 'arti'), ('-he', 'he'), ('in-', 'in'), ('an-', 'an'), ('exis-', 'exis'), ('Penn-', 'Penn'), ('fal-', 'fal'), ('-in', 'in')] PUR19190424-V18-38-page7.txt: [('-', ''), ('chil-', 'chil'), ('-the', 'the'), ('Kind-heart-', 'Kind-heart'), ('-Cal.', 'Cal.'), ('mission-', 'mission'), ('peo-', 'peo'), ('advertise-', 'advertise'), ('Sanitar-', 'Sanitar'), ('seven-', 'seven'), ('pul-', 'pul'), ('General-', 'General'), ('-', ''), ('Can-', 'Can'), ('Ceininittee.--', 'Ceininittee.-'), ('-', ''), ('-we', 'we'), ('-A', 'A')] PUR19190424-V18-38-page8.txt: [('to-', 'to'), ('-', ''), ('dis-', 'dis'), ('exig-', 'exig'), ('cam-', 'cam'), ('-that', 'that'), ('dark--', 'dark-')] PUR19190501-V18-39-page1.txt: [('-', ''), ('-to', 'to'), ('Cal-', 'Cal'), ('MOhanunedanisni.-', 'MOhanunedanisni.'), ('Ran-', 'Ran'), ('-', ''), ('Ben-', 'Ben'), ('noth-', 'noth')] PUR19190501-V18-39-page2.txt: [('diffi-', 'diffi'), ('or-', 'or'), ('Acad-', 'Acad')] PUR19190501-V18-39-page3.txt: [('-Utah', 'Utah'), ('build-', 'build'), ('prac-', 'prac'), ('-class', 'class'), ('-cox', 'cox'), ('as-', 'as'), ('man-', 'man'), ('fac-', 'fac'), ('re-', 're')] PUR19190501-V18-39-page4.txt: [('mis-', 'mis'), ('Inter-', 'Inter')] PUR19190501-V18-39-page5.txt: [('orga-', 'orga'), ('-Oakland', 'Oakland'), ('especial-', 'especial'), ('mis-', 'mis'), ('-the', 'the')] PUR19190501-V18-39-page6.txt: [('-', ''), ('-the', 'the'), ('read-', 'read'), ('Mil-', 'Mil'), ('train-', 'train'), ('woodwork-', 'woodwork'), ('advertise-', 'advertise')] PUR19190501-V18-39-page7.txt: [('-store', 'store'), ('-A', 'A'), ('-next', 'next'), ('-', ''), ('-', ''), ('-', '')] PUR19190501-V18-39-page8.txt: [('-PACIFIC', 'PACIFIC'), ('-death', 'death'), ('com-', 'com'), ('-', ''), ('-', ''), ('-one', 'one'), ('-the', 'the'), ('.-', '.'), ('to-', 'to'), ('FV-', 'FV')] PUR19190508-V18-40-page1.txt: [('-pox', 'pox'), ('-the', 'the'), ('-object', 'object'), ('-united.', 'united.'), ('-a', 'a'), ('mid-', 'mid'), ('-way', 'way'), ('-Justice', 'Justice'), ('un-', 'un'), ('students-', 'students'), ('students-', 'students')] PUR19190508-V18-40-page2.txt: [('-R-D', 'R-D'), ('be-', 'be'), ('ad-', 'ad'), ('-', ''), ('situa-', 'situa'), ('al-', 'al'), ('-As', 'As')] PUR19190508-V18-40-page3.txt: [('mat-', 'mat'), ('Love-', 'Love'), ('-more', 'more'), ('-to', 'to'), ('-missions', 'missions'), ('se-', 'se'), ('can-', 'can'), ('-', '')] PUR19190508-V18-40-page4.txt: [('sug-', 'sug'), ('believ-', 'believ'), ('be-', 'be'), ('Camp-', 'Camp')] PUR19190508-V18-40-page5.txt: [('-common.', 'common.'), ('be-', 'be'), ('-tents', 'tents'), ('-est', 'est'), ('dupli-', 'dupli'), ('Pa-', 'Pa'), ('Sab-', 'Sab'), ('Camp-', 'Camp')] PUR19190508-V18-40-page6.txt: [('demon-', 'demon'), ('prac-', 'prac'), ('camp-', 'camp'), ('San-', 'San'), ('prepar-', 'prepar'), ('in-', 'in'), ('pro-', 'pro'), ('seen--', 'seen-')] PUR19190508-V18-40-page7.txt: [('How-', 'How'), ('mission-', 'mission'), ('out-', 'out'), ('-store.', 'store.'), ('Sanitar-', 'Sanitar'), ('-A', 'A'), ('-Box', 'Box'), ('-J.', 'J.'), ('-B.', 'B.'), ('-M.', 'M.'), ('-F.', 'F.'), ('-r.', 'r.'), ('-M.', 'M.'), ('-Frank', 'Frank'), ('-J.W.', 'J.W.'), ('-', '')] PUR19190508-V18-40-page8.txt: [('in-', 'in'), ('rea-', 'rea'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-contact', 'contact'), ('in-', 'in'), ('-', '')] PUR19190515-V18-41-page1.txt: [('lat-', 'lat'), ('-Cady', 'Cady'), ('message.-', 'message.'), ('Gen-', 'Gen'), ('Confer-', 'Confer')] PUR19190515-V18-41-page2.txt: [('prom-', 'prom'), ('Confer-', 'Confer'), ('-and', 'and'), ('-', ''), ('Don-', 'Don'), ('-secure', 'secure'), ('prepar-', 'prepar'), ('-', ''), ('camp-', 'camp')] PUR19190515-V18-41-page3.txt: [('Cotton-', 'Cotton'), ('offi-', 'offi'), ('mem-', 'mem'), ('or-', 'or')] PUR19190515-V18-41-page4.txt: [('up-', 'up'), ('en-', 'en'), ('separ-', 'separ'), ('Proph-', 'Proph')] PUR19190515-V18-41-page5.txt: [('-', ''), ('Confer-', 'Confer')] PUR19190515-V18-41-page6.txt: [('pro-', 'pro')] PUR19190515-V18-41-page7.txt: [('Sani-', 'Sani'), ('-o', 'o'), ('accompa-', 'accompa'), ('-store', 'store'), ('-', ''), ('-', ''), ('-A.', 'A.'), ('-roomed', 'roomed'), ('Cali-', 'Cali')] PUR19190515-V18-41-page8.txt: [('dona-', 'dona'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('be-', 'be'), ('per-', 'per'), ('re-', 're'), ('Truth"-', 'Truth"'), ('-noble', 'noble')] PUR19190522-V18-42-page1.txt: [('-', ''), ('F---', 'F--'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('--', '-'), ('ex-', 'ex'), ('-been', 'been'), ('peo-', 'peo')] PUR19190522-V18-42-page2.txt: [('Inter-', 'Inter'), ('Week-', 'Week'), ('-', ''), ('-', ''), ('spread-', 'spread')] PUR19190522-V18-42-page3.txt: [('Sun-', 'Sun'), ('some-', 'some'), ('com-', 'com'), ('peo-', 'peo'), ('inter-', 'inter'), ('Twenty-five-', 'Twenty-five'), ('Lit-', 'Lit'), ('col-', 'col'), ('Wheel-', 'Wheel'), ('em-', 'em'), ('Prai-', 'Prai')] PUR19190522-V18-42-page4.txt: [('gener-', 'gener'), ('colpor-', 'colpor'), ('Barstow-', 'Barstow'), ('for-', 'for'), ('out--', 'out-'), ('Elder-', 'Elder'), ('at-', 'at'), ('cir-', 'cir')] PUR19190522-V18-42-page5.txt: [('mission-', 'mission'), ('-The', 'The'), ('en-', 'en'), ('mem-', 'mem'), ('insti-', 'insti'), ('-has', 'has')] PUR19190522-V18-42-page6.txt: [('Wal-', 'Wal'), ('determi-', 'determi'), ('Seventh--', 'Seventh-'), ('democ-', 'democ'), ('together-', 'together'), ('-', ''), ('-', '')] PUR19190522-V18-42-page7.txt: [('-one', 'one'), ('-child', 'child'), ('-A', 'A'), ('-one', 'one'), ('-water', 'water'), ('-Canby', 'Canby'), ('pasture-', 'pasture'), ('-could', 'could'), ('orchard-', 'orchard'), ('-Medical', 'Medical'), ('How-', 'How'), ('informa-', 'informa'), ('Mayers-', 'Mayers'), ('-.of', '.of'), ('-', ''), ('-', '')] PUR19190522-V18-42-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('plan-', 'plan'), ('-', ''), ('camp-', 'camp'), ('conveni-', 'conveni'), ('com-', 'com')] PUR19190529-V18-43-page1.txt: [('-', ''), ("'Present-", "'Present"), ('-Seventh-day', 'Seventh-day'), ('ad-', 'ad'), ('-autumn."', 'autumn."'), ('-been', 'been'), ('-than', 'than'), ('-', ''), ('-riches', 'riches'), ('-', ''), ('re-', 're'), ('pa-', 'pa'), ('--', '-'), ('-', ''), ('mission-', 'mission'), ('-will', 'will'), ('-acbut', 'acbut'), ('-', ''), ('tr-', 'tr')] PUR19190529-V18-43-page2.txt: [('atten-', 'atten'), ('twenty-five-', 'twenty-five'), ('com-', 'com'), ('-', ''), ('-', ''), ('-Review', 'Review'), ('sur-', 'sur'), ('Sev-', 'Sev'), ('-cent-a-week', 'cent-a-week'), ('-cent-aground.', 'cent-aground.')] PUR19190529-V18-43-page3.txt: [('-school', 'school'), ('depart-', 'depart'), ('-of', 'of'), ('quan-', 'quan'), ('en-', 'en')] PUR19190529-V18-43-page4.txt: [('-', ''), ('col-', 'col'), ('-of', 'of')] PUR19190529-V18-43-page5.txt: [('sis-', 'sis'), ('con-', 'con'), ('-school', 'school'), ('responsi-', 'responsi')] PUR19190529-V18-43-page6.txt: [('-', ''), ('-to', 'to'), ('-', ''), ('-help', 'help'), ('-.-', '.-'), ('Him-', 'Him'), ('the-', 'the'), ('how-', 'how'), ('-.', '.')] PUR19190529-V18-43-page7.txt: [("-P'lose.", "P'lose."), ('-A', 'A'), ('tail-', 'tail')] PUR19190529-V18-43-page8.txt: [('under-', 'under'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('WOR-', 'WOR'), ('-for', 'for'), ('-as', 'as'), ('-', ''), ('sur-', 'sur')] PUR19190605-V18-44-page2.txt: [('re-ar-', 're-ar'), ('superin-', 'superin'), ('emphasiz-', 'emphasiz'), ('stu-', 'stu')] PUR19190605-V18-44-page3.txt: [('Du-', 'Du'), ('Fal-', 'Fal')] PUR19190605-V18-44-page4.txt: [('mis-', 'mis'), ('for-', 'for'), ('remain-', 'remain'), ('-', ''), ('"luke-', '"luke'), ('testi-', 'testi'), ('bur-', 'bur'), ('-work', 'work'), ('-', ''), ('pray-', 'pray'), ('va-', 'va'), ('achieve-', 'achieve')] PUR19190605-V18-44-page5.txt: [('sue-', 'sue')] PUR19190605-V18-44-page6.txt: [('de-', 'de')] PUR19190605-V18-44-page7.txt: [('ac-', 'ac'), ('revis-', 'revis'), ('Un-', 'Un'), ('-will', 'will'), ('-', '')] PUR19190605-V18-44-page8.txt: [('ad-', 'ad'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('form-', 'form'), ('Pub-', 'Pub'), ('-', '')] PUR19190612-V18-45-page1.txt: [('res-', 'res'), ('-', ''), ('Wher-', 'Wher'), ('-Unless', 'Unless')] PUR19190612-V18-45-page2.txt: [('evil-speak-', 'evil-speak'), ('bless-', 'bless')] PUR19190612-V18-45-page3.txt: [('Ad-', 'Ad'), ('-', ''), ('at-', 'at'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19190612-V18-45-page4.txt: [('his-', 'his'), ('mis-', 'mis'), ('-eve', 'eve'), ('fu-', 'fu'), ('or-', 'or')] PUR19190612-V18-45-page5.txt: [('Unfold-', 'Unfold'), ('sea-', 'sea'), ('subscrip-', 'subscrip'), ('se-', 'se'), ('"Pres-', '"Pres'), ('Michi-', 'Michi')] PUR19190612-V18-45-page6.txt: [('-small', 'small'), ('be-', 'be'), ('Mag-', 'Mag')] PUR19190612-V18-45-page7.txt: [('educa-', 'educa'), ('advertise-', 'advertise'), ('-more', 'more'), ('twenty-', 'twenty')] PUR19190612-V18-45-page8.txt: [('-Weekly', 'Weekly'), ('can-', 'can'), ('-', ''), ('-', ''), ('-', ''), ('Japa-', 'Japa'), ('-', ''), ('-', ''), ('lan-', 'lan'), ('com-', 'com'), ('appre-', 'appre'), ('de-', 'de'), ('seri-', 'seri')] PUR19190619-V18-46-page1.txt: [('im-', 'im'), ('El-', 'El'), ('inter-', 'inter'), ('-more', 'more'), ('meet-', 'meet'), ('-celebrate', 'celebrate'), ('sub-', 'sub'), ('ad-', 'ad'), ('meas-', 'meas')] PUR19190619-V18-46-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('thick-', 'thick'), ('de-', 'de'), ('-forth', 'forth'), ('com-', 'com')] PUR19190619-V18-46-page3.txt: [('funda-', 'funda'), ('-', ''), ('-', ''), ('STU-', 'STU'), ('experi-', 'experi'), ('de-', 'de'), ('plan-', 'plan'), ('-held', 'held'), ('-', '')] PUR19190619-V18-46-page4.txt: [('prep-', 'prep'), ('pro-', 'pro')] PUR19190619-V18-46-page5.txt: [('-', ''), ('Life-', 'Life'), ('Lind-', 'Lind'), ('ac-', 'ac'), ('fol-', 'fol'), ('Smith-', 'Smith')] PUR19190619-V18-46-page6.txt: [('Cor-', 'Cor'), ('Berke-', 'Berke'), ('-Union', 'Union'), ('-', ''), ('-', ''), ('Ad-', 'Ad')] PUR19190619-V18-46-page8.txt: [('-Signsoffice', 'Signsoffice'), ('-', ''), ('-', ''), ('ac-', 'ac'), ('publi-', 'publi'), ('soul-', 'soul'), ('-', ''), ('Mel-', 'Mel'), ('mis-', 'mis'), ('re-', 're')] PUR19190626-V18-47-page1.txt: [('deter-', 'deter'), ('locomo-', 'locomo'), ('fa-', 'fa')] PUR19190626-V18-47-page2.txt: [('disap-', 'disap'), ('confer-', 'confer'), ('im-', 'im'), ('pub-', 'pub'), ('pub-', 'pub'), ('-', ''), ('-ing', 'ing'), ('pa-', 'pa'), ('-development', 'development'), ('temp-', 'temp'), ('prayer-meet-', 'prayer-meet'), ('im-', 'im')] PUR19190626-V18-47-page3.txt: [('-RECORDER', 'RECORDER'), ('real-', 'real'), ('-', ''), ('bless-', 'bless'), ('-we', 'we'), ('-of', 'of')] PUR19190626-V18-47-page4.txt: [('un-', 'un'), ('morn-', 'morn'), ('peo-', 'peo'), ('oppor-', 'oppor'), ('im-', 'im'), ('Ly-', 'Ly')] PUR19190626-V18-47-page5.txt: [('hospita-', 'hospita'), ('en-', 'en'), ('attend-', 'attend'), ('Sis-', 'Sis'), ('ab-', 'ab'), ('meet-', 'meet'), ('en-', 'en')] PUR19190626-V18-47-page6.txt: [('"Recorder."-', '"Recorder."'), ('-', ''), ('V.-', 'V.'), ('peo-', 'peo'), ('superintend-', 'superintend'), ('peo-', 'peo'), ('dur-', 'dur'), ('Sis-', 'Sis'), ('of-', 'of')] PUR19190626-V18-47-page7.txt: [('-which', 'which'), ('hold-', 'hold'), ('labor-', 'labor'), ('adver-', 'adver'), ('reap-', 'reap'), ('presi-', 'presi'), ('adver-', 'adver'), ('-', ''), ('vine-', 'vine'), ('Pa-', 'Pa'), ('-Two', 'Two'), ('Ad-', 'Ad'), ('Col-', 'Col'), ('inter-', 'inter'), ('Seventh-', 'Seventh'), ('West-', 'West'), ('-upon', 'upon'), ('Folk-', 'Folk'), ('-enberg', 'enberg'), ('-Truman', 'Truman'), ('-We', 'We'), ('-R.', 'R.')] PUR19190626-V18-47-page8.txt: [('-', ''), ('-', ''), ('with-', 'with'), ('inter-', 'inter'), ('loca-', 'loca')] PUR19190703-V18-48-page1.txt: [('-', ''), ('-', ''), ('min-', 'min'), ('or-', 'or')] PUR19190703-V18-48-page2.txt: [('-', ''), ('AN-', 'AN'), ('R-', 'R')] PUR19190703-V18-48-page3.txt: [('ser-', 'ser'), ('friend-', 'friend'), ('im-', 'im'), ('suffic-', 'suffic'), ('work-', 'work')] PUR19190703-V18-48-page4.txt: [('effi-', 'effi'), ('Mc-', 'Mc'), ('para-', 'para'), ('be-', 'be'), ('-velous', 'velous'), ('can-', 'can'), ('at-', 'at'), ('per-', 'per')] PUR19190703-V18-48-page5.txt: [('Mc-', 'Mc'), ('Elec-', 'Elec'), ('scholar-', 'scholar'), ('Breth-', 'Breth'), ('open-', 'open'), ('-.', '.')] PUR19190703-V18-48-page6.txt: [('mis-', 'mis'), ('-', '')] PUR19190703-V18-48-page7.txt: [('D-', 'D')] PUR19190703-V18-48-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('sub-', 'sub')] PUR19190710-V18-49-page1.txt: [('"Re-', '"Re'), ('sub-', 'sub')] PUR19190710-V18-49-page2.txt: [('Her-', 'Her'), ('AD-', 'AD'), ('-seasons', 'seasons'), ('de-', 'de'), ('re-', 're')] PUR19190710-V18-49-page3.txt: [('-', ''), ('"Review"-', '"Review"')] PUR19190710-V18-49-page4.txt: [('Ad-', 'Ad'), ('-L', 'L'), ('com-', 'com'), ('com-', 'com'), ('nor-', 'nor')] PUR19190710-V18-49-page5.txt: [('-', ''), ('-V.SeAce', 'V.SeAce'), ('src-', 'src'), ('An-', 'An'), ('sec-', 'sec'), ('ac-', 'ac')] PUR19190710-V18-49-page6.txt: [('re-', 're'), ('sur-', 'sur'), ('attend-', 'attend')] PUR19190710-V18-49-page7.txt: [('-awn', 'awn'), ('revis-', 'revis'), ('ac-', 'ac'), ('presi-', 'presi'), ('-Reading', 'Reading'), ('of-', 'of')] PUR19190710-V18-49-page8.txt: [('-', ''), ('-', ''), ('pun-', 'pun'), ('-', ''), ('Pa-', 'Pa'), ('re-', 're')] PUR19190717-V18-50-page1.txt: [('-none', 'none'), ('meet-', 'meet')] PUR19190717-V18-50-page2.txt: [('South-', 'South'), ('suc-', 'suc'), ('-', ''), ('ap-', 'ap')] PUR19190717-V18-50-page3.txt: [('four-', 'four'), ('-be', 'be'), ('-am', 'am'), ('con-', 'con'), ('-where', 'where'), ('re-', 're')] PUR19190717-V18-50-page4.txt: [('elec-', 'elec'), ('Mar-', 'Mar'), ('val-', 'val')] PUR19190717-V18-50-page5.txt: [('contin-', 'contin'), ('ex-', 'ex'), ('White-', 'White')] PUR19190717-V18-50-page6.txt: [('-Silent', 'Silent'), ('--Christ', '-Christ'), ('Fran-', 'Fran'), ('Dimock-', 'Dimock'), ('-Leach', 'Leach')] PUR19190717-V18-50-page8.txt: [('Sab-', 'Sab'), ('Con-', 'Con'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Con-', 'Con'), ('Mem-', 'Mem'), ('announce-', 'announce'), ('C--', 'C-'), ('-', ''), ('-', '')] PUR19190724-V18-51-page1.txt: [('ex-', 'ex'), ('El-', 'El'), ('be-', 'be')] PUR19190724-V18-51-page2.txt: [('let-', 'let')] PUR19190724-V18-51-page3.txt: [('-Uncle', 'Uncle'), ('secre-', 'secre'), ('Mis-', 'Mis'), ('san-', 'san'), ('encourage-', 'encourage'), ('-Crawford', 'Crawford'), ('-Brother', 'Brother')] PUR19190724-V18-51-page4.txt: [('East-', 'East'), ('co-', 'co'), ('Pa-', 'Pa'), ('consid-', 'consid'), ('re-', 're')] PUR19190724-V18-51-page5.txt: [('-prayer', 'prayer'), ('con-', 'con'), ('be-', 'be')] PUR19190724-V18-51-page6.txt: [('fac-', 'fac'), ('Af-', 'Af'), ('disappoint-', 'disappoint')] PUR19190724-V18-51-page7.txt: [('-g.', 'g.'), ('-', ''), ('-', ''), ('Mc-', 'Mc'), ('-C', 'C'), ('-', ''), ('G.-', 'G.'), ('-', ''), ('-', ''), ('-', ''), ('informa-', 'informa'), ('-G.C.', 'G.C.'), ('Memor-', 'Memor'), ('be-', 'be'), ('How-', 'How'), ('-', '')] PUR19190724-V18-51-page8.txt: [('inter-', 'inter'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('th-', 'th'), ('correspond-', 'correspond')] PUR19190731-V18-52-page1.txt: [('Genera-', 'Genera'), ('indi-', 'indi'), ('Mc-', 'Mc'), ('re-', 're')] PUR19190731-V18-52-page2.txt: [('coun-', 'coun'), ('confi-', 'confi'), ('in-', 'in'), ('Arroyo-', 'Arroyo'), ('com-', 'com'), ('al-', 'al'), ('Sun-', 'Sun'), ('"to-se--', '"to-se-'), ('-Jesus', 'Jesus'), ('connec-', 'connec'), ('warn-', 'warn'), ('-', '')] PUR19190731-V18-52-page3.txt: [('prepon-', 'prepon'), ('suffic-', 'suffic'), ('eight-', 'eight'), ('-first', 'first'), ('be-', 'be'), ('in-', 'in'), ('en-', 'en'), ('-to', 'to'), ('-by', 'by'), ('"Los-', '"Los'), ('-many', 'many'), ('-', ''), ('tit-', 'tit'), ('-and', 'and')] PUR19190731-V18-52-page4.txt: [('earn-', 'earn'), ('-o', 'o'), ('minister-', 'minister')] PUR19190731-V18-52-page5.txt: [('at-', 'at'), ('ded-', 'ded')] PUR19190731-V18-52-page6.txt: [('-', ''), ('-A.', 'A.'), ('-', ''), ('-G.C.', 'G.C.'), ('-', ''), ('-"BIG', '"BIG')] PUR19190731-V18-52-page7.txt: [('ap-', 'ap'), ('Vir-', 'Vir'), ('de-', 'de'), ('Glen-', 'Glen'), ('finish-', 'finish'), ('suf-', 'suf'), ('each.-', 'each.'), ('-C', 'C')] PUR19190731-V18-52-page8.txt: [('confer-', 'confer'), ('ab-', 'ab'), ('eco-', 'eco'), ('--', '-'), ('-', ''), ('recon-', 'recon'), ('De-', 'De'), ('-', ''), ('-', ''), ('meet-', 'meet'), ('peo-', 'peo'), ('im-', 'im'), ('Revela-', 'Revela')] PUR19190807-V19-01-page1.txt: [('ap-', 'ap')] PUR19190807-V19-01-page2.txt: [('Tes-', 'Tes'), ('respon-', 'respon'), ('Eld-', 'Eld'), ('Chol-', 'Chol'), ('"Re-', '"Re'), ('Val-', 'Val'), ('iso-', 'iso'), ('in-', 'in')] PUR19190807-V19-01-page3.txt: [('-at', 'at'), ('committee-', 'committee'), ('ef-', 'ef'), ('-', '')] PUR19190807-V19-01-page4.txt: [('-', ''), ('thor-', 'thor'), ('y--', 'y-'), ('-He', 'He')] PUR19190807-V19-01-page5.txt: [('-Union', 'Union'), ('ad-', 'ad'), ('-for', 'for'), ('ses-', 'ses'), ('Advent-', 'Advent'), ('prob-', 'prob'), ('Consul-', 'Consul'), ('in-', 'in'), ('bet-', 'bet')] PUR19190807-V19-01-page6.txt: [('ac-', 'ac'), ('ac-', 'ac'), ('-the', 'the'), ('re-', 're'), ('Seventh--', 'Seventh-'), ('Califor-', 'Califor'), ('meet-', 'meet'), ('the-', 'the')] PUR19190807-V19-01-page7.txt: [('-C', 'C'), ('affili-', 'affili'), ('-California', 'California'), ('Seventh-', 'Seventh'), ('-may', 'may'), ('-Insertion', 'Insertion'), ('ac-', 'ac'), ('-companies', 'companies'), ('in-', 'in'), ('-dividuals', 'dividuals'), ('-painter.', 'painter.'), ('Glen-', 'Glen'), ('-ranch', 'ranch'), ('-twenty', 'twenty'), ('Wil-', 'Wil'), ('Mc-', 'Mc')] PUR19190807-V19-01-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('beau-', 'beau'), ('-', ''), ('-summer.', 'summer.'), ('profit-', 'profit')] PUR19190814-V19-02-page1.txt: [('-', ''), ('-', ''), ('peo-', 'peo'), ('se-', 'se'), ('impos-', 'impos'), ('-', ''), ('insti-', 'insti'), ('-', ''), ('im-', 'im'), ('-', ''), ('twen-', 'twen'), ('there-', 'there'), ('-', ''), ('de-', 'de'), ('.-', '.'), ('-stood', 'stood')] PUR19190814-V19-02-page2.txt: [('bur-', 'bur'), ('-Lord', 'Lord'), ('educa-', 'educa'), ('everlast-', 'everlast'), ('-pleasing', 'pleasing'), ('-', ''), ('Confer-', 'Confer'), ('especial-', 'especial')] PUR19190814-V19-02-page3.txt: [('-UNION', 'UNION'), ('educa-', 'educa'), ('--Book', '-Book'), ('of-', 'of'), ('-', ''), ('-', ''), ('pres-', 'pres'), ('-following', 'following'), ('Cum-', 'Cum'), ('Mis-', 'Mis'), ('-', ''), ('ear-', 'ear'), ('Educa-', 'Educa'), ('-bank', 'bank')] PUR19190814-V19-02-page4.txt: [('--Stone-', '-Stone-'), ('--Sewing', '-Sewing'), ('These-', 'These'), ("--Morton's", "-Morton's"), ('Bul-', 'Bul'), ('Physi-', 'Physi'), ('Ameri-', 'Ameri'), ('Mu-', 'Mu'), ('the-', 'the'), ("Poreman's---", "Poreman's--"), ("Stebbin's-", "Stebbin's")] PUR19190814-V19-02-page5.txt: [('-', ''), ('appre-', 'appre'), ('PACIFIC-', 'PACIFIC'), ('-was', 'was'), ('-"well', '"well'), ('Ave-', 'Ave'), ('-', '')] PUR19190814-V19-02-page6.txt: [('Wilkin-', 'Wilkin'), ('-by', 'by'), ('Brown.-', 'Brown.'), ('pun-', 'pun'), ('sur-', 'sur'), ('Kun-', 'Kun'), ('-', ''), ('un-', 'un'), ('-the', 'the'), ('for-', 'for'), ('-', ''), ('-three', 'three'), ('Elders-', 'Elders')] PUR19190814-V19-02-page7.txt: [('adver-', 'adver'), ('-', ''), ('presi-', 'presi'), ('in-', 'in'), ('-dividuals', 'dividuals'), ('Acad-', 'Acad'), ('-principal', 'principal'), ('Memor-', 'Memor'), ('-c.', 'c.'), ('-Monte', 'Monte'), ('-B', 'B'), ('-irrigation', 'irrigation'), ('--', '-'), ('-Place', 'Place'), ('-etc..', 'etc..'), ('-Equity', 'Equity'), ('ac-', 'ac'), ('-count', 'count'), ('-', ''), ('-', '')] PUR19190814-V19-02-page8.txt: [('EMERSON-', 'EMERSON'), ('-', ''), ('-', ''), ('-The', 'The'), ("NOTICE'--", "NOTICE'-"), ('-', ''), ('-', ''), ('pic-', 'pic'), ('Septem-', 'Septem'), ('elect-', 'elect'), ('Sun-', 'Sun'), ('-the', 'the'), ('-', ''), ('accred-', 'accred'), ('-The', 'The'), ('-o', 'o'), ('-', ''), ('Seventh-', 'Seventh'), ('Califor-', 'Califor')] PUR19190821-V19-03-page1.txt: [('-', ''), ('sup-', 'sup'), ('-Pose', 'Pose'), ('-their', 'their')] PUR19190821-V19-03-page2.txt: [('-', ''), ('lan-', 'lan'), ('Danish-Nor-', 'Danish-Nor'), ('-Volunteer', 'Volunteer'), ('Rouman-', 'Rouman'), ('Ger-', 'Ger'), ('dif-', 'dif'), ('-', ''), ('gen-', 'gen'), ('chan-', 'chan')] PUR19190821-V19-03-page3.txt: [('-', ''), ('-This', 'This'), ('Sev-', 'Sev'), ('Inter-', 'Inter'), ('in-', 'in'), ('them-', 'them'), ('-Urge', 'Urge'), ('fam-', 'fam')] PUR19190821-V19-03-page4.txt: [('Cali-', 'Cali'), ('-to', 'to'), ('edu-', 'edu'), ('-', '')] PUR19190821-V19-03-page5.txt: [('"He-', '"He'), ('-page', 'page'), ('-page', 'page'), ('con-', 'con'), ('read-', 'read'), ('sec-', 'sec'), ('-Pelt', 'Pelt'), ('find-', 'find')] PUR19190821-V19-03-page6.txt: [('con-', 'con'), ('-issue', 'issue'), ('Reli-', 'Reli'), ('-page', 'page'), ('Li-', 'Li'), ('Stu-', 'Stu'), ('sell-', 'sell'), ('re-', 're'), ('mag-', 'mag')] PUR19190821-V19-03-page7.txt: [('un-', 'un'), ('tOur-', 'tOur'), ('--Yes', '-Yes')] PUR19190821-V19-03-page8.txt: [('de-', 'de'), ('-', ''), ('-', ''), ('win-', 'win'), ('"Re--', '"Re-'), ('Mem-', 'Mem')] PUR19190904-V19-04-page1.txt: [('re-', 're')] PUR19190904-V19-04-page2.txt: [('-the', 'the'), ('-foreigners', 'foreigners'), ('Voca-', 'Voca'), ('-them', 'them'), ('-', ''), ('bin--', 'bin-'), ('-a', 'a')] PUR19190904-V19-04-page3.txt: [('-Attempt', 'Attempt')] PUR19190904-V19-04-page4.txt: [('-', ''), ('-', '')] PUR19190904-V19-04-page5.txt: [('-', ''), ('-', '')] PUR19190904-V19-04-page6.txt: [('-', ''), ('-', ''), ('-The', 'The'), ('minis-', 'minis'), ('mem-', 'mem'), ('communi-', 'communi'), ('conduct-', 'conduct')] PUR19190904-V19-04-page7.txt: [('un-', 'un'), ('-Yes', 'Yes'), ('rea-', 'rea'), ('-teacher', 'teacher'), ('-Union', 'Union'), ('Writ-', 'Writ'), ('-', '')] PUR19190904-V19-04-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('fol-', 'fol'), ('wait-', 'wait')] PUR19190911-V19-05-page1.txt: [('Danish-', 'Danish'), ('quanti-', 'quanti'), ('-of', 'of')] PUR19190911-V19-05-page2.txt: [('prin-', 'prin'), ('-', ''), ('Marsh-', 'Marsh'), ('of-', 'of')] PUR19190911-V19-05-page3.txt: [('mat-', 'mat'), ('rel-', 'rel')] PUR19190911-V19-05-page4.txt: [('ef-', 'ef'), ('-o', 'o')] PUR19190911-V19-05-page5.txt: [('mem-', 'mem'), ('-', ''), ('-', ''), ('-', '')] PUR19190911-V19-05-page6.txt: [('-inhave', 'inhave'), ('giv-', 'giv'), ('Dolson-', 'Dolson'), ('-temporary', 'temporary')] PUR19190911-V19-05-page7.txt: [('Col-', 'Col'), ('un-', 'un'), ('-Yes', 'Yes'), ('Seventh-', 'Seventh'), ('flow-', 'flow'), ('Mc-', 'Mc'), ('.-', '.')] PUR19190911-V19-05-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('en-', 'en'), ('or-', 'or'), ('pleas-', 'pleas'), ('suc-', 'suc'), ('Po-', 'Po'), ('Read-', 'Read'), ('re-', 're'), ('where-', 'where'), ('tangi-', 'tangi'), ('thir-', 'thir')] PUR19190918-V19-06-page1.txt: [('great-', 'great'), ('re-', 're')] PUR19190918-V19-06-page2.txt: [('UNION-', 'UNION'), ('work-', 'work'), ('-gi', 'gi'), ('adjoin-', 'adjoin')] PUR19190918-V19-06-page3.txt: [('----Still', '---Still'), ('re-', 're'), ('Inter-', 'Inter'), ('offer-', 'offer'), ('fam-', 'fam')] PUR19190918-V19-06-page4.txt: [('-members', 'members'), ('-August', 'August'), ('-being', 'being')] PUR19190918-V19-06-page5.txt: [('-ideal', 'ideal'), ('evi-', 'evi'), ('-', ''), ('-', ''), ('confer-', 'confer'), ('cam-', 'cam'), ('de-', 'de')] PUR19190918-V19-06-page6.txt: [('re-', 're'), ('In-', 'In'), ('-', ''), ('re-', 're'), ('inter-', 'inter'), ('liv-', 'liv')] PUR19190918-V19-06-page7.txt: [('-', ''), ('e.-', 'e.'), ('-TWo', 'TWo'), ('-', ''), ('or-', 'or'), ('adver-', 'adver')] PUR19190918-V19-06-page8.txt: [('ap-', 'ap'), ('-', ''), ('-', ''), ('-', ''), ('Care-', 'Care'), ('-', ''), ('accom-', 'accom'), ('re-', 're'), ('con-', 'con')] PUR19190925-V19-07-page1.txt: [('-campaign', 'campaign'), ('Advent-', 'Advent'), ('-since', 'since'), ('Sub-', 'Sub'), ('-A-F-', 'A-F-'), ('-', ''), ('..-', '..'), ('-', ''), ('-', '')] PUR19190925-V19-07-page2.txt: [('an-', 'an'), ('work-', 'work'), ('sixty-', 'sixty'), ('sea-', 'sea')] PUR19190925-V19-07-page3.txt: [('ship-', 'ship'), ('Bald-', 'Bald'), ('-', ''), ('con-', 'con'), ('mission-', 'mission'), ('mis-', 'mis'), ('f.-', 'f.')] PUR19190925-V19-07-page4.txt: [('serv-', 'serv'), ('-', ''), ('en-', 'en'), ('Septem-', 'Septem'), ('Isaac-', 'Isaac')] PUR19190925-V19-07-page7.txt: [('-wife', 'wife'), ('-', '')] PUR19190925-V19-07-page8.txt: [('Vol-', 'Vol'), ('con-', 'con'), ('-', '')] PUR19191002-V19-08-page1.txt: [('-Number', 'Number')] PUR19191002-V19-08-page2.txt: [('ac-', 'ac'), ('-direetthis', 'direetthis')] PUR19191002-V19-08-page3.txt: [('Vol-', 'Vol'), ('in-', 'in'), ('per-', 'per'), ('righte-', 'righte'), ('his-', 'his')] PUR19191002-V19-08-page4.txt: [('hun-', 'hun'), ('be-', 'be'), ('Basuto-', 'Basuto'), ('Armi-', 'Armi')] PUR19191002-V19-08-page5.txt: [('-site', 'site'), ('or-', 'or'), ('chil-', 'chil')] PUR19191002-V19-08-page6.txt: [('-', ''), ('-', ''), ('sixty-', 'sixty')] PUR19191002-V19-08-page7.txt: [('C-', 'C'), ('ex-', 'ex'), ('regu-', 'regu'), ('-change', 'change'), ('can-', 'can'), ('Ingather-', 'Ingather')] PUR19191002-V19-08-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Jun-', 'Jun'), ('Ingath-', 'Ingath'), ('suc-', 'suc')] PUR19191009-V19-09-page1.txt: [("'-", "'"), ("'His-", "'His"), ('oc-', 'oc'), ('Col-', 'Col'), ('Print-', 'Print'), ('pro-', 'pro')] PUR19191009-V19-09-page2.txt: [('"in-', '"in'), ('-of', 'of'), ('suc-', 'suc'), ('-debt', 'debt'), ('Lef-', 'Lef'), ('-', ''), ('-obey', 'obey'), ('In-', 'In')] PUR19191009-V19-09-page3.txt: [('-', ''), ('sys-', 'sys'), ('the-', 'the'), ('-mindon', 'mindon')] PUR19191009-V19-09-page4.txt: [('near-', 'near'), ('Me-', 'Me'), ('No-', 'No'), ('cer-', 'cer')] PUR19191009-V19-09-page5.txt: [('wash-', 'wash'), ('-then', 'then'), ('Hen-', 'Hen'), ('-the', 'the')] PUR19191009-V19-09-page6.txt: [('-ready', 'ready'), ('ar-', 'ar'), ('-ago', 'ago'), ('-', ''), ('-', ''), ('Philip-', 'Philip'), ('corre-', 'corre')] PUR19191009-V19-09-page7.txt: [('Glen-', 'Glen'), ('willing-', 'willing'), ('corres-', 'corres'), ('B-R-', 'B-R'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-.', '.'), ('adver-', 'adver'), ('Janu-', 'Janu'), ('Nevada-', 'Nevada')] PUR19191009-V19-09-page8.txt: [('ar-', 'ar'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('con-', 'con'), ('Protest-', 'Protest'), ('self-', 'self'), ('dur-', 'dur'), ('Rob-', 'Rob'), ('No-', 'No'), ('Maga-', 'Maga'), ('view-', 'view'), ('de-', 'de'), ('grip-', 'grip'), ('contemplat-', 'contemplat')] PUR19191016-V19-10-page1.txt: [('stu-', 'stu'), ('--that', '-that'), ('-', ''), ('twenty-five-', 'twenty-five'), ('peo-', 'peo'), ('an-', 'an')] PUR19191016-V19-10-page2.txt: [('work-', 'work'), ('board-', 'board'), ('Tur-', 'Tur')] PUR19191016-V19-10-page3.txt: [('The-', 'The'), ('-', ''), ('-Sander', 'Sander'), ('workof-', 'workof')] PUR19191016-V19-10-page4.txt: [('bound-', 'bound'), ('self-suf-', 'self-suf'), ('in-', 'in')] PUR19191016-V19-10-page5.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mem-', 'Mem'), ('-', '')] PUR19191016-V19-10-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Oak-', 'Oak'), ('-', ''), ('author-', 'author'), ('-', ''), ('-', ''), ('care-', 'care'), ('Kan-', 'Kan'), ('-surViVc', 'surViVc'), ('Chris-', 'Chris'), ('-', ''), ('-', ''), ('-.', '.'), ('cames-', 'cames'), ('Qualls.-', 'Qualls.'), ('-Ann', 'Ann')] PUR19191016-V19-10-page7.txt: [('-Lease', 'Lease'), ('assist-', 'assist'), ('ac-', 'ac'), ('of-', 'of'), ('Ad-', 'Ad'), ('Warden-', 'Warden'), ('Inter-', 'Inter')] PUR19191016-V19-10-page8.txt: [('Wash-', 'Wash'), ('-always', 'always'), ('"Record-', '"Record'), ('-be.', 'be.'), ('-', ''), ('-', ''), ('ses-', 'ses'), ('addi-', 'addi'), ('Camp-', 'Camp')] PUR19191023-V19-11-page2.txt: [('se-', 'se'), ('peo-', 'peo'), ('re-', 're'), ('scat-', 'scat'), ('Su-', 'Su'), ('Vol-', 'Vol')] PUR19191023-V19-11-page3.txt: [('Califor-', 'Califor'), ('assist-', 'assist'), ('Wagon-', 'Wagon'), ('mis-', 'mis'), ('pa-', 'pa')] PUR19191023-V19-11-page4.txt: [('re-', 're'), ('re-', 're'), ('offer-', 'offer'), ('em-', 'em'), ('-', '')] PUR19191023-V19-11-page5.txt: [('ex-', 'ex'), ('fam-', 'fam'), ('Min-', 'Min'), ('re-', 're'), ('sec-', 'sec'), ('No-', 'No')] PUR19191023-V19-11-page6.txt: [('Sun-', 'Sun'), ('we-', 'we'), ('unsup-', 'unsup'), ('certifi-', 'certifi'), ('connec-', 'connec')] PUR19191023-V19-11-page7.txt: [('corres-', 'corres'), ('-years', 'years'), ('partic-', 'partic'), ('-we', 'we'), ('Hos-', 'Hos'), ('mid-', 'mid')] PUR19191023-V19-11-page8.txt: [('mission-', 'mission'), ('Un-', 'Un'), ('-', ''), ('-', ''), ('-', ''), ('pro-', 'pro'), ('-', ''), ('-', ''), ('north-', 'north'), ('var-', 'var'), ('Coun-', 'Coun'), ('even-', 'even'), ('busi-', 'busi'), ('signify-', 'signify')] PUR19191030-V19-12-page1.txt: [('-', ''), ('in-', 'in')] PUR19191030-V19-12-page2.txt: [('en-', 'en'), ('ordi-', 'ordi'), ('re-', 're'), ('peo-', 'peo'), ('vol-', 'vol')] PUR19191030-V19-12-page3.txt: [('An-', 'An'), ('-', ''), ('-man', 'man'), ('-', '')] PUR19191030-V19-12-page4.txt: [('-', ''), ('treat-', 'treat'), ('med-', 'med'), ('demon-', 'demon'), ('com-', 'com'), ('pros-', 'pros')] PUR19191030-V19-12-page5.txt: [('en-', 'en'), ('con-', 'con'), ('contribu-', 'contribu'), ('In-', 'In'), ('Maga-', 'Maga'), ('periodi-', 'periodi')] PUR19191030-V19-12-page6.txt: [('en-', 'en'), ('cap-', 'cap'), ('wo-', 'wo')] PUR19191030-V19-12-page7.txt: [('Hos-', 'Hos'), ('med-', 'med'), ('-unbelief', 'unbelief'), ('corres-', 'corres'), ('Glen-', 'Glen'), ('con-', 'con'), ('in-', 'in'), ('-', ''), ('-', '')] PUR19191030-V19-12-page8.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('wa-', 'wa')] PUR19191106-V19-13-page1.txt: [('substance--', 'substance-'), ('can-', 'can')] PUR19191106-V19-13-page2.txt: [('-', ''), ('wher-', 'wher'), ('-', ''), ('-', ''), ('-', ''), ('pleas-', 'pleas'), ('gath-', 'gath'), ('"legalis-', '"legalis')] PUR19191106-V19-13-page3.txt: [('remain-', 'remain'), ('bul-', 'bul'), ('-', '')] PUR19191106-V19-13-page4.txt: [('Loug-', 'Loug'), ('-', ''), ('teach-', 'teach'), ('car-', 'car'), ('Pain-', 'Pain'), ('In-', 'In'), ('In-', 'In'), ('al-', 'al'), ('gather-', 'gather'), ('In-', 'In'), ('pro"-', 'pro"')] PUR19191106-V19-13-page5.txt: [('-', ''), ('work-', 'work'), ('stu-', 'stu'), ('con-', 'con'), ('sec-', 'sec'), ('con-', 'con'), ('Cen-', 'Cen'), ('vol-', 'vol'), ('Monticel-', 'Monticel'), ('giy-', 'giy'), ('car-', 'car')] PUR19191106-V19-13-page6.txt: [('-', ''), ('maga-', 'maga'), ('suc-', 'suc')] PUR19191106-V19-13-page7.txt: [('in-', 'in'), ('or-', 'or'), ('med-', 'med'), ('Superinten-', 'Superinten'), ('-acre', 'acre'), ('Hos-', 'Hos'), ('princi-', 'princi'), ('resur-', 'resur'), ('"Theologi-', '"Theologi'), ('auto-', 'auto')] PUR19191106-V19-13-page8.txt: [('dis-', 'dis'), ('be-', 'be'), ('S.-', 'S.'), ('urg-', 'urg'), ('faith-', 'faith'), ('faith-', 'faith')] PUR19191113-V19-14-page1.txt: [('read-', 'read'), ('Holt-', 'Holt')] PUR19191113-V19-14-page2.txt: [('opera-', 'opera'), ('clos-', 'clos'), ('-"', '"'), ('fin-', 'fin'), ('say-', 'say'), ('Sun-', 'Sun'), ('pub-', 'pub'), ('-', ''), ('-', ''), ('-', ''), ('press-', 'press'), ('Holt-', 'Holt')] PUR19191113-V19-14-page3.txt: [('the-', 'the'), ('cam-', 'cam'), ('gath-', 'gath'), ('bur-', 'bur'), ('with-', 'with'), ('re-', 're'), ('sev-', 'sev'), ('princi-', 'princi')] PUR19191113-V19-14-page4.txt: [('Parent-', 'Parent'), ('every-', 'every'), ('sub-', 'sub')] PUR19191113-V19-14-page5.txt: [('num.-', 'num.'), ('gross-', 'gross'), ('volun-', 'volun'), ('Cali-', 'Cali')] PUR19191113-V19-14-page6.txt: [('fie-', 'fie'), ('-so-tad', 'so-tad'), ('pos-', 'pos'), ('na-', 'na'), ('inter-', 'inter'), ('Mon-', 'Mon')] PUR19191113-V19-14-page7.txt: [('Janu-', 'Janu'), ('-', ''), ('-', ''), ('princi-', 'princi'), ('-', ''), ('recommenda-', 'recommenda'), ('stu-', 'stu'), ('di-', 'di'), ('spec-', 'spec'), ('Advent-', 'Advent'), ('Con-', 'Con'), ('be-', 'be')] PUR19191113-V19-14-page8.txt: [('ef-', 'ef'), ('sev-', 'sev'), ('o-', 'o')] PUR19191120-V19-15-page2.txt: [('pro-', 'pro'), ('periodi-', 'periodi'), ('-', ''), ('No-', 'No'), ('sal-', 'sal'), ('bet-', 'bet'), ('sil-', 'sil'), ('in-', 'in'), ('-', ''), ('-', ''), ('-', '')] PUR19191120-V19-15-page3.txt: [('GREAT-', 'GREAT'), ('-', ''), ('cam-', 'cam'), ('be-', 'be'), ('Times"-', 'Times"')] PUR19191120-V19-15-page4.txt: [('FINAN-', 'FINAN'), ('DE-', 'DE'), ('-Signs', 'Signs'), ('LET-', 'LET')] PUR19191120-V19-15-page5.txt: [('vis-', 'vis'), ('in-', 'in'), ('rel-', 'rel'), ('-patrons', 'patrons'), ('-', '')] PUR19191120-V19-15-page6.txt: [('SPIRIT-', 'SPIRIT'), ('-is', 'is'), ('-', ''), ('cam-', 'cam'), ('India-', 'India'), ('Inter-', 'Inter')] PUR19191120-V19-15-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('minis-', 'minis'), ('-', ''), ('Rich-', 'Rich'), ('train-', 'train'), ('Corres-', 'Corres'), ('writ-', 'writ'), ('al-', 'al'), ('-all', 'all'), ('sever-', 'sever'), ('sail-', 'sail'), ('or-', 'or')] PUR19191120-V19-15-page8.txt: [('pre-', 'pre'), ('-', ''), ('-', ''), ('reeov-', 'reeov'), ('how-', 'how'), ('re-', 're'), ('be-', 'be'), ('at.-', 'at.'), ('Con-', 'Con'), ('absolute-', 'absolute'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mem-', 'Mem'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19191127-V19-16-page1.txt: [('-out-pourgrace.', 'out-pourgrace.'), ('com-', 'com')] PUR19191127-V19-16-page2.txt: [('supplica-', 'supplica'), ('rob-', 'rob'), ('self-pleas-', 'self-pleas'), ('per-', 'per'), ('ef-', 'ef'), ('care-', 'care'), ('serv-', 'serv'), ('-', ''), ('-', ''), ('-', '')] PUR19191127-V19-16-page3.txt: [('.-', '.'), ('vvo.ww-', 'vvo.ww'), ('-', ''), ('Washing-', 'Washing'), ('San-', 'San'), ('Ja-', 'Ja'), ('na-', 'na'), ('Ar-', 'Ar'), ('con-', 'con'), ('in-', 'in'), ('Broth-', 'Broth')] PUR19191127-V19-16-page4.txt: [('need-', 'need'), ('"Epidem-', '"Epidem'), ('Work-', 'Work'), ('un-', 'un'), ('con-', 'con'), ('in-', 'in'), ('De-', 'De'), ('Omnipo-', 'Omnipo')] PUR19191127-V19-16-page5.txt: [('servicefol-', 'servicefol'), ('-church', 'church'), ('fu-', 'fu')] PUR19191127-V19-16-page6.txt: [('con-', 'con'), ('ap-', 'ap'), ('al-', 'al'), ('work-', 'work'), ('-goal', 'goal'), ('Re-', 'Re'), ('influ-', 'influ'), ('cam-', 'cam')] PUR19191127-V19-16-page7.txt: [('al-', 'al'), ('Man-', 'Man'), ('Bying-', 'Bying'), ('-', ''), ('opportun-', 'opportun'), ('-', ''), ('-', ''), ('sug-', 'sug'), ('par-', 'par'), ('giv-', 'giv'), ('de-', 'de'), ('-', ''), ('-', '')] PUR19191127-V19-16-page8.txt: [('sev-', 'sev'), ('Constitu-', 'Constitu'), ('an-', 'an'), ('res-', 'res'), ('Christ-', 'Christ'), ('Wash-', 'Wash'), ('No-', 'No'), ('Ne-', 'Ne'), ('op-', 'op')] PUR19191204-V19-17-page1.txt: [('spe-', 'spe'), ('sub-', 'sub'), ('pro-', 'pro'), ('neces-', 'neces')] PUR19191204-V19-17-page2.txt: [('endur-', 'endur'), ('func-', 'func'), ('In-', 'In'), ('-', ''), ('per-', 'per'), ('Glen-', 'Glen'), ('-', ''), ('-', ''), ('-', '')] PUR19191204-V19-17-page3.txt: [('sus-', 'sus'), ('Sev-', 'Sev'), ('El-', 'El'), ('en-', 'en')] PUR19191204-V19-17-page4.txt: [('joy-', 'joy')] PUR19191204-V19-17-page5.txt: [('how-', 'how'), ('Cal-', 'Cal'), ('accept-', 'accept')] PUR19191204-V19-17-page6.txt: [('de-', 'de'), ('Con-', 'Con'), ('re-', 're'), ('INGATHER-', 'INGATHER'), ('ev-', 'ev'), ('o-', 'o'), ('re-', 're'), ('prop-', 'prop')] PUR19191204-V19-17-page7.txt: [('"Testi-', '"Testi'), ('Califor-', 'Califor'), ('Hel-', 'Hel'), ('sepa-', 'sepa'), ('-', ''), ('-', ''), ('Inter-Moun-', 'Inter-Moun'), ('Oc-', 'Oc'), ('nor-', 'nor'), ('-', '')] PUR19191204-V19-17-page8.txt: [('Confer-', 'Confer'), ('aft-', 'aft'), ('inter-', 'inter'), ('splen-', 'splen'), ('sugges-', 'sugges'), ('spe-', 'spe'), ('Hocker-', 'Hocker'), ('-B', 'B'), ('neglect-', 'neglect')] PUR19191211-V19-18-page1.txt: [('mes-', 'mes'), ('thank-', 'thank'), ('re-', 're'), ('follow-', 'follow'), ('spe-', 'spe'), ('sin-', 'sin')] PUR19191211-V19-18-page2.txt: [('arrange-', 'arrange'), ('secre-', 'secre'), ('Depart-', 'Depart'), ('firma-', 'firma'), ('in-', 'in'), ('na-', 'na'), ('Centi-', 'Centi'), ('-', ''), ('-', ''), ('foun-', 'foun'), ('Nov-', 'Nov')] PUR19191211-V19-18-page3.txt: [('de-', 'de'), ('confer-', 'confer'), ('contain-', 'contain'), ('to-', 'to'), ('MAG-', 'MAG'), ('min-', 'min'), ('superinten-', 'superinten')] PUR19191211-V19-18-page4.txt: [('Ra-', 'Ra'), ('Don-', 'Don'), ('spe-', 'spe'), ('ser-', 'ser'), ('Chris-', 'Chris'), ('mission-', 'mission'), ('voted--', 'voted-'), ('rais-', 'rais'), ('labor-', 'labor'), ('contri-', 'contri'), ('dele-', 'dele')] PUR19191211-V19-18-page5.txt: [('re-', 're'), ('coun-', 'coun'), ('Mul-', 'Mul'), ('school-', 'school'), ('Inter-', 'Inter'), ('great-', 'great'), ('Inter-Moun-', 'Inter-Moun'), ('Inter-', 'Inter'), ('plead-', 'plead'), ('Mis-', 'Mis'), ('Religi-', 'Religi')] PUR19191211-V19-18-page6.txt: [('espe-', 'espe'), ('inter-', 'inter'), ('real-', 'real'), ('chil-', 'chil'), ('sew-', 'sew'), ('larg-', 'larg'), ('vis-', 'vis')] PUR19191211-V19-18-page7.txt: [('per-', 'per'), ('oc-', 'oc'), ('con-', 'con'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19191211-V19-18-page8.txt: [('-DIRECTORY', 'DIRECTORY'), ('"Re-', '"Re'), ('-', ''), ('con-', 'con'), ('in-', 'in'), ('be-', 'be'), ('them-', 'them'), ('let-', 'let'), ('Washing-', 'Washing')] PUR19191218-V19-19-page1.txt: [('thou-', 'thou'), ('contain-', 'contain'), ('even-', 'even'), ('in-', 'in'), ('fam-', 'fam'), ('work-', 'work'), ('heart--', 'heart-'), ('at-', 'at')] PUR19191218-V19-19-page2.txt: [('friend-', 'friend'), ('maga-', 'maga'), ('-o', 'o'), ('broth-', 'broth'), ('the-', 'the'), ('-', ''), ('-br', 'br'), ('-', ''), ('-', ''), ('-', ''), ('com-', 'com'), ('Oct-', 'Oct'), ('-', ''), ('corre-', 'corre')] PUR19191218-V19-19-page3.txt: [('ex-', 'ex')] PUR19191218-V19-19-page4.txt: [('o-', 'o'), ('fam-', 'fam'), ('recover-', 'recover'), ('teach-', 'teach'), ('Mr.-', 'Mr.')] PUR19191218-V19-19-page5.txt: [('de-', 'de'), ('-cent', 'cent'), ('con-', 'con'), ('lib-', 'lib'), ('en-', 'en'), ('commis-', 'commis'), ('---', '--'), ('ans-', 'ans'), ('---', '--'), ('-', ''), ('-Brother', 'Brother'), ('-Robert', 'Robert'), ('-to', 'to'), ('-through', 'through')] PUR19191218-V19-19-page6.txt: [('In-', 'In'), ('sec-', 'sec'), ('be-', 'be'), ('re-', 're'), ('colpor-', 'colpor'), ('Bul-', 'Bul'), ('Decem-', 'Decem'), ('sub-', 'sub'), ('year-', 'year'), ('confer-', 'confer')] PUR19191218-V19-19-page7.txt: [('un-', 'un'), ('pres-', 'pres'), ('ad-', 'ad'), ('bevertising-', 'bevertising'), ('-', ''), ('Hos-', 'Hos'), ('fol-', 'fol')] PUR19191218-V19-19-page8.txt: [('ad-', 'ad'), ('Emer-', 'Emer'), ('He-', 'He'), ('Clar-', 'Clar'), ('prin-', 'prin'), ('Cer-', 'Cer'), ('Dec-', 'Dec'), ('Mem-', 'Mem'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19191225-V19-20-page1.txt: [('-', ''), ('-', ''), ('de-', 'de'), ('-it', 'it'), ('add-', 'add')] PUR19191225-V19-20-page2.txt: [('pa-', 'pa'), ('vic-', 'vic'), ('obtain-', 'obtain'), ('De-', 'De'), ('Begin-', 'Begin'), ('Pres-', 'Pres'), ('maga-', 'maga'), ('Parliamen-', 'Parliamen'), ('same--', 'same-'), ('--but', '-but'), ('at-', 'at'), ('flei-', 'flei'), ('Madi-', 'Madi'), ('-', ''), ('flex-', 'flex'), ('Nov-', 'Nov'), ('se-ction-', 'se-ction'), ('Act-of--Oct-', 'Act-of--Oct'), ('meet-', 'meet'), ('semi-month-', 'semi-month'), ('relating--', 'relating-'), ('Glen-', 'Glen'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('recoinmen-', 'recoinmen'), ('--', '-'), ('--', '-'), ('--', '-')] PUR19191225-V19-20-page3.txt: [('-is', 'is'), ('fam-', 'fam'), ('interest-', 'interest'), ('sec-', 'sec'), ('-', ''), ('"Watch-', '"Watch'), ('Decem-', 'Decem'), ('par-', 'par'), ('-This', 'This')] PUR19191225-V19-20-page4.txt: [('peo-', 'peo'), ('Him-', 'Him')] PUR19191225-V19-20-page5.txt: [('re-', 're'), ('old-', 'old'), ('num-', 'num'), ('-at', 'at'), ('measure-', 'measure')] PUR19191225-V19-20-page6.txt: [('-', ''), ('-', ''), ('-of', 'of'), ('-', ''), ('-too', 'too')] PUR19191225-V19-20-page7.txt: [('de-', 'de'), ('"Watch-', '"Watch'), ('home-', 'home'), ('in--', 'in-'), ("'-", "'"), ('lit-', 'lit'), ('-and', 'and'), ('stu-', 'stu'), ('un-', 'un'), ('address-', 'address'), ('-', ''), ('-year', 'year')] PUR19191225-V19-20-page8.txt: [('ex-', 'ex'), ('Con-', 'Con'), ('suc-', 'suc')] PUR19200101-V19-21-page1.txt: [('dis-', 'dis'), ('instru-', 'instru'), ('sur-', 'sur'), ('mis-', 'mis')] PUR19200101-V19-21-page2.txt: [('va-', 'va'), ('adver-', 'adver'), ('im-', 'im'), ('min-', 'min'), ('influ-', 'influ'), ('newspa-', 'newspa'), ('synop-', 'synop'), ('Ad-', 'Ad'), ('sy-', 'sy'), ('-word', 'word'), ('-', ''), ('-', ''), ('-', ''), ('ex-', 'ex'), ('profession-', 'profession'), ('-V', 'V'), ('-', ''), ('Glen-', 'Glen')] PUR19200101-V19-21-page3.txt: [('-', ''), ('in-', 'in'), ('dis-', 'dis'), ('co-opera-', 'co-opera'), ('There-', 'There'), ('dis-', 'dis'), ('busi-', 'busi'), ('adver-', 'adver'), ('Danish-', 'Danish'), ('-that', 'that'), ('-', ''), ('-', ''), ('-is', 'is')] PUR19200101-V19-21-page4.txt: [('lan-', 'lan'), ('them-', 'them'), ('-waapa-aar-ap"apineenra.a.re-w-vayssa', 'waapa-aar-ap"apineenra.a.re-w-vayssa'), ('as-', 'as'), ('hope-', 'hope'), ('Re-', 'Re'), ('pray-', 'pray'), ('gratify-', 'gratify'), ('en-', 'en'), ('Je-', 'Je'), ('Sabbath-', 'Sabbath'), ('Deci-', 'Deci')] PUR19200101-V19-21-page5.txt: [('---', '--'), ('peo-', 'peo'), ('colpor-', 'colpor'), ('enjoy-', 'enjoy'), ('hun-', 'hun')] PUR19200101-V19-21-page6.txt: [('mo-', 'mo'), ('-', ''), ('considera-', 'considera'), ('ques-', 'ques'), ('be-', 'be')] PUR19200101-V19-21-page7.txt: [('expe-', 'expe'), ('Pat-', 'Pat'), ('sympathiz-', 'sympathiz'), ('un-', 'un'), ('wonder-', 'wonder'), ('daugh-', 'daugh'), ('An-', 'An'), ("'Dins-", "'Dins"), ('Blooming-', 'Blooming'), ('-', ''), ('-', ''), ('-year', 'year'), ('to-', 'to'), ('educa-', 'educa'), ('Fer-', 'Fer')] PUR19200101-V19-21-page8.txt: [('Fri-', 'Fri'), ('oth-', 'oth'), ('mis-', 'mis'), ('re-', 're'), ('Broth-', 'Broth'), ('Hol-', 'Hol'), ('"stick-to-', '"stick-to'), ('--------', '-------'), ('hard-', 'hard'), ('of-', 'of'), ('Thirty-', 'Thirty'), ('inter-', 'inter'), ('be-', 'be'), ('attend-', 'attend'), ('pros-', 'pros'), ('else-', 'else')] PUR19200108-V19-22-page1.txt: [('Colo-', 'Colo'), ('therefore--', 'therefore-'), ('enter-', 'enter'), ('ar-', 'ar'), ('No-', 'No'), ('Confer-', 'Confer'), ('further--', 'further-'), ('Con-', 'Con'), ('Con-', 'Con'), ('-', ''), ('bear-', 'bear')] PUR19200108-V19-22-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('meeting.-', 'meeting.'), ('-', ''), ('le-', 'le'), ('kind-', 'kind'), ('PUB-', 'PUB'), ('Eng-', 'Eng')] PUR19200108-V19-22-page3.txt: [('-Nev.', 'Nev.'), ('re-', 're')] PUR19200108-V19-22-page4.txt: [('af-', 'af'), ('fi-', 'fi'), ('Sab-', 'Sab'), ('meet-', 'meet'), ('be-', 'be'), ('dur-', 'dur'), ('Califor-', 'Califor'), ('peo-', 'peo'), ('Sis-', 'Sis')] PUR19200108-V19-22-page5.txt: [('build-', 'build'), ('DEDI-', 'DEDI'), ('-', ''), ('volun-', 'volun')] PUR19200108-V19-22-page6.txt: [('un-', 'un'), ('sup-', 'sup'), ('cer-', 'cer'), ('be-', 'be'), ('un-', 'un'), ('-Luke', 'Luke'), ('suc-', 'suc'), ('-o', 'o'), ('in-', 'in')] PUR19200108-V19-22-page7.txt: [('As-', 'As'), ('de-', 'de'), ('Presi-', 'Presi'), ('-', ''), ('fam-', 'fam'), ('-', ''), ('Sani-', 'Sani'), ('help-', 'help'), ('-', ''), ('-', ''), ('-Agents', 'Agents'), ('Fran-', 'Fran'), ('depend-', 'depend'), ('-', '')] PUR19200108-V19-22-page8.txt: [('hav-', 'hav'), ('here-', 'here'), ('clean-', 'clean'), ('appear-', 'appear'), ('Breth-', 'Breth'), ('cal-', 'cal')] PUR19200115-V19-23-page1.txt: [('fig-', 'fig'), ('re-', 're'), ('-', ''), ('-', ''), ('co-oper-', 'co-oper'), ('-', ''), ('-', ''), ('breth-', 'breth'), ('Mem-', 'Mem'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200115-V19-23-page2.txt: [('over-', 'over'), ('win-', 'win'), ('inca-', 'inca'), ('corre-', 'corre'), ('-', ''), ('-', ''), ('theflecks-', 'theflecks'), ('pa-', 'pa'), ('car-', 'car'), ('Noy-', 'Noy'), ('yam-', 'yam')] PUR19200115-V19-23-page3.txt: [('PUB-', 'PUB'), ('vis-', 'vis'), ('con-', 'con'), ('relig-', 'relig'), ('op-', 'op'), ('ar-', 'ar'), ('ree-', 'ree'), ('ad-', 'ad'), ('-cent', 'cent'), ('c-', 'c'), ('ka"na-', 'ka"na'), ('""t"-', '""t"'), ('mem-', 'mem')] PUR19200115-V19-23-page4.txt: [('superin-', 'superin'), ('-Spirit', 'Spirit'), ('co-opera-', 'co-opera'), ('em-', 'em'), ('be-', 'be'), ('dis-', 'dis'), ('Ingather-', 'Ingather')] PUR19200115-V19-23-page5.txt: [('pu-', 'pu'), ('In-', 'In'), ('-', ''), ('superintend-', 'superintend'), ('Pa-', 'Pa'), ('pre-', 'pre'), ('sup-', 'sup'), ('peo-', 'peo'), ('A-', 'A'), ('prom-', 'prom'), ('-', ''), ('---', '--'), ('-', '')] PUR19200115-V19-23-page6.txt: [('-', ''), ('-by', 'by'), ('SALES-', 'SALES'), ('fol-', 'fol'), ('re-', 're'), ('op-', 'op'), ('-in', 'in')] PUR19200115-V19-23-page7.txt: [('-', ''), ('Prin-', 'Prin'), ('self-', 'self'), ('-', ''), ('ad-', 'ad'), ('op-', 'op'), ('hydro-', 'hydro'), ('-', ''), ('-', ''), ('an-', 'an'), ('adop-', 'adop'), ('assur-', 'assur'), ('-', ''), ('hus-', 'hus')] PUR19200115-V19-23-page8.txt: [('Soul-', 'Soul'), ('hay-', 'hay'), ('-muro', 'muro'), ('r-', 'r'), ('pub-', 'pub'), ('work-', 'work'), ('an-', 'an'), ('the.-', 'the.'), ('fas-', 'fas')] PUR19200122-V19-24-page1.txt: [('-----', '----'), ('-', ''), ('POST-', 'POST'), ('Pa-', 'Pa'), ('ful-', 'ful')] PUR19200122-V19-24-page2.txt: [('giv-', 'giv'), ('rec-', 'rec'), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct')] PUR19200122-V19-24-page3.txt: [('-"', '"'), ('instruc-', 'instruc'), ('under-', 'under'), ('provid-', 'provid'), ('of-', 'of'), ('-', '')] PUR19200122-V19-24-page4.txt: [('subscrip-', 'subscrip')] PUR19200122-V19-24-page5.txt: [('Mexi-', 'Mexi'), ('at-', 'at'), ('-o', 'o'), ('work-', 'work'), ('An-', 'An'), ('sup-', 'sup'), ('conven-', 'conven'), ('faith-', 'faith'), ('vol--', 'vol-'), ('o--', 'o-'), ('-', '')] PUR19200122-V19-24-page6.txt: [('PUB-', 'PUB'), ('an-', 'an'), ('eon-', 'eon'), ('ac-', 'ac'), ('gen-', 'gen'), ('-very', 'very')] PUR19200122-V19-24-page7.txt: [('-t', 't'), ('chil-', 'chil'), ('ac-', 'ac'), ('com-', 'com'), ('-', ''), ('-', ''), ('pres-', 'pres'), ('ad-', 'ad'), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200122-V19-24-page8.txt: [('ad-', 'ad'), ('CIar-', 'CIar'), ('ad-', 'ad'), ('Sev-', 'Sev'), ('elect-', 'elect'), ('-', ''), ('"Re-', '"Re'), ('en-', 'en')] PUR19200129-V19-25-page1.txt: [('Isa-', 'Isa'), ('import-', 'import')] PUR19200129-V19-25-page2.txt: [('teach-', 'teach'), ('mem-', 'mem'), ('de-', 'de'), ('fin-', 'fin'), ('SOCIETIES-', 'SOCIETIES'), ('de-', 'de'), ('prom-', 'prom'), ('transgres-', 'transgres'), ('commis-', 'commis'), ('employ-', 'employ'), ('work--', 'work-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct')] PUR19200129-V19-25-page3.txt: [('le-', 'le'), ('bus-', 'bus'), ('PUB-', 'PUB'), ('associa-', 'associa'), ('Is-', 'Is'), ('scat-', 'scat')] PUR19200129-V19-25-page4.txt: [('-', ''), ('con-', 'con'), ('Responsi-', 'Responsi'), ('Teach-', 'Teach'), ('de-', 'de'), ('val-', 'val'), ('mission-', 'mission'), ('pot-', 'pot'), ('mili-', 'mili'), ('look-', 'look'), ('so-', 'so'), ('suggest-', 'suggest')] PUR19200129-V19-25-page5.txt: [('be-', 'be'), ('swift-', 'swift'), ('be-', 'be'), ('faith-', 'faith'), ('medi-', 'medi')] PUR19200129-V19-25-page6.txt: [('MIS-', 'MIS'), ('do-', 'do'), ('-o', 'o'), ('MISSION-', 'MISSION'), ('liter-', 'liter'), ('larg-', 'larg'), ('deep-grow-', 'deep-grow'), ('mis-', 'mis'), ('earn-', 'earn')] PUR19200129-V19-25-page7.txt: [('-', ''), ('sal-', 'sal'), ('elec-', 'elec'), ('-', ''), ('Ire-', 'Ire'), ('en-', 'en'), ('Ire-', 'Ire'), ('-', ''), ('-', ''), ('ref-', 'ref'), ('-', ''), ('-', ''), ('-', ''), ('elec-', 'elec'), ('-t', 't')] PUR19200129-V19-25-page8.txt: [('hus-', 'hus'), ('im-', 'im'), ('mak-', 'mak'), ('Clar-', 'Clar'), ('be-', 'be'), ('es-', 'es'), ('neces-', 'neces'), ('post-', 'post'), ('re-', 're'), ('wel-', 'wel'), ('ma-', 'ma')] PUR19200205-V19-26-page1.txt: [('-goal', 'goal'), ('cam-', 'cam'), ('-', ''), ('-', ''), ('Mem-', 'Mem')] PUR19200205-V19-26-page2.txt: [('ad-', 'ad'), ('infringe-', 'infringe'), ('WANTED-', 'WANTED'), ('an-', 'an'), ('circula-', 'circula'), ('Associa-', 'Associa'), ('so-', 'so'), ('ex-', 'ex'), ('building--', 'building-'), ('gen-', 'gen'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200205-V19-26-page3.txt: [('dur-', 'dur'), ('de-', 'de'), ('""rA.P."-', '""rA.P."'), ('-', ''), ('se-', 'se'), ('effi-', 'effi'), ('eon-', 'eon')] PUR19200205-V19-26-page4.txt: [('car-', 'car'), ('li-', 'li'), ('sat-', 'sat'), ('pur-', 'pur'), ('cer-', 'cer'), ('Cot-', 'Cot'), ('car-', 'car')] PUR19200205-V19-26-page5.txt: [('re-', 're'), ('an-', 'an'), ('ex-', 'ex'), ('-whole', 'whole'), ('--', '-'), ('dis-', 'dis')] PUR19200205-V19-26-page6.txt: [('of-', 'of'), ('Sand-', 'Sand'), ('regu-', 'regu'), ('hand-', 'hand'), ('insti-', 'insti'), ('ex-', 'ex'), ('great-', 'great'), ('cam-', 'cam')] PUR19200205-V19-26-page7.txt: [('sup-', 'sup'), ('pa-', 'pa'), ('ref-', 'ref'), ('pres-', 'pres'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('poul-', 'poul'), ('-t', 't')] PUR19200205-V19-26-page8.txt: [('Confer-', 'Confer'), ('busi-', 'busi'), ('Veter-', 'Veter'), ('re-', 're'), ('secretary-', 'secretary'), ('Ray-', 'Ray'), ('Marga-', 'Marga'), ('ses-', 'ses'), ('Con-', 'Con'), ('accord-', 'accord')] PUR19200212-V19-27-page1.txt: [('at-', 'at'), ('Confer-', 'Confer')] PUR19200212-V19-27-page2.txt: [('news-', 'news'), ('ses-', 'ses'), ('num-', 'num'), ('en-', 'en'), ('elect-', 'elect'), ('-', ''), ('-', ''), ('-', ''), ('cor-', 'cor'), ('ad-', 'ad')] PUR19200212-V19-27-page3.txt: [('tem-', 'tem')] PUR19200212-V19-27-page4.txt: [('member-', 'member'), ('sub-', 'sub'), ('daugh-', 'daugh'), ('in-', 'in'), ('-Day', 'Day'), ('un-', 'un')] PUR19200212-V19-27-page5.txt: [('com-', 'com'), ('Hay-', 'Hay'), ('In-', 'In'), ('mak-', 'mak'), ('Woes-', 'Woes'), ('car-', 'car'), ('THERING-', 'THERING'), ('confer-', 'confer'), ('Eng-', 'Eng'), ('fif-', 'fif'), ('"Record-', '"Record'), ('pa-', 'pa'), ('No-', 'No'), ('op-', 'op')] PUR19200212-V19-27-page6.txt: [('bus-', 'bus'), ('-', ''), ('Inter-Moun-', 'Inter-Moun'), ('kill-', 'kill'), ('faith-', 'faith'), ('em-', 'em'), ('gen-', 'gen'), ('assur-', 'assur'), ('hav-', 'hav'), ('fu-', 'fu')] PUR19200212-V19-27-page7.txt: [('-', ''), ('Sev-', 'Sev'), ('-t', 't'), ('-', ''), ('-', ''), ('-', '')] PUR19200212-V19-27-page8.txt: [('Con-', 'Con'), ('Advent-', 'Advent'), ('bap-', 'bap'), ('im-', 'im'), ('pre-', 'pre'), ('av-', 'av'), ('Pa-', 'Pa'), ('GLEN-', 'GLEN'), ('so-', 'so'), ('offer-', 'offer'), ('avow-', 'avow'), ('sur-', 'sur')] PUR19200226-V19-28-page1.txt: [('Seventh-', 'Seventh'), ('Califor-', 'Califor'), ('prac-', 'prac'), ('Pa-', 'Pa'), ('McEl-', 'McEl'), ('Ed-', 'Ed')] PUR19200226-V19-28-page10.txt: [('rec-', 'rec'), ('be-', 'be'), ('lead-', 'lead')] PUR19200226-V19-28-page11.txt: [('responsi-', 'responsi'), ('self-sacri-', 'self-sacri'), ('con-', 'con'), ('Gen-', 'Gen'), ('per-', 'per'), ('be-', 'be'), ('re-', 're'), ('Pa-', 'Pa'), ('Con-', 'Con'), ('-', ''), ('-', ''), ('com-', 'com')] PUR19200226-V19-28-page12.txt: [('MISSION-', 'MISSION'), ('-into', 'into'), ('per-', 'per'), ('-o', 'o')] PUR19200226-V19-28-page2.txt: [('at-', 'at'), ('of-', 'of'), ('--', '-'), ('lo-', 'lo'), ('for-', 'for'), ('Lind-', 'Lind'), ('Fa-', 'Fa'), ('mem-', 'mem'), ('se-', 'se'), ('sub-', 'sub'), ('im-', 'im'), ('-the', 'the')] PUR19200226-V19-28-page3.txt: [('con-', 'con'), ('confer-', 'confer'), ('train-', 'train'), ('teach-', 'teach'), ('physi-', 'physi'), ('as-', 'as'), ('chn-', 'chn')] PUR19200226-V19-28-page4.txt: [('Pacific-', 'Pacific'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200226-V19-28-page5.txt: [('un-', 'un'), ('com-', 'com')] PUR19200226-V19-28-page6.txt: [('Assssocia-', 'Assssocia'), ('Ac-', 'Ac'), ('com-', 'com')] PUR19200226-V19-28-page7.txt: [('-', '')] PUR19200226-V19-28-page8.txt: [('Fernan-', 'Fernan'), ('out-', 'out'), ('-', ''), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Every-', 'Every'), ('-', ''), ('-', '')] PUR19200304-V19-29-page1.txt: [('--four', '-four'), ('statis-', 'statis')] PUR19200304-V19-29-page10.txt: [('Tuc-', 'Tuc'), ('sev-', 'sev'), ('in-', 'in'), ('Je-', 'Je'), ('ac-', 'ac'), ('Chris-', 'Chris'), ('Cal-', 'Cal'), ('-', '')] PUR19200304-V19-29-page11.txt: [('-t', 't'), ('paint-', 'paint'), ('pre-', 'pre'), ('-', ''), ('mar-', 'mar'), ('MISSION-', 'MISSION'), ('un-', 'un'), ('ex-', 'ex'), ('-', ''), ('ad-', 'ad'), ('San-', 'San'), ('Glen-', 'Glen'), ('-', ''), ('stand-', 'stand'), ('employ-', 'employ'), ('Seventh-', 'Seventh'), ('-', ''), ('wo-', 'wo'), ('-', ''), ('-', ''), ('-', '')] PUR19200304-V19-29-page12.txt: [('ad-', 'ad'), ('Emer-', 'Emer'), ('Secretary--', 'Secretary-'), ('re-', 're'), ('Cali-', 'Cali'), ('lib-', 'lib'), ('Sani-', 'Sani'), ('Confer-', 'Confer'), ('South--', 'South-'), ('Southeast-', 'Southeast'), ('at-', 'at'), ('Spiritism--', 'Spiritism-'), ('Confer-', 'Confer'), ('men-', 'men')] PUR19200304-V19-29-page2.txt: [('dis-', 'dis'), ('con-', 'con'), ('publish-', 'publish'), ('min-', 'min'), ('obser-', 'obser'), ('mat-', 'mat'), ('pre-', 'pre'), ('Ne-', 'Ne'), ('ed-', 'ed')] PUR19200304-V19-29-page3.txt: [('long-', 'long'), ('mini-', 'mini'), ('num-', 'num'), ('pub-', 'pub'), ('sal-', 'sal'), ('re-', 're'), ('--from', '-from'), ('fa.-', 'fa.'), ('spe-', 'spe')] PUR19200304-V19-29-page4.txt: [('broad-', 'broad'), ('-', ''), ('co-oper-', 'co-oper'), ('com-', 'com'), ('stu-', 'stu')] PUR19200304-V19-29-page5.txt: [('-', ''), ('-', ''), ('convic-', 'convic'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('make-', 'make'), ('at-', 'at'), ('--have', '-have'), ('elemen-', 'elemen'), ('depart-', 'depart'), ('Gen-', 'Gen'), ('com-', 'com'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('in-', 'in'), ('-', ''), ('-', ''), ('work-', 'work'), ('-', ''), ('-', '')] PUR19200304-V19-29-page6.txt: [('Sab-', 'Sab'), ('hun-', 'hun'), ('mem-', 'mem'), ('-', ''), ('satis-', 'satis'), ('un-', 'un'), ('in-', 'in'), ('Inter-', 'Inter'), ('difficul-', 'difficul'), ('de-', 'de')] PUR19200304-V19-29-page7.txt: [('Confer-', 'Confer'), ('-safe', 'safe'), ('re-', 're'), ('meet-', 'meet'), ('De-', 'De'), ('thank-', 'thank'), ('vol-', 'vol'), ('organiza-', 'organiza'), ('quad-', 'quad'), ('Confer-', 'Confer'), ('confer-', 'confer')] PUR19200304-V19-29-page8.txt: [('-', ''), ('-', ''), ('mission-', 'mission')] PUR19200304-V19-29-page9.txt: [('in-', 'in'), ('Confer-', 'Confer'), ('grati-', 'grati'), ('ren-', 'ren')] PUR19200311-V19-30-page1.txt: [('min.-', 'min.'), ('vis-', 'vis'), ('com-', 'com'), ('-our', 'our'), ('Bechuana-', 'Bechuana'), ('Basuto-', 'Basuto'), ('twen-', 'twen'), ('re-', 're')] PUR19200311-V19-30-page2.txt: [('"Howev-', '"Howev'), ('call-', 'call'), ('com-', 'com'), ('Surren-', 'Surren'), ('Sab-', 'Sab'), ('-', ''), ('Cur-', 'Cur'), ('vicin-', 'vicin'), ('Oct-', 'Oct')] PUR19200311-V19-30-page3.txt: [('consist-', 'consist'), ('organ-', 'organ'), ('earn-', 'earn'), ('mis-', 'mis')] PUR19200311-V19-30-page4.txt: [('instru-', 'instru'), ('-wvow."', 'wvow."'), ('-Av.', 'Av.'), ("'Wwv-", "'Wwv"), ('-kiwe\'v\'nr"-v', 'kiwe\'v\'nr"-v'), ('dis-', 'dis'), ('ani-', 'ani'), ('vivisec-', 'vivisec'), ('-', ''), ('-', ''), ('ar-', 'ar'), ('fill-', 'fill'), ('pa-', 'pa'), ('be-', 'be'), ('Samari-', 'Samari'), ('oppor-', 'oppor'), ('ad-', 'ad'), ('dis-', 'dis')] PUR19200311-V19-30-page5.txt: [('writ-', 'writ'), ('aver-', 'aver'), ('DE-', 'DE'), ('in-', 'in'), ('even-', 'even'), ('meet-', 'meet')] PUR19200311-V19-30-page6.txt: [('reward-', 'reward'), ('Ana-', 'Ana'), ('Revela-', 'Revela'), ('thirty-', 'thirty'), ('Re-', 'Re')] PUR19200311-V19-30-page7.txt: [('con-', 'con'), ('repu-', 'repu'), ('Mes-', 'Mes'), ('-The', 'The'), ('un-', 'un'), ('ad-', 'ad'), ('Price-', 'Price'), ('Sev-', 'Sev'), ('lum-', 'lum'), ('Thompson-', 'Thompson'), ('-', ''), ('-', ''), ('-', ''), ('stand-', 'stand'), ('employ.-', 'employ.'), ('-', ''), ('-iheerful', 'iheerful'), ('liv-', 'liv')] PUR19200311-V19-30-page8.txt: [('mem-', 'mem'), ('Sab-', 'Sab')] PUR19200318-V19-31-page1.txt: [('con-', 'con'), ('them-', 'them'), ('intro-', 'intro')] PUR19200318-V19-31-page2.txt: [('Cal-', 'Cal'), ('Nov-', 'Nov')] PUR19200318-V19-31-page3.txt: [('fin-', 'fin'), ('tal-', 'tal'), ('bas-', 'bas'), ('mission-', 'mission'), ('be-', 'be')] PUR19200318-V19-31-page4.txt: [('al-', 'al'), ('re-', 're'), ('sym-', 'sym')] PUR19200318-V19-31-page5.txt: [('salesman-', 'salesman'), ('-----', '----'), ('Ari-', 'Ari'), ('suc-', 'suc'), ('Cal-', 'Cal'), ('har-', 'har')] PUR19200318-V19-31-page6.txt: [('im-', 'im'), ('An-', 'An'), ('-', '')] PUR19200318-V19-31-page7.txt: [('privil-', 'privil'), ('pre-', 'pre'), ('foun-', 'foun'), ('Advent-', 'Advent'), ('Per-', 'Per'), ('-', ''), ('Sanitar-', 'Sanitar'), ('orchard-', 'orchard'), ('un-', 'un')] PUR19200318-V19-31-page8.txt: [('re-', 're'), ('prin-', 'prin'), ('Sani-', 'Sani'), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200325-V19-32-page1.txt: [('af-', 'af'), ('denomina-', 'denomina'), ('-', ''), ('va-', 'va'), ('pre-', 'pre'), ('incapaci-', 'incapaci'), ('stu-', 'stu'), ('fa-', 'fa')] PUR19200325-V19-32-page2.txt: [('ad-', 'ad'), ('precept-', 'precept'), ('-', ''), ('-', ''), ('-', '')] PUR19200325-V19-32-page3.txt: [('-', ''), ('con-', 'con'), ('labor-', 'labor')] PUR19200325-V19-32-page4.txt: [('C-', 'C'), ('crea-', 'crea'), ('com-', 'com'), ('vol-', 'vol'), ('self-de-', 'self-de')] PUR19200325-V19-32-page6.txt: [('en-', 'en'), ('seri-', 'seri'), ('de-', 'de'), ('connec-', 'connec'), ('truth-', 'truth'), ('num-', 'num')] PUR19200325-V19-32-page7.txt: [('un-', 'un'), ('pres-', 'pres'), ('mar-', 'mar'), ('liv-', 'liv'), ('Moun-', 'Moun'), ('Eng-', 'Eng'), ('paint-', 'paint'), ('John-', 'John')] PUR19200325-V19-32-page8.txt: [('ca-', 'ca'), ('de-', 'de'), ('acad-', 'acad'), ('Sani-', 'Sani'), ('commit-', 'commit'), ('McEl-', 'McEl'), ('Pa-', 'Pa'), ('Spe-', 'Spe')] PUR19200401-V19-33-page1.txt: [('meet-', 'meet'), ('Coun-', 'Coun'), ('recommend-', 'recommend')] PUR19200401-V19-33-page2.txt: [('--this', '-this'), ('Thur-', 'Thur'), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct')] PUR19200401-V19-33-page3.txt: [('-"t""W-Vont.fwv', '"t""W-Vont.fwv'), ('V-', 'V'), ('-enter', 'enter'), ('gener-', 'gener'), ('di-', 'di'), ('vol-', 'vol'), ('stretch-', 'stretch'), ('Spir-', 'Spir'), ('sud-', 'sud')] PUR19200401-V19-33-page4.txt: [('presi-', 'presi'), ('ex-', 'ex'), ('Ma-', 'Ma'), ('chil-', 'chil'), ('talk-', 'talk')] PUR19200401-V19-33-page5.txt: [('great-', 'great'), ('eight-', 'eight'), ('Span-', 'Span'), ('en-', 'en')] PUR19200401-V19-33-page6.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('di-', 'di'), ('lawless-', 'lawless'), ('To-', 'To'), ('as-', 'as')] PUR19200401-V19-33-page7.txt: [('linger-', 'linger'), ('children-', 'children'), ('as-', 'as'), ('Sebasto-', 'Sebasto')] PUR19200401-V19-33-page8.txt: [('Wal-', 'Wal'), ('necessi-', 'necessi'), ('prog-', 'prog'), ('El-', 'El'), ('veri-', 'veri'), ('of-', 'of'), ('be-', 'be'), ('ex-', 'ex'), ('is-', 'is'), ('Confer-', 'Confer'), ('assist-', 'assist'), ('be-', 'be'), ('Pa-', 'Pa')] PUR19200408-V19-34-page1.txt: [('-', ''), ('e--', 'e-'), ('ar-', 'ar'), ('conven-', 'conven'), ('mis-', 'mis'), ('col-', 'col')] PUR19200408-V19-34-page2.txt: [('com-', 'com'), ('terri-', 'terri'), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct')] PUR19200408-V19-34-page3.txt: [('-only', 'only'), ('-wn..', 'wn..'), ('spe-', 'spe'), ('-cent', 'cent')] PUR19200408-V19-34-page5.txt: [('read-', 'read'), ('ef-', 'ef'), ('ex-', 'ex'), ('is-', 'is'), ('in-', 'in'), ('-', '')] PUR19200408-V19-34-page6.txt: [('-inch', 'inch'), ('daugh-', 'daugh')] PUR19200408-V19-34-page7.txt: [('Pet-', 'Pet'), ('lov-', 'lov'), ('un-', 'un')] PUR19200408-V19-34-page8.txt: [('Address-', 'Address'), ('Emer-', 'Emer'), ('Auditor-', 'Auditor'), ('Secretary-', 'Secretary'), ('-S.', 'S.'), ('Secretary-', 'Secretary'), ('ren-', 'ren'), ('mead-', 'mead'), ('north-', 'north'), ('-', ''), ('"trans-', '"trans'), ('conscious-', 'conscious')] PUR19200415-V19-35-page1.txt: [('-', ''), ('com-', 'com'), ('un-', 'un'), ('re-', 're'), ('pub-', 'pub'), ('-o-o-k.', 'o-o-k.')] PUR19200415-V19-35-page2.txt: [('--"Great', '-"Great'), ('organ-', 'organ'), ('evan-', 'evan'), ('con-', 'con'), ('grad-', 'grad'), ('-', ''), ('-', ''), ('-', ''), ('Confer-', 'Confer'), ('confer-', 'confer'), ('corre-', 'corre')] PUR19200415-V19-35-page3.txt: [('An-', 'An'), ('"Euro-', '"Euro'), ('chiI-', 'chiI'), ('dis-', 'dis'), ('peo-', 'peo'), ('bun-', 'bun'), ('Ap-', 'Ap'), ('"Clini-', '"Clini'), ('"Physi-', '"Physi'), ('Lectur-', 'Lectur'), ('Sanitar-', 'Sanitar')] PUR19200415-V19-35-page4.txt: [('-', ''), ('w-', 'w'), ('v-iwn.-', 'v-iwn.'), ('-', ''), ('-', ''), ('-a', 'a'), ('-', ''), ('earn.-', 'earn.'), ('Sab-', 'Sab'), ('--', '-'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('con-', 'con'), ('great-', 'great'), ('de-', 'de'), ('encour-', 'encour'), ('know-', 'know'), ('plan-', 'plan'), ('-', '')] PUR19200415-V19-35-page5.txt: [('Sab-', 'Sab'), ('Taft-', 'Taft'), ('re-', 're'), ('Gus-', 'Gus'), ('colpor-', 'colpor'), ('ex-', 'ex'), ('one-', 'one'), ('Pub-', 'Pub'), ('Wed-', 'Wed')] PUR19200415-V19-35-page6.txt: [('ex-', 'ex'), ('con-', 'con'), ('mem-', 'mem'), ('cents-', 'cents'), ('en-', 'en'), ('pre-', 'pre'), ('JEN-', 'JEN')] PUR19200415-V19-35-page7.txt: [('-', ''), ('-t', 't'), ('-', ''), ('-', ''), ('in-', 'in'), ('child-', 'child'), ('to-', 'to'), ('living.-', 'living.'), ('re-', 're')] PUR19200415-V19-35-page8.txt: [('con-', 'con'), ('ser-', 'ser'), ('af-', 'af'), ('-the', 'the'), ('Expo-', 'Expo'), ('pres-', 'pres'), ('reconse-', 'reconse')] PUR19200422-V19-36-page1.txt: [('Ad-', 'Ad'), ('there-', 'there'), ('secre-', 'secre'), ('Moun-', 'Moun')] PUR19200422-V19-36-page2.txt: [('com-', 'com'), ('meet-', 'meet'), ('Bartrtion-', 'Bartrtion'), ('-Editor', 'Editor'), ('-', ''), ('tpoorOcgt-', 'tpoorOcgt')] PUR19200422-V19-36-page3.txt: [('CON-', 'CON'), ('re-', 're'), ('tak-', 'tak'), ('peo-', 'peo'), ('be-', 'be'), ('-o', 'o')] PUR19200422-V19-36-page4.txt: [('Pub-', 'Pub'), ('-', ''), ('Pol-', 'Pol'), ('les-', 'les'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200422-V19-36-page5.txt: [('informa-', 'informa'), ('distrib-', 'distrib'), ('-', '')] PUR19200422-V19-36-page6.txt: [('in-', 'in'), ('"Spir-', '"Spir'), ('teach-', 'teach'), ('fail-', 'fail'), ('chil-', 'chil'), ('Egyp-', 'Egyp'), ('McRey-', 'McRey'), ('Pat-', 'Pat')] PUR19200422-V19-36-page7.txt: [('subscrip-', 'subscrip'), ('-t', 't'), ('mis-', 'mis'), ('vis-', 'vis'), ('for-', 'for'), ('-in', 'in'), ('me-', 'me'), ('-', ''), ('-', '')] PUR19200422-V19-36-page8.txt: [('Cali-', 'Cali'), ('excel-', 'excel'), ('attend-', 'attend'), ('con-', 'con'), ('-', ''), ('-', ''), ("'Nevada------", "'Nevada-----"), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200429-V19-37-page1.txt: [('col-', 'col'), ('prac-', 'prac')] PUR19200429-V19-37-page2.txt: [('-UNION', 'UNION'), ('inform-', 'inform'), ('lit-', 'lit'), ('stulti-', 'stulti'), ('pro-', 'pro'), ('be-', 'be'), ('oc-', 'oc'), ('news-', 'news'), ('-', ''), ('-', ''), ('oth-', 'oth')] PUR19200429-V19-37-page3.txt: [('im-', 'im'), ('bless-', 'bless'), ('at-', 'at'), ('Mas-', 'Mas')] PUR19200429-V19-37-page4.txt: [('organ-', 'organ'), ('suf-', 'suf'), ('confer-', 'confer')] PUR19200429-V19-37-page5.txt: [('or-', 'or'), ('CORPOR-', 'CORPOR'), ('con-', 'con'), ('Stock-', 'Stock'), ('SEV-', 'SEV'), ('with-', 'with'), ('--in', '-in'), ('aggres-', 'aggres'), ('--', '-'), ('pre-', 'pre'), ('of-', 'of')] PUR19200429-V19-37-page6.txt: [('con-', 'con'), ('instruc-', 'instruc'), ('mem-', 'mem'), ('dedi-', 'dedi'), ('Confer-', 'Confer')] PUR19200429-V19-37-page7.txt: [('Adven-', 'Adven'), ('re-', 're'), ('al-', 'al'), ('moth-', 'moth'), ('mov-', 'mov'), ('aft-', 'aft'), ('ad-', 'ad'), ('-Position', 'Position'), ('giv-', 'giv')] PUR19200429-V19-37-page8.txt: [('Mc-', 'Mc'), ('Sis-', 'Sis'), ('ac-', 'ac'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200506-V19-38-page1.txt: [('faith-', 'faith'), ('con-', 'con'), ('de-', 'de'), ('peo-', 'peo')] PUR19200506-V19-38-page2.txt: [('read-', 'read'), ('-Price', 'Price'), ('them-', 'them'), ('ab-', 'ab'), ('-', ''), ('-', ''), ('-', '')] PUR19200506-V19-38-page3.txt: [('Mc-', 'Mc'), ('sub-', 'sub'), ('-', ''), ('-', ''), ('Spir-', 'Spir'), ('-Seen', 'Seen')] PUR19200506-V19-38-page4.txt: [('-', ''), ('-"', '"'), ('opportuni-', 'opportuni'), ('anoth-', 'anoth'), ('apprecia-', 'apprecia'), ('individ-', 'individ')] PUR19200506-V19-38-page5.txt: [('re-', 're'), ('con-', 'con'), ('let-', 'let'), ('ap-', 'ap')] PUR19200506-V19-38-page6.txt: [('meet-', 'meet'), ('Sab-', 'Sab'), ('acade-', 'acade'), ('be-', 'be'), ('an-', 'an'), ('SEV-', 'SEV'), ('be-', 'be'), ('meet-', 'meet'), ('giv-', 'giv')] PUR19200506-V19-38-page7.txt: [('-Emil', 'Emil'), ('---', '--'), ('un-', 'un'), ('Hos-', 'Hos'), ('-', ''), ('fol-', 'fol'), ('-', '')] PUR19200506-V19-38-page8.txt: [('Oak-', 'Oak'), ('col-', 'col'), ('su-', 'su'), ('en-', 'en'), ('con-', 'con'), ('or-', 'or'), ('mis-', 'mis'), ('Ma-', 'Ma'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200513-V19-39-page2.txt: [('address-', 'address'), ('-finished', 'finished'), ('spec-', 'spec'), ('compris-', 'compris'), ('Nov-', 'Nov'), ('la-', 'la'), ('-', ''), ('-', ''), ('-', '')] PUR19200513-V19-39-page3.txt: [('col-', 'col'), ('one-', 'one'), ('bap-', 'bap'), ('fu-', 'fu'), ('Peo-', 'Peo'), ('hold-', 'hold'), ('--all', '-all'), ('con-', 'con'), ('offer-', 'offer'), ('-', '')] PUR19200513-V19-39-page4.txt: [('num-', 'num'), ('post-', 'post'), ('El-', 'El'), ('Li-', 'Li'), ('old-', 'old'), ('arch-en-', 'arch-en')] PUR19200513-V19-39-page5.txt: [('bap-', 'bap'), ('des-', 'des'), ('SEV-', 'SEV'), ('teach-', 'teach')] PUR19200513-V19-39-page6.txt: [('meet-', 'meet'), ('return-', 'return'), ('---', '--'), ('dread-', 'dread'), ('-', '')] PUR19200513-V19-39-page7.txt: [('-', ''), ('mother-', 'mother'), ('bargain.-Twenty-', 'bargain.-Twenty'), ('-ye', 'ye'), ('An-', 'An'), ('Ad-', 'Ad'), ('-', ''), ('-', ''), ('pe-', 'pe'), ('hus-', 'hus')] PUR19200513-V19-39-page8.txt: [('con-', 'con'), ('con-', 'con'), ('in-', 'in'), ('receiv-', 'receiv'), ('com-', 'com'), ('em-', 'em'), ('mat-', 'mat'), ('re-', 're'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('rap-', 'rap'), ('-', ''), ('-', ''), ('-', ''), ('si-', 'si'), ('mem-', 'mem'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200520-V19-40-page1.txt: [('follow-', 'follow'), ('Mem-', 'Mem'), ('par-', 'par'), ('Sab-', 'Sab'), ('neg-', 'neg'), ('three-', 'three'), ('rec-', 'rec'), ('reas-', 'reas'), ('num-', 'num'), ('sec-', 'sec')] PUR19200520-V19-40-page2.txt: [('nec-', 'nec'), ('jeal-', 'jeal'), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Col-', 'Col'), ('-', ''), ('-', ''), ('-', ''), ('Subscription-', 'Subscription'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct')] PUR19200520-V19-40-page3.txt: [('El-', 'El'), ('Ger-', 'Ger'), ('gar-', 'gar'), ("F'ER-", "F'ER"), ('tran-', 'tran')] PUR19200520-V19-40-page4.txt: [('Vi-', 'Vi'), ('ap-', 'ap'), ('af-', 'af'), ('re-', 're'), ('re-', 're')] PUR19200520-V19-40-page5.txt: [('organ-', 'organ')] PUR19200520-V19-40-page6.txt: [('ex-', 'ex'), ('con-', 'con'), ('pil-', 'pil'), ('Cem-', 'Cem'), ('-', ''), ('Feb-', 'Feb'), ('Oak-', 'Oak'), ('hos-', 'hos')] PUR19200520-V19-40-page7.txt: [('Metho-', 'Metho'), ('Reed-', 'Reed'), ('perman-', 'perman'), ('Ad-', 'Ad'), ('-', ''), ('-', ''), ('al-', 'al'), ('-', ''), ('remain-', 'remain'), ('-', ''), ('de-', 'de'), ('-', ''), ('-', '')] PUR19200520-V19-40-page8.txt: [('public-', 'public'), ('bap-', 'bap'), ('hus-', 'hus'), ('fre-', 'fre'), ('influ-', 'influ'), ('subscrip-', 'subscrip'), ('church-', 'church'), ('yellow-tint-', 'yellow-tint'), ('thir-', 'thir'), ('Ben-', 'Ben'), ('un-', 'un'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200527-V19-41-page2.txt: [('ac-', 'ac'), ('-', ''), ('-', ''), ('-', ''), ('crowd-', 'crowd'), ('Nov-', 'Nov')] PUR19200527-V19-41-page3.txt: [('in-', 'in'), ('number-', 'number'), ('--', '-'), ('rad-', 'rad')] PUR19200527-V19-41-page4.txt: [('superin-', 'superin')] PUR19200527-V19-41-page5.txt: [('add-', 'add'), ('-', ''), ('CONSTITU-', 'CONSTITU'), ('be-', 'be'), ('mis-', 'mis'), ('every-', 'every')] PUR19200527-V19-41-page6.txt: [('sat-', 'sat'), ('pur-', 'pur'), ('An-', 'An'), ('dis-', 'dis'), ('-', ''), ('Loughbor-', 'Loughbor'), ('mem-', 'mem')] PUR19200527-V19-41-page7.txt: [('by-', 'by'), ('-duty."', 'duty."'), ('-', ''), ('-', ''), ('in-', 'in'), ('four-', 'four'), ('-', ''), ('-', ''), ('pres-', 'pres'), ('Prin-', 'Prin')] PUR19200527-V19-41-page8.txt: [('Hos-', 'Hos'), ('lead-', 'lead'), ('work-', 'work'), ('secretary-treas-', 'secretary-treas'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200603-V19-42-page1.txt: [('backslid-', 'backslid'), ('al-', 'al')] PUR19200603-V19-42-page2.txt: [('Tung-', 'Tung'), ('Un-', 'Un'), ('-', ''), ('su-', 'su'), ('Train-', 'Train'), ('hold-', 'hold'), ('Oct-', 'Oct'), ('-', ''), ('-', ''), ('-', '')] PUR19200603-V19-42-page3.txt: [('-', ''), ('..-', '..'), ('-', ''), ('-', ''), ('re-', 're'), ('-', ''), ('-', ''), ('-inh-Res', 'inh-Res'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('---ISIM', '--ISIM'), ('estab-', 'estab')] PUR19200603-V19-42-page4.txt: [('-', ''), ('commis-', 'commis'), ('turn-', 'turn'), ('sud-', 'sud')] PUR19200603-V19-42-page5.txt: [('school-', 'school'), ('-', ''), ('rep-', 'rep'), ('com-', 'com'), ('-', ''), ('-', ''), ('-tee', 'tee'), ('-', ''), ('-', '')] PUR19200603-V19-42-page6.txt: [('-', ''), ('educa-', 'educa'), ('-cent-aweek', 'cent-aweek')] PUR19200603-V19-42-page7.txt: [('-----', '----'), ('at-', 'at'), ('show-', 'show'), ('conduct-', 'conduct'), ('sev-', 'sev')] PUR19200603-V19-42-page8.txt: [('-', ''), ('-', ''), ('bless-', 'bless'), ('sum-', 'sum'), ('Fran-', 'Fran'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200610-V19-43-page1.txt: [('-', ''), ('appre-', 'appre'), ('de-', 'de')] PUR19200610-V19-43-page2.txt: [('pe-', 'pe'), ('twenty-', 'twenty'), ('intelli-', 'intelli'), ('at-', 'at'), ('re-', 're'), ('CON-', 'CON'), ('---', '--'), ('-', ''), ('-', ''), ('-', ''), ('al-', 'al'), ('Sab-', 'Sab'), ('Nov-', 'Nov')] PUR19200610-V19-43-page3.txt: [('associa-', 'associa'), ('Dur-', 'Dur'), ('seat-', 'seat'), ('CONFER-', 'CONFER')] PUR19200610-V19-43-page4.txt: [('plant-', 'plant'), ('ex-', 'ex')] PUR19200610-V19-43-page5.txt: [('endeavor-', 'endeavor'), ('hard-', 'hard')] PUR19200610-V19-43-page6.txt: [('Parent-', 'Parent'), ('every-', 'every'), ('suc-', 'suc'), ('COMMENCE-', 'COMMENCE'), ('doc-', 'doc'), ('Ran-', 'Ran'), ('Or-', 'Or'), ('giv-', 'giv')] PUR19200610-V19-43-page7.txt: [('Fran-', 'Fran'), ('-Agents', 'Agents'), ('Han-', 'Han'), ('-', ''), ('confer-', 'confer'), ('-', ''), ('-', ''), ('-t', 't')] PUR19200610-V19-43-page8.txt: [('suffi-', 'suffi'), ('ef-', 'ef'), ('Leg-', 'Leg'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('rel-', 'rel'), ('-', '')] PUR19200617-V19-44-page1.txt: [('with-', 'with'), ('up-', 'up'), ('be-', 'be'), ('in-', 'in'), ('let-', 'let'), ('en-', 'en')] PUR19200617-V19-44-page2.txt: [('-', ''), ('--', '-'), ('-', ''), ('re-', 're'), ('en-', 'en'), ('-', ''), ('-', ''), ('-', ''), ('eve-', 'eve'), ('Brook--', 'Brook-')] PUR19200617-V19-44-page3.txt: [('emphasiz-', 'emphasiz'), ('At-', 'At'), ('im-', 'im'), ('fol-', 'fol'), ('sys-', 'sys'), ('con-', 'con'), ('as-', 'as')] PUR19200617-V19-44-page4.txt: [('-chart"', 'chart"'), ('-o', 'o'), ('pres-', 'pres'), ('avail-', 'avail')] PUR19200617-V19-44-page6.txt: [('popula-', 'popula'), ('Red-', 'Red'), ('thir-', 'thir'), ('"thir-', '"thir')] PUR19200617-V19-44-page7.txt: [('-t', 't'), ('-', ''), ('un-', 'un'), ('-------', '------'), ('Total-', 'Total'), ('Total-', 'Total'), ('-Utah', 'Utah'), ('cer-', 'cer'), ('-', ''), ('Total-', 'Total'), ('Total-', 'Total')] PUR19200617-V19-44-page8.txt: [('in-', 'in'), ('disappoint-', 'disappoint'), ('constant-', 'constant'), ('-', ''), ('-', ''), ('regu-', 'regu'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200624-V19-45-page1.txt: [('im-', 'im'), ('-', ''), ('attend-', 'attend'), ('pos-', 'pos')] PUR19200624-V19-45-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-house', 'house')] PUR19200624-V19-45-page3.txt: [('-.Nr"..', '.Nr"..'), ('instruc-', 'instruc'), ('Fire-', 'Fire'), ('hold-', 'hold'), ('par-', 'par'), ('cap-', 'cap'), ('confer-', 'confer')] PUR19200624-V19-45-page4.txt: [('Sab-', 'Sab'), ('nor-', 'nor'), ('Han-', 'Han'), ('Rey-', 'Rey'), ('travel-', 'travel'), ('creden-', 'creden')] PUR19200624-V19-45-page5.txt: [('com-', 'com')] PUR19200624-V19-45-page6.txt: [('mor-', 'mor'), ('in-', 'in'), ('Hart-', 'Hart'), ('at-', 'at'), ('Mis-', 'Mis'), ('Cali-', 'Cali')] PUR19200624-V19-45-page7.txt: [('ac-', 'ac'), ('serv-', 'serv'), ('miss-', 'miss'), ('-death', 'death'), ('e-', 'e'), ('Seventh-', 'Seventh'), ('-', ''), ('-t', 't'), ('sur-', 'sur'), ('grand-', 'grand'), ('resign-', 'resign'), ('con-', 'con'), ('as-', 'as')] PUR19200624-V19-45-page8.txt: [('un-', 'un'), ('visit-', 'visit'), ('con-', 'con'), ('So-', 'So'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200701-V19-46-page1.txt: [('sup-', 'sup'), ('car-', 'car'), ('educa-', 'educa'), ('teach-', 'teach'), ('-the', 'the'), ('su-', 'su'), ('as-', 'as')] PUR19200701-V19-46-page2.txt: [('education-', 'education'), ('-miniature', 'miniature'), ('-', ''), ('-', ''), ('-', ''), ('corru-', 'corru'), ('Nov-', 'Nov')] PUR19200701-V19-46-page3.txt: [('com-', 'com'), ('pleas-', 'pleas'), ('-tract', 'tract'), ('Stu-', 'Stu'), ('sum-', 'sum'), ('res-', 'res'), ('Pa-', 'Pa'), ('ex-', 'ex'), ('Pa-', 'Pa')] PUR19200701-V19-46-page4.txt: [('CON-', 'CON'), ('AD-', 'AD'), ('bur-', 'bur'), ('dele-', 'dele'), ('attend-', 'attend')] PUR19200701-V19-46-page5.txt: [('daugh-', 'daugh'), ('del-', 'del'), ('-connect', 'connect'), ('im-', 'im'), ('fam-', 'fam')] PUR19200701-V19-46-page6.txt: [('faith-', 'faith'), ('Sab-', 'Sab'), ('Christen-', 'Christen'), ('after-', 'after'), ('help-', 'help')] PUR19200701-V19-46-page7.txt: [('-', ''), ('-', '')] PUR19200701-V19-46-page8.txt: [('Con-', 'Con'), ('mis-', 'mis'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200708-V19-47-page1.txt: [('rais-', 'rais'), ('confer-', 'confer'), ('be-', 'be'), ('--sixty', '-sixty')] PUR19200708-V19-47-page2.txt: [('jour-', 'jour'), ('mos-', 'mos'), ('head-', 'head'), ('-', ''), ('-', ''), ('-', '')] PUR19200708-V19-47-page3.txt: [('Living-', 'Living'), ('turn-', 'turn'), ('trad-', 'trad'), ('Re-', 'Re'), ('CON-', 'CON'), ('AD-', 'AD'), ('slo-', 'slo'), ('South-', 'South'), ('well-', 'well'), ('dele-', 'dele')] PUR19200708-V19-47-page4.txt: [('in-', 'in'), ('ar-', 'ar')] PUR19200708-V19-47-page5.txt: [('fol-', 'fol')] PUR19200708-V19-47-page6.txt: [('out-', 'out'), ('Con-', 'Con'), ('sub-', 'sub'), ('ed-', 'ed'), ('tak-', 'tak')] PUR19200708-V19-47-page7.txt: [('en-', 'en'), ('Prin-', 'Prin'), ('-', ''), ('Glen-', 'Glen'), ('-', ''), ('at-', 'at'), ('recov-', 'recov'), ('conduct-', 'conduct'), ('un-', 'un'), ('ad-', 'ad'), ('-', '')] PUR19200708-V19-47-page8.txt: [('Washing-', 'Washing'), ('vis-', 'vis'), ('Martin-', 'Martin'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('around."Fac-', 'around."Fac'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200715-V19-48-page1.txt: [('mem-', 'mem')] PUR19200715-V19-48-page2.txt: [('accom-', 'accom'), ('Anti-', 'Anti'), ('to-', 'to'), ("'An-", "'An"), ('ef-', 'ef'), ('respon-', 'respon'), ('Member-', 'Member'), ('Glen-', 'Glen'), ('-', ''), ('to-', 'to'), ('-', ''), ('-', ''), ('-', ''), ('Nov-', 'Nov'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200715-V19-48-page3.txt: [('inval-', 'inval'), ('sin-', 'sin'), ('Sub-', 'Sub')] PUR19200715-V19-48-page4.txt: [('meet-', 'meet'), ('re-', 're')] PUR19200715-V19-48-page5.txt: [('dur-', 'dur'), ('AD-', 'AD'), ('faith-', 'faith'), ('North-', 'North'), ('advisabili-', 'advisabili')] PUR19200715-V19-48-page6.txt: [('Locke-', 'Locke'), ('-Snow', 'Snow'), ('result-', 'result'), ('-', ''), ('-.', '.'), ('-She', 'She'), ('Ser-', 'Ser')] PUR19200715-V19-48-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200715-V19-48-page8.txt: [('"Watch-', '"Watch'), ('Paint-', 'Paint'), ('-accompanied', 'accompanied'), ('-young', 'young'), ('secre-', 'secre'), ('ap-', 'ap'), ('Cal-', 'Cal'), ('Cof-', 'Cof'), ('Sis-', 'Sis'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200722-V19-49-page1.txt: [('keep-', 'keep'), ('mission-', 'mission'), ('soul-', 'soul'), ('regard-', 'regard')] PUR19200722-V19-49-page2.txt: [('-', ''), ('pre-', 'pre'), ('-', ''), ('-', ''), ('-', ''), ('wit-', 'wit'), ('-', '')] PUR19200722-V19-49-page3.txt: [('work-', 'work'), ('en-', 'en'), ('gath-', 'gath'), ('cel-', 'cel'), ('Rus-', 'Rus'), ('ex-', 'ex'), ('elect-', 'elect'), ('bap-', 'bap')] PUR19200722-V19-49-page4.txt: [('communi-', 'communi'), ('Califor-', 'Califor'), ('pro-', 'pro'), ('--is', '-is')] PUR19200722-V19-49-page5.txt: [('rec-', 'rec'), ('Cal-', 'Cal'), ('CON-', 'CON'), ('AD-', 'AD'), ('-', ''), ('meet-', 'meet'), ('mis-', 'mis'), ('-', '')] PUR19200722-V19-49-page6.txt: [('-', ''), ('secretary-', 'secretary'), ('Califor-', 'Califor')] PUR19200722-V19-49-page7.txt: [('hav-', 'hav'), ('bear.-', 'bear.'), ('wri-', 'wri'), ('-', ''), ('-', ''), ('-', ''), ('An-', 'An'), ('-', '')] PUR19200722-V19-49-page8.txt: [('Thurs-', 'Thurs'), ('Asso-', 'Asso'), ('ad-', 'ad'), ('de-', 'de'), ('Confer-', 'Confer'), ("'Min-", "'Min"), ('conduct-', 'conduct'), ('hill-', 'hill'), ('overcom-', 'overcom'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200729-V19-50-page1.txt: [('move-', 'move'), ('unleav-', 'unleav'), ('unleav-', 'unleav'), ('-', ''), ('-', '')] PUR19200729-V19-50-page2.txt: [('Septem-', 'Septem'), ('-', ''), ('-', ''), ('Nov-', 'Nov'), ('minis-', 'minis'), ('Oct-', 'Oct')] PUR19200729-V19-50-page3.txt: [('Aug-', 'Aug'), ('en-', 'en'), ('be-', 'be'), ('ser-', 'ser'), ('be-', 'be')] PUR19200729-V19-50-page4.txt: [('every-', 'every'), ('mis-', 'mis'), ('col-', 'col'), ('-foot', 'foot'), ('Seventh-', 'Seventh'), ('lo-', 'lo'), ('re-', 're'), ('ser-', 'ser'), ('confer-', 'confer')] PUR19200729-V19-50-page5.txt: [('-', ''), ('-', ''), ('open-', 'open'), ('ser-', 'ser'), ('inter-', 'inter'), ('Bakers-', 'Bakers')] PUR19200729-V19-50-page6.txt: [('din-', 'din'), ('condi-', 'condi')] PUR19200729-V19-50-page7.txt: [('char-', 'char'), ('pres-', 'pres'), ('ad-', 'ad'), ('-', ''), ('-', ''), ('-', ''), ('Scholar-', 'Scholar'), ('gar-', 'gar'), ('guar-', 'guar'), ('ap-', 'ap'), ('-', ''), ('-', '')] PUR19200729-V19-50-page8.txt: [('Office-', 'Office'), ('MISSION-', 'MISSION'), ('re-', 're'), ('an-', 'an'), ('fit-', 'fit'), ('com-', 'com'), ('manufac-', 'manufac'), ('lit-', 'lit'), ('fare-', 'fare'), ('fac-', 'fac'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200805-V19-51-page1.txt: [('-', ''), ('fellow-', 'fellow'), ('move-', 'move')] PUR19200805-V19-51-page2.txt: [('comple-', 'comple'), ('enter-', 'enter'), ('wilder-', 'wilder'), ('-', ''), ('-', ''), ('instruct-', 'instruct')] PUR19200805-V19-51-page3.txt: [('en-', 'en'), ('ven-', 'ven')] PUR19200805-V19-51-page4.txt: [('-N', 'N'), ('-', ''), ('en-', 'en'), ('E.-', 'E.'), ('per-', 'per'), ('-', '')] PUR19200805-V19-51-page5.txt: [('Cali-', 'Cali'), ('di-', 'di'), ('busi-', 'busi'), ('Califor-', 'Califor'), ('ob-', 'ob'), ('pur-', 'pur'), ('manufac-', 'manufac'), ('CON-', 'CON'), ('An-', 'An'), ('Sep-', 'Sep'), ('ASSOCI-', 'ASSOCI'), ('fac-', 'fac')] PUR19200805-V19-51-page6.txt: [('Mis-', 'Mis'), ('.s-', '.s'), ('-', ''), ('be-', 'be'), ('peo-', 'peo'), ('cen-', 'cen'), ('organ-', 'organ')] PUR19200805-V19-51-page7.txt: [('train-', 'train'), ('Cali-', 'Cali'), ('Chil-', 'Chil'), ('-', ''), ('-', ''), ('-', ''), ("'dish-", "'dish"), ('-', ''), ('Angeles-com-', 'Angeles-com'), ("-granite'", "granite'"), ('vine-cov-', 'vine-cov'), ('-', ''), ('-', ''), ('Ac-', 'Ac'), ('Sanitar-', 'Sanitar'), ('California-', 'California'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200805-V19-51-page8.txt: [('lit-', 'lit'), ('Office-', 'Office'), ('Secre-', 'Secre'), ('-interest', 'interest'), ('senti-', 'senti'), ('govern-', 'govern'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200812-V19-52-page1.txt: [('individ-', 'individ')] PUR19200812-V19-52-page2.txt: [('ex-', 'ex'), ('go-', 'go'), ('look-', 'look'), ('Nov-', 'Nov'), ('-', ''), ('-', ''), ('-.', '.')] PUR19200812-V19-52-page3.txt: [('re-', 're'), ('to-', 'to'), ('Eng-', 'Eng'), ('ts.vonpwv-', 'ts.vonpwv'), ('v."\'wneowJw-', 'v."\'wneowJw')] PUR19200812-V19-52-page4.txt: [('Teach-', 'Teach'), ('per-', 'per'), ('comple-', 'comple'), ('ed-', 'ed'), ('o-', 'o'), ('-', ''), ('-', ''), ('re-', 're')] PUR19200812-V19-52-page5.txt: [('tal-', 'tal'), ('oppor-', 'oppor'), ('sup-', 'sup'), ('discour-', 'discour'), ('o-', 'o')] PUR19200812-V19-52-page6.txt: [('Work-', 'Work'), ('Sa-', 'Sa'), ('quar-', 'quar'), ('society.-', 'society.'), ('ASSOCI-', 'ASSOCI'), ('-Mrs.', 'Mrs.'), ('"ban-', '"ban'), ('giv-', 'giv')] PUR19200812-V19-52-page7.txt: [('CON-', 'CON'), ('Califor-', 'Califor'), ('-', ''), ('-', ''), ('An-', 'An'), ('pur-', 'pur'), ('-', ''), ('Sanitar-', 'Sanitar'), ('-', ''), ('-', ''), ('mod-', 'mod')] PUR19200812-V19-52-page8.txt: [('Office-', 'Office'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200819-V20-01-page1.txt: [('ans-', 'ans'), ('oppor-', 'oppor'), ('Member-', 'Member'), ('mis-', 'mis'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200819-V20-01-page2.txt: [('arrange-', 'arrange'), ('vi-', 'vi'), ('mak-', 'mak'), ('-', ''), ('-', ''), ('-', '')] PUR19200819-V20-01-page3.txt: [('-', ''), ('exper-', 'exper'), ('-keep', 'keep'), ('MAGA-', 'MAGA'), ('shoul-', 'shoul'), ('infor-', 'infor')] PUR19200819-V20-01-page4.txt: [('de-', 'de'), ('salva-', 'salva'), ('ASSOCI-', 'ASSOCI')] PUR19200819-V20-01-page5.txt: [('CON-', 'CON'), ('-', ''), ('understand-', 'understand'), ('Septem-', 'Septem'), ('Sep-', 'Sep'), ('for-', 'for'), ('In-', 'In'), ('dor-', 'dor'), ('dia-', 'dia'), ('suf-', 'suf')] PUR19200819-V20-01-page6.txt: [('fam-', 'fam'), ('inci-', 'inci'), ('so-', 'so'), ('de-', 'de'), ('pa-', 'pa'), ('Muhl-', 'Muhl'), ('-', ''), ('-', ''), ('inter-', 'inter')] PUR19200819-V20-01-page7.txt: [('-', ''), ('-', ''), ('Pa-', 'Pa'), ('pres-', 'pres'), ('-', ''), ('vine-cov-', 'vine-cov'), ('Sanitar-', 'Sanitar'), ('-', ''), ('-', '')] PUR19200819-V20-01-page8.txt: [('for-', 'for'), ('Office--', 'Office-'), ('Secre-', 'Secre'), ('See-', 'See'), ('col-', 'col'), ('land-', 'land'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ffiffiW-', 'ffiffiW')] PUR19200826-V20-02-page1.txt: [('re-', 're'), ('-', '')] PUR19200826-V20-02-page2.txt: [('our-', 'our'), ('-', ''), ('-', ''), ('-', ''), ('-for', 'for')] PUR19200826-V20-02-page3.txt: [('tem-', 'tem')] PUR19200826-V20-02-page4.txt: [('Amer-', 'Amer')] PUR19200826-V20-02-page5.txt: [('Elder-', 'Elder'), ('start-', 'start'), ('ap-', 'ap'), ('be-', 'be')] PUR19200826-V20-02-page6.txt: [('-California', 'California'), ('ex-', 'ex'), ('treat-', 'treat'), ('peo-', 'peo')] PUR19200826-V20-02-page7.txt: [('mem-', 'mem'), ('-', ''), ('-understanding"', 'understanding"'), ('house-', 'house'), ('pres-', 'pres'), ('ad-', 'ad'), ('Seventh-', 'Seventh'), ('one-', 'one'), ('-A', 'A')] PUR19200826-V20-02-page8.txt: [('Office-', 'Office'), ('in-', 'in'), ('pre-', 'pre'), ('ad-', 'ad'), ('dur-', 'dur'), ('attend-', 'attend'), ('en-', 'en'), ('il-', 'il'), ('contin-', 'contin')] PUR19200902-V20-03-page1.txt: [('sug-', 'sug'), ('peo-', 'peo'), ('pleas-', 'pleas'), ('experi-', 'experi')] PUR19200902-V20-03-page2.txt: [('-', ''), ('-', '')] PUR19200902-V20-03-page3.txt: [('MAG-', 'MAG'), ('al-', 'al'), ('les-', 'les'), ('bring-', 'bring')] PUR19200902-V20-03-page4.txt: [('fare-', 'fare'), ('-', '')] PUR19200902-V20-03-page5.txt: [('dor-', 'dor'), ('in-', 'in'), ('con-', 'con'), ('-', ''), ('work-', 'work'), ('re-', 're'), ('wood-', 'wood')] PUR19200902-V20-03-page6.txt: [('-"Signs', '"Signs'), ('ad-', 'ad'), ('-', ''), ('-', ''), ('-', '')] PUR19200902-V20-03-page7.txt: [('demonstra-', 'demonstra'), ('Phar-', 'Phar'), ('Anti-Li-', 'Anti-Li'), ('---o', '--o'), ('-', ''), ('five-', 'five'), ('Pa-', 'Pa'), ('house-', 'house'), ('An-', 'An'), ('for-', 'for'), ('-t', 't')] PUR19200902-V20-03-page8.txt: [('Gen-', 'Gen'), ('Office-', 'Office'), ('con-', 'con'), ('-', ''), ('Sec-', 'Sec'), ('Phoe-', 'Phoe'), ('plan-', 'plan'), ('con-', 'con'), ('of-', 'of'), ('fifty-cent-a-', 'fifty-cent-a'), ('-', '')] PUR19200909-V20-04-page1.txt: [('Con-', 'Con'), ('at-', 'at'), ('meet-', 'meet'), ('look-', 'look'), ('mem-', 'mem'), ('-', ''), ('dur-', 'dur'), ('com-', 'com'), ('so-', 'so')] PUR19200909-V20-04-page2.txt: [('there-', 'there'), ('missions--', 'missions-'), ('en-', 'en'), ('-', ''), ('-', ''), ('-', ''), ('mar-', 'mar'), ('neg-', 'neg'), ('de-', 'de'), ('us-', 'us'), ('-', ''), ('-', ''), ('-', ''), ('Nov-', 'Nov'), ('-poet-office-at', 'poet-office-at'), ('-provided', 'provided')] PUR19200909-V20-04-page3.txt: [('re-', 're'), ('Aus-', 'Aus'), ('Athe-', 'Athe'), ('to-', 'to'), ('perse-', 'perse'), ('Ari-', 'Ari'), ('Secre-', 'Secre'), ('one-', 'one'), ('pre-', 'pre'), ('per-', 'per')] PUR19200909-V20-04-page4.txt: [('-had', 'had'), ('Ala-', 'Ala'), ('drop-', 'drop')] PUR19200909-V20-04-page5.txt: [('pre-', 'pre'), ('-', ''), ('open-', 'open'), ('morn-', 'morn')] PUR19200909-V20-04-page6.txt: [('In-', 'In'), ('Octo-', 'Octo')] PUR19200909-V20-04-page7.txt: [('-', ''), ('trans-', 'trans'), ('-', ''), ('-t', 't'), ('-', ''), ('Sczech-', 'Sczech'), ('Mission-', 'Mission'), ('for-', 'for')] PUR19200909-V20-04-page8.txt: [('Office-', 'Office'), ('ste-', 'ste')] PUR19200916-V20-05-page1.txt: [('serv-', 'serv'), ('Gen-', 'Gen'), ('seemed-', 'seemed'), ('la-', 'la'), ('per-', 'per')] PUR19200916-V20-05-page2.txt: [('-the', 'the'), ('attend-', 'attend'), ('peo-', 'peo'), ('-', ''), ('-', ''), ('-', ''), ('Nov-', 'Nov')] PUR19200916-V20-05-page3.txt: [('medi-', 'medi')] PUR19200916-V20-05-page4.txt: [('-W', 'W'), ('lib-', 'lib'), ('fol-', 'fol'), ('stu-', 'stu')] PUR19200916-V20-05-page5.txt: [('clos-', 'clos'), ('un-', 'un'), ('fif-', 'fif'), ('can-', 'can')] PUR19200916-V20-05-page6.txt: [('-', ''), ('period-', 'period'), ('print-', 'print'), ('vine-', 'vine'), ('-', ''), ('ev-', 'ev'), ('-', ''), ('Abia-', 'Abia'), ('oppor-', 'oppor'), ('Watson-', 'Watson')] PUR19200916-V20-05-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('Corres-', 'Corres'), ('-t', 't'), ('-', ''), ('Vil-', 'Vil'), ('-', ''), ('holi-', 'holi'), ('-', '')] PUR19200916-V20-05-page8.txt: [('DIRECTO-', 'DIRECTO'), ('"Re-', '"Re'), ('Office-', 'Office'), ('de-', 'de'), ('-for', 'for'), ('Secretary-Treasurer-', 'Secretary-Treasurer'), ('Ac-', 'Ac'), ('sup-', 'sup'), ('-An-', 'An-'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19200923-V20-06-page1.txt: [('-both', 'both')] PUR19200923-V20-06-page2.txt: [('ex-', 'ex'), ('-be', 'be'), ('thor-', 'thor'), ('increas-', 'increas'), ('In-', 'In'), ('through-', 'through'), ('com-', 'com'), ('-', ''), ('-', ''), ('in-', 'in'), ('con-', 'con'), ('ex-', 'ex')] PUR19200923-V20-06-page3.txt: [('build-', 'build'), ('vaca-', 'vaca'), ('mid-', 'mid'), ('Sab-', 'Sab'), ('ap-', 'ap'), ('.chil-', '.chil'), ('sum-', 'sum'), ('semi-', 'semi')] PUR19200923-V20-06-page4.txt: [('soon-', 'soon'), ('stop-', 'stop'), ('serv-', 'serv'), ('cer-', 'cer'), ('meet-', 'meet'), ('in-', 'in'), ('Je-', 'Je')] PUR19200923-V20-06-page5.txt: [('Sis-', 'Sis')] PUR19200923-V20-06-page6.txt: [('c-', 'c'), ('re-', 're'), ('ex-', 'ex'), ('COLLEC-', 'COLLEC'), ('-', '')] PUR19200923-V20-06-page7.txt: [('Da-', 'Da'), ('-in', 'in'), ('Shaf-', 'Shaf'), ('sym-', 'sym'), ('-', ''), ('Ad-', 'Ad'), ('-', ''), ('-', ''), ('Par-', 'Par'), ('Corres-', 'Corres'), ('-t', 't'), ('-', ''), ('read-', 'read'), ('Re-', 'Re'), ('-', ''), ('-', ''), ('-G', 'G'), ('-', ''), ('-', ''), ('-', '')] PUR19200923-V20-06-page8.txt: [('Office-', 'Office'), ('o-', 'o'), ('INGATHER-', 'INGATHER'), ('enthu-', 'enthu'), ('hav-', 'hav'), ('re-', 're')] PUR19200930-V20-07-page1.txt: [('impossi-', 'impossi'), ('sug-', 'sug'), ('any-', 'any')] PUR19200930-V20-07-page2.txt: [('ap-', 'ap'), ('-', ''), ('-', ''), ('-', ''), ('Glen-', 'Glen'), ('Oct-', 'Oct')] PUR19200930-V20-07-page3.txt: [('an-', 'an'), ('appre-', 'appre'), ('education-', 'education'), ('-.', '.'), ('e-', 'e'), ('fore-', 'fore'), ('in-', 'in'), ('nov-', 'nov'), ('oppor-', 'oppor'), ('am-', 'am'), ('con-', 'con'), ('Cal-', 'Cal')] PUR19200930-V20-07-page4.txt: [('be-', 'be'), ('interme-', 'interme'), ('in-', 'in'), ('Di-', 'Di'), ('Oc-', 'Oc'), ('con-', 'con')] PUR19200930-V20-07-page5.txt: [('-', ''), ('men-', 'men'), ('-NO', 'NO'), ('com-', 'com'), ('an-', 'an'), ('after-', 'after'), ('mis-', 'mis'), ('Ingather-', 'Ingather'), ('be-', 'be')] PUR19200930-V20-07-page6.txt: [('sec-', 'sec'), ('to-', 'to'), ('en-', 'en'), ('-Utah', 'Utah'), ('offer-', 'offer'), ('considera-', 'considera'), ('spe-', 'spe'), ('re-', 're')] PUR19200930-V20-07-page7.txt: [('bus-', 'bus'), ('meek-', 'meek'), ('ef-', 'ef'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('ef-', 'ef'), ('-', ''), ('rea-', 'rea'), ('stu-', 'stu'), ('efaord-', 'efaord'), ('Com-', 'Com'), ('-', ''), ('-', ''), ('Oak-', 'Oak'), ('-', ''), ('Ad-', 'Ad'), ('-G', 'G'), ('-', '')] PUR19200930-V20-07-page8.txt: [('vari-', 'vari'), ('Office-', 'Office'), ('-', ''), ('ses-', 'ses'), ('ser-', 'ser'), ('world-', 'world'), ('-', '')] PUR19201007-V20-08-page1.txt: [('-', ''), ('-', ''), ('sum-', 'sum'), ('pa-', 'pa'), ('-brain', 'brain'), ('Ingath-', 'Ingath')] PUR19201007-V20-08-page2.txt: [('la-', 'la'), ('at-', 'at'), ('WORK-', 'WORK'), ('Emmer-', 'Emmer'), ('pro-', 'pro'), ('-', ''), ('confer-', 'confer'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('secretary-treas-', 'secretary-treas')] PUR19201007-V20-08-page3.txt: [('pres-', 'pres'), ('in-', 'in'), ('evangelis-', 'evangelis'), ('per-', 'per'), ('experi-', 'experi'), ('Min-', 'Min'), ('peo-', 'peo'), ('Fer-', 'Fer'), ('ten-', 'ten')] PUR19201007-V20-08-page4.txt: [('mul-', 'mul')] PUR19201007-V20-08-page5.txt: [('as-', 'as'), ('-', ''), ('num-', 'num')] PUR19201007-V20-08-page6.txt: [('differ-', 'differ'), ('Pelly-', 'Pelly'), ('tal-', 'tal'), ('compan-', 'compan'), ('cir-', 'cir'), ('hence-', 'hence')] PUR19201007-V20-08-page7.txt: [('laugh-', 'laugh'), ('-R.', 'R.'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Imme-', 'Imme'), ('-', ''), ('Ad-', 'Ad'), ('-', ''), ('read-', 'read'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Ad--', 'Ad-'), ('-t', 't')] PUR19201007-V20-08-page8.txt: [('Office-', 'Office'), ('recom-', 'recom'), ('pres-', 'pres'), ('President-', 'President'), ('-J.', 'J.'), ('Martin-', 'Martin'), ('ap-', 'ap'), ('-W.', 'W.'), ('announce-', 'announce'), ('remodel-', 'remodel'), ('-', ''), ('-', '')] PUR19201014-V20-09-page1.txt: [('won-', 'won'), ('care-', 'care'), ('some-', 'some')] PUR19201014-V20-09-page2.txt: [('PERSECUT-', 'PERSECUT'), ('nor-', 'nor'), ('re-', 're'), ('wen--', 'wen-'), ('CUR-', 'CUR'), ('CEN-', 'CEN'), ('stu-', 'stu'), ('Fri-', 'Fri'), ('at-', 'at'), ('-', ''), ('lay-', 'lay'), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19201014-V20-09-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('sev-', 'sev'), ('yes-', 'yes')] PUR19201014-V20-09-page4.txt: [('bap-', 'bap'), ('Sab-', 'Sab'), ('SEPTEM-', 'SEPTEM'), ('out-', 'out'), ('or-', 'or')] PUR19201014-V20-09-page5.txt: [('fol-', 'fol'), ('pre-', 'pre'), ('intelli-', 'intelli'), ("'accom-", "'accom"), ('be-', 'be'), ('-', '')] PUR19201014-V20-09-page6.txt: [('COLPOR-', 'COLPOR'), ('re-', 're'), ('Es-', 'Es'), ('rec-', 'rec'), ('peo-', 'peo'), ('No-', 'No'), ('some-', 'some'), ('re-', 're'), ('canvass-', 'canvass'), ('school-', 'school')] PUR19201014-V20-09-page7.txt: [('be-', 'be'), ('fin-', 'fin'), ('-', ''), ('-t', 't'), ('-', ''), ('-', ''), ('-t', 't'), ('-', ''), ('Ad-', 'Ad'), ('posi-', 'posi'), ('bus-', 'bus'), ('per-', 'per'), ('al-', 'al')] PUR19201014-V20-09-page8.txt: [('Office-', 'Office'), ('re-', 're'), ('be-', 'be')] PUR19201021-V20-10-page1.txt: [('INGATHER-', 'INGATHER'), ('-the', 'the'), ('repre-', 'repre'), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-period', 'period'), ('-', '')] PUR19201021-V20-10-page2.txt: [('out-', 'out'), ('-You', 'You'), ('re-', 're'), ('-', ''), ('-', ''), ('-', '')] PUR19201021-V20-10-page3.txt: [('study-', 'study'), ('author-', 'author'), ('mes-', 'mes'), ('earn-', 'earn'), ('mem-', 'mem'), ('aver-', 'aver'), ('inter-', 'inter'), ('for-', 'for'), ('Char-', 'Char')] PUR19201021-V20-10-page4.txt: [('Confer-', 'Confer'), ('Sab-', 'Sab'), ('-goal.', 'goal.'), ('o-', 'o'), ('---', '--'), ('North-', 'North'), ('Member-', 'Member')] PUR19201021-V20-10-page5.txt: [('Whit-', 'Whit'), ('success-', 'success')] PUR19201021-V20-10-page6.txt: [('bul-', 'bul'), ('bul-', 'bul'), ('vi-', 'vi')] PUR19201021-V20-10-page7.txt: [('faith-', 'faith'), ('ex-', 'ex'), ('-', ''), ('posi-', 'posi'), ('bus-', 'bus'), ('por-', 'por'), ('-t', 't'), ('proper-', 'proper'), ('de-', 'de'), ('-', ''), ('exper-', 'exper'), ('-', ''), ('--', '-'), ('-', ''), ('Ad-', 'Ad'), ('-t', 't')] PUR19201021-V20-10-page8.txt: [('Office--', 'Office-'), ('Ad-', 'Ad'), ('cer-', 'cer'), ('prompt-', 'prompt'), ('accom-', 'accom'), ('ma-', 'ma'), ('inter-', 'inter'), ('ex-', 'ex'), ('con-', 'con'), ('inter-', 'inter'), ('oth-', 'oth')] PUR19201028-V20-11-page1.txt: [('believ-', 'believ'), ('re-', 're'), ('Advent-', 'Advent'), ('pre-', 'pre'), ('car-', 'car'), ('pre-', 'pre'), ('-', '')] PUR19201028-V20-11-page2.txt: [('-', ''), ('posovAN.-', 'posovAN.'), ('-ve', 've'), ('accept-', 'accept'), ('evan-', 'evan'), ('gos-', 'gos'), ('suc-', 'suc'), ('op-', 'op'), ('-', ''), ('-', ''), ('--', '-'), ('hmeison-', 'hmeison'), ("of'Oct-", "of'Oct")] PUR19201028-V20-11-page3.txt: [('chil-', 'chil'), ('accom-', 'accom'), ('Lin-', 'Lin'), ('re-', 're'), ('broth-', 'broth'), ('oth-', 'oth'), ('do-', 'do'), ('Southeast-', 'Southeast'), ('con-', 'con'), ('-', '')] PUR19201028-V20-11-page4.txt: [('Coun-', 'Coun'), ('con-', 'con'), ('In-', 'In'), ('con-', 'con'), ('mem-', 'mem'), ('identifi-', 'identifi'), ('tak-', 'tak'), ('Novem-', 'Novem')] PUR19201028-V20-11-page5.txt: [('set-', 'set'), ('Califor-', 'Califor'), ('-', ''), ('bless-', 'bless'), ('-I', 'I'), ('offer-', 'offer'), ('after-', 'after'), ('Sab-', 'Sab'), ('fortn-', 'fortn'), ('meet-', 'meet'), ('dwell-', 'dwell'), ('as-', 'as'), ("'for-", "'for"), ('-', ''), ('-member', 'member'), ('-Mg', 'Mg'), ('-', ''), ('foundtire-', 'foundtire'), ('-box.', 'box.'), ('-', ''), ('-the', 'the')] PUR19201028-V20-11-page6.txt: [('-', ''), ('in-', 'in'), ('-goal', 'goal')] PUR19201028-V20-11-page7.txt: [('re-', 're'), ('socie-', 'socie'), ('Great-', 'Great'), ('sea-', 'sea'), ('-', ''), ('-...', '...'), ('Exchange.-', 'Exchange.'), ('-', ''), ('por-', 'por'), ('Memor-', 'Memor'), ('Theoc-', 'Theoc'), ('-Helena', 'Helena'), ('-', ''), ('Escon-', 'Escon')] PUR19201028-V20-11-page8.txt: [('Office-', 'Office'), ('re-', 're'), ('fur-', 'fur'), ('rab-', 'rab'), ('Bed-', 'Bed'), ('fol-', 'fol'), ('abol-', 'abol'), ('"Anti-', '"Anti'), ('Anti-', 'Anti'), ('Anti-', 'Anti')] PUR19201104-V20-12-page1.txt: [('evi-', 'evi'), ('lit-', 'lit'), ('PUB-', 'PUB'), ('purpose-', 'purpose'), ('Czecho-', 'Czecho'), ('lit-', 'lit')] PUR19201104-V20-12-page2.txt: [('COLPOR-', 'COLPOR'), ('exper-', 'exper'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('deter-', 'deter'), ('Oct-', 'Oct')] PUR19201104-V20-12-page3.txt: [('en-', 'en'), ('like-', 'like'), ('pray-', 'pray'), ('conven-', 'conven'), ('Ala-', 'Ala'), ('in-', 'in')] PUR19201104-V20-12-page4.txt: [('Co-', 'Co'), ('build-', 'build'), ('-each', 'each'), ('man-', 'man'), ('one-', 'one')] PUR19201104-V20-12-page5.txt: [('Cen-', 'Cen'), ('Sun-', 'Sun'), ('en-', 'en'), ('stand-', 'stand'), ('-', '')] PUR19201104-V20-12-page6.txt: [('characteris-', 'characteris'), ('member-', 'member'), ('or-', 'or'), ('Har-', 'Har')] PUR19201104-V20-12-page7.txt: [('be-', 'be'), ('MIS-', 'MIS'), ('lay-', 'lay'), ('ar-', 'ar'), ('-Advertising', 'Advertising'), ('-the', 'the'), ('Mam-', 'Mam'), ('-', ''), ('-', ''), ('Memor-', 'Memor'), ('-for', 'for'), ('-u', 'u')] PUR19201104-V20-12-page8.txt: [('Office-', 'Office'), ('Secre-', 'Secre'), ('conven-', 'conven'), ('Martin-', 'Martin'), ('men-', 'men'), ('men-', 'men'), ('An-', 'An'), ('prop-', 'prop'), ('-"The', '"The'), ('Uni-', 'Uni'), ('-', ''), ('pur-', 'pur'), ('lo-', 'lo'), ('res-', 'res'), ('of-', 'of')] PUR19201111-V20-13-page1.txt: [('con-', 'con'), ('-but', 'but'), ('pub-', 'pub')] PUR19201111-V20-13-page2.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('pre-', 'pre'), ('Nov-', 'Nov')] PUR19201111-V20-13-page3.txt: [('-', ''), ('-', ''), ('-', ''), ('abun-', 'abun')] PUR19201111-V20-13-page4.txt: [('-n', 'n'), ('en-', 'en'), ('-', ''), ('-', ''), ('-', ''), ('num-', 'num'), ('Enroll-', 'Enroll'), ('un-', 'un'), ('Bi-', 'Bi'), ('-', ''), ('Con-', 'Con'), ('as-', 'as'), ('-', '')] PUR19201111-V20-13-page5.txt: [('El-', 'El'), ('..y.-', '..y.'), ('instruc-', 'instruc'), ('so-', 'so'), ('reed-', 'reed'), ('Kings-', 'Kings'), ('whole-', 'whole')] PUR19201111-V20-13-page6.txt: [('favor-', 'favor'), ('re-', 're'), ('Col-', 'Col'), ('In-', 'In')] PUR19201111-V20-13-page7.txt: [('bap-', 'bap'), ('-', ''), ('-A', 'A'), ('-', ''), ('-t', 't'), ('thirty-', 'thirty'), ('Sale.-', 'Sale.'), ('-', ''), ('Sev-', 'Sev'), ('-t', 't'), ('-', '')] PUR19201111-V20-13-page8.txt: [('-pound', 'pound'), ('-', ''), ('Mar-', 'Mar'), ('-', ''), ('con-', 'con'), ('in-', 'in')] PUR19201118-V20-14-page1.txt: [('dark-', 'dark'), ('-has', 'has'), ('-', '')] PUR19201118-V20-14-page2.txt: [('-', ''), ('member-', 'member'), ('Sab-', 'Sab'), ('Oc-', 'Oc'), ('sub-', 'sub'), ('week-', 'week'), ('gen-', 'gen'), ('persever-', 'persever'), ('manifest-', 'manifest'), ('after-', 'after'), ('demonstrat-', 'demonstrat'), ('-at', 'at'), ('so-', 'so'), ('-The', 'The'), ('-', ''), ('-', ''), ('-', ''), ('re-', 're')] PUR19201118-V20-14-page3.txt: [('Octo-', 'Octo'), ('com-', 'com'), ('Sab-', 'Sab'), ('district-', 'district'), ('aft-', 'aft'), ('mes-', 'mes'), ('hor-', 'hor'), ('spe-', 'spe')] PUR19201118-V20-14-page4.txt: [('be-', 'be'), ('de-', 'de'), ('al-', 'al'), ('re-', 're'), ('two-', 'two'), ('meet-', 'meet'), ('fin-', 'fin'), ('meet-', 'meet')] PUR19201118-V20-14-page5.txt: [('Seventh-', 'Seventh'), ('-DAY', 'DAY')] PUR19201118-V20-14-page6.txt: [('remark-', 'remark'), ('com-', 'com')] PUR19201118-V20-14-page7.txt: [('-', ''), ('-', ''), ('-A', 'A'), ('-t', 't'), ('Sale.-', 'Sale.'), ('-', ''), ('pres-', 'pres'), ('ad-', 'ad'), ('me-', 'me'), ('Excel-', 'Excel'), ('se-', 'se'), ('-t', 't'), ('vig-', 'vig'), ('-', ''), ('de-', 'de'), ('Col-', 'Col')] PUR19201118-V20-14-page8.txt: [('Sab-', 'Sab'), ('-with', 'with'), ('Fi-', 'Fi'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Member-', 'Member'), ('-', ''), ('-', ''), ('-', '')] PUR19201125-V20-15-page1.txt: [('-in.', 'in.'), ('-', ''), ('con-', 'con'), ('Bed-', 'Bed'), ('report-', 'report'), ('se-', 'se'), ('convic-', 'convic')] PUR19201125-V20-15-page2.txt: [('admin-', 'admin'), ('impera-', 'impera'), ('bap-', 'bap'), ('mem-', 'mem'), ('com-', 'com'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Glen-', 'Glen'), ('Nov-', 'Nov')] PUR19201125-V20-15-page3.txt: [('pre-', 'pre'), ('-', ''), ('-', ''), ('him-', 'him'), ('Pasa-', 'Pasa'), ('bap-', 'bap'), ('No-', 'No'), ('church-', 'church')] PUR19201125-V20-15-page4.txt: [('de-', 'de'), ('confer-', 'confer'), ('-', ''), ('attend-', 'attend'), ('stereopti-', 'stereopti'), ('po-', 'po'), ('Education-', 'Education')] PUR19201125-V20-15-page5.txt: [('In-', 'In'), ('children.-', 'children.'), ('pre-', 'pre'), ('dis-', 'dis'), ('compar-', 'compar'), ('oth-', 'oth')] PUR19201125-V20-15-page6.txt: [('Con-', 'Con'), ('fol-', 'fol'), ('spir-', 'spir'), ('let-', 'let'), ('rel-', 'rel'), ('com-', 'com'), ('-', ''), ('conven-', 'conven'), ('-', ''), ('adver-', 'adver')] PUR19201125-V20-15-page7.txt: [('-', ''), ('--------', '-------'), ('-', ''), ('-', ''), ('-', ''), ('-A', 'A'), ('-t', 't'), ('Sale.-', 'Sale.'), ('-', ''), ('ber-', 'ber'), ('un-', 'un'), ('vig-', 'vig'), ('pres-', 'pres'), ('---', '--'), ('-', ''), ('-', ''), ('me-', 'me'), ('Sab-', 'Sab'), ('com-', 'com'), ('or-', 'or'), ('-', ''), ('-at', 'at'), ('be-', 'be'), ('accept-', 'accept')] PUR19201125-V20-15-page8.txt: [('Office-', 'Office'), ('ef-', 'ef'), ('per-', 'per'), ('pre-', 'pre'), ('Ad-', 'Ad'), ('spread-', 'spread'), ('pre-', 'pre'), ('oppor-', 'oppor')] PUR19201202-V20-16-page1.txt: [('Unit-', 'Unit'), ('litera-', 'litera'), ('includ-', 'includ'), ('evangelis-', 'evangelis'), ('sympa-', 'sympa')] PUR19201202-V20-16-page2.txt: [('writ-', 'writ'), ('-', ''), ('oth-', 'oth'), ('pur-', 'pur'), ('Luth-', 'Luth'), ('or-', 'or'), ('Califor-', 'Califor'), ('.-', '.'), ('postpaid-', 'postpaid'), ('in-', 'in'), ('writ-', 'writ'), ('writ-', 'writ'), ('Lu-', 'Lu'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('vil-', 'vil'), ('follow-', 'follow')] PUR19201202-V20-16-page3.txt: [('Ne-', 'Ne'), ('Mor-', 'Mor'), ('excel-', 'excel'), ('appreci-', 'appreci'), ('after-', 'after')] PUR19201202-V20-16-page4.txt: [('sup--', 'sup-'), ('reg-', 'reg'), ('en-', 'en'), ('-', ''), ('medi-', 'medi')] PUR19201202-V20-16-page5.txt: [('be-', 'be'), ('DOL-', 'DOL')] PUR19201202-V20-16-page6.txt: [('strug-', 'strug'), ('anticipa-', 'anticipa'), ('ad-', 'ad')] PUR19201202-V20-16-page7.txt: [('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Mac-', 'Mac')] PUR19201202-V20-16-page8.txt: [('Office-', 'Office'), ('sec-', 'sec'), ('ac-', 'ac'), ('Bed-', 'Bed'), ('Ad-', 'Ad'), ('Mar-', 'Mar'), ('vet-', 'vet'), ('mem-', 'mem')] PUR19201209-V20-17-page2.txt: [('con-', 'con'), ('Pil-', 'Pil'), ('ad-', 'ad'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', '')] PUR19201209-V20-17-page3.txt: [('open-', 'open'), ('se-', 'se'), ('GIVER.-', 'GIVER.'), ('-Laundry', 'Laundry'), ('-the', 'the')] PUR19201209-V20-17-page4.txt: [('Ar-', 'Ar'), ('neglect-', 'neglect'), ('fol-', 'fol'), ('fa-', 'fa')] PUR19201209-V20-17-page5.txt: [('Novem-', 'Novem'), ('do-', 'do'), ('Nov-', 'Nov'), ('be-', 'be'), ('sanitar-', 'sanitar')] PUR19201209-V20-17-page6.txt: [('certain-', 'certain'), ('en-', 'en'), ('elec-', 'elec'), ('re-', 're'), ('-', ''), ('Gar-', 'Gar'), ('vol-', 'vol')] PUR19201209-V20-17-page7.txt: [('Par-', 'Par'), ('-', ''), ('-', ''), ('Al-', 'Al'), ('mem-', 'mem'), ('un-', 'un'), ('ad-', 'ad'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Sprague-Bost-', 'Sprague-Bost'), ('-t', 't'), ('--Vatitt', '-Vatitt'), ("'eXtra-large-ter-", "'eXtra-large-ter"), ('-ries', 'ries'), ('-', ''), ('vig-', 'vig'), ('-', ''), ('-', '')] PUR19201209-V20-17-page8.txt: [('Sab-', 'Sab'), ('human-', 'human'), ('charac-', 'charac')] PUR19201216-V20-18-page1.txt: [('em-', 'em'), ('Jan-', 'Jan'), ('Ad-', 'Ad'), ('MISSION-', 'MISSION'), ('pro-', 'pro'), ('-amount', 'amount'), ('re-', 're'), ('-is', 'is')] PUR19201216-V20-18-page2.txt: [('fe-', 'fe'), ('guar-', 'guar'), ('Ander-', 'Ander'), ('provi-', 'provi'), ('Oct-', 'Oct'), ('Im-', 'Im'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Nov-', 'Nov')] PUR19201216-V20-18-page3.txt: [('ap-', 'ap'), ('life-', 'life'), ('Member-', 'Member'), ('nec-', 'nec'), ('Ro-', 'Ro'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('giv-', 'giv'), ('life-pow-', 'life-pow'), ('-', ''), ('cer-', 'cer')] PUR19201216-V20-18-page4.txt: [('e-', 'e'), ('-v-', 'v-'), ('Sab-', 'Sab'), ('inter-', 'inter'), ('Bra-', 'Bra'), ('ser-', 'ser')] PUR19201216-V20-18-page5.txt: [('expec-', 'expec'), ('pro-', 'pro'), ('Fri-', 'Fri')] PUR19201216-V20-18-page6.txt: [('re-', 're'), ('inci-', 'inci'), ('assur-', 'assur'), ('wel-', 'wel'), ('Men-', 'Men')] PUR19201216-V20-18-page7.txt: [('El-', 'El'), ('-first', 'first'), ('-', ''), ('-additional', 'additional'), ('un-', 'un'), ('-', ''), ('ex-', 'ex'), ('-', ''), ('-', ''), ('--.Tyv', '-.Tyv'), ('ten-', 'ten'), ('Memor-', 'Memor'), ('fur-', 'fur'), ('-t', 't')] PUR19201216-V20-18-page8.txt: [('West-', 'West'), ('regard-', 'regard'), ('-DO', 'DO'), ('FORGET-', 'FORGET'), ('at-', 'at'), ('re-', 're'), ('re-', 're'), ('cer-', 'cer'), ('Ingather-', 'Ingather'), ('applica-', 'applica'), ('El-', 'El'), ('presi-', 'presi')] PUR19201223-V20-19-page1.txt: [('-', ''), ('even-', 'even')] PUR19201223-V20-19-page2.txt: [('-', ''), ('--eur', '-eur'), ('be-', 'be'), ('good-', 'good'), ('cora-', 'cora'), ('bow-', 'bow'), ('-', ''), ('di-', 'di'), ('scrip-', 'scrip'), ('circum-', 'circum'), ('Wor-', 'Wor'), ('ex-', 'ex'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('Oct-', 'Oct'), ('-', '')] PUR19201223-V20-19-page3.txt: [('con-', 'con'), ('com-', 'com'), ('Samari-', 'Samari'), ('as-', 'as'), ('cov-', 'cov')] PUR19201223-V20-19-page4.txt: [('-but', 'but'), ('Austro-', 'Austro'), ('revel-', 'revel'), ('Un-', 'Un'), ('-Phoenix', 'Phoenix'), ('up-', 'up'), ('fol-', 'fol'), ('secre-', 'secre'), ('-persons', 'persons'), ('dis-', 'dis')] PUR19201223-V20-19-page5.txt: [('mission-', 'mission'), ('sev-', 'sev'), ('mission-', 'mission'), ('de-', 'de'), ('volun-', 'volun'), ('Cali-', 'Cali'), ('depart-', 'depart'), ('ar-', 'ar'), ('-December', 'December'), ('de-', 'de'), ('mes-', 'mes')] PUR19201223-V20-19-page6.txt: [('Hol-', 'Hol'), ('work-', 'work'), ('his-', 'his'), ('some-', 'some'), ('por-', 'por')] PUR19201223-V20-19-page7.txt: [('A-', 'A'), ('Negrete-', 'Negrete'), ('-', ''), ('-', ''), ('-', ''), ('-all', 'all'), ('"In-', '"In'), ('-', ''), ('un-', 'un'), ('Ash-', 'Ash'), ('Or-', 'Or'), ('treat-', 'treat'), ('r-', 'r'), ('-', ''), ('-', ''), ('Na-', 'Na'), ('-', '')] PUR19201223-V20-19-page8.txt: [('Sun-', 'Sun'), ('mat-', 'mat'), ('-', ''), ('constitu-', 'constitu')] PUR19201230-V20-20-page1.txt: [('in-', 'in'), ('as-', 'as'), ('fulfill-', 'fulfill')] PUR19201230-V20-20-page2.txt: [('succes-', 'succes'), ('lone-', 'lone'), ('Spanish-', 'Spanish'), ('swal-', 'swal'), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('-', ''), ('earth-', 'earth')] PUR19201230-V20-20-page3.txt: [('strong-', 'strong'), ('spir-', 'spir'), ('mis-', 'mis'), ("'Watch-", "'Watch"), ('dona-', 'dona'), ('recon-', 'recon'), ('meet-', 'meet'), ('ex-', 'ex'), ('Al-', 'Al'), ('Har-', 'Har'), ('Para-', 'Para')] PUR19201230-V20-20-page4.txt: [('recom-', 'recom'), ('study-', 'study'), ('mem-', 'mem'), ('in-', 'in'), ('faith-', 'faith')] PUR19201230-V20-20-page5.txt: [('perplex-', 'perplex'), ('-PACIFIC', 'PACIFIC'), ('-', ''), ('begin-', 'begin'), ('begin-', 'begin'), ('fin-', 'fin'), ('Is-', 'Is'), ('-a', 'a'), ('Mes-', 'Mes')] PUR19201230-V20-20-page6.txt: [('COLPOR-', 'COLPOR'), ('pro-', 'pro'), ('Vol-', 'Vol'), ('repre-', 'repre'), ('stead-', 'stead'), ('Coun-', 'Coun'), ('Re-', 'Re')] PUR19201230-V20-20-page7.txt: [('contin-', 'contin'), ('-', ''), ('subscrip-', 'subscrip'), ('or-', 'or'), ('in-', 'in'), ('No-', 'No'), ('mes-', 'mes'), ('inter-', 'inter'), ('reach-', 'reach'), ('re-', 're'), ('-', '')] PUR19201230-V20-20-page8.txt: [('Office-', 'Office'), ('quota-', 'quota'), ('mis-', 'mis'), ('Christ-', 'Christ'), ('uninter-', 'uninter'), ('re-', 're'), ('en-', 'en'), ('com-', 'com'), ('Cali-', 'Cali'), ('Sun-', 'Sun'), ('greet-', 'greet')]
Check Correction 3¶
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/PUR/correction3 Average verified rate: 0.9690509552109996 Average of error rates: 0.03357273532015344 Total token count: 6525888
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', 16622), ('w', 15057), ('m', 10895), ('g', 10535), ('f', 7294), ('r', 6630), ('d', 6494), ("'", 4979), ('t', 4426), ('n', 3127), ('th', 1481), ('x', 808), ('k', 691), ('re', 675), ('tion', 635), ('co', 590), ('u', 585), ("'the", 419), ('ords', 405), ('ence', 396), ('seventhday', 345), ('ment', 308), ('ference', 306), ('sabbathschool', 293), ('inter-mountain', 276), ('ex', 260), ('verah', 258), ('wm', 242), ("canvassers'", 229), ('ber', 228), ('ers', 224), ('pepperwood', 223), ('un', 214), ("'s", 203), ('z', 203), ('lb', 195), ('ple', 195), ("the'", 191), ('pa', 188), ('oo', 186), ('io', 181), ("''", 175), ('ly', 170), ('twentyfifth', 168), ('sionary', 165), ("'of", 163), ('mis', 160), ('al', 159), ('tions', 154), ("bookmen's", 153)]
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()
PUR19010801-V01-01-page1.txt: [("'Christ.", 'Christ.'), ("'of", 'of')] PUR19010801-V01-01-page11.txt: [("'also.", 'also.')] PUR19010801-V01-01-page12.txt: [("'I'.", 'I.')] PUR19010801-V01-01-page14.txt: [("'Sacramento", 'Sacramento')] PUR19010801-V01-01-page15.txt: [("'Thurston", 'Thurston'), ("'borne", 'borne')] PUR19010801-V01-01-page16.txt: [("'just", 'just')] PUR19010801-V01-01-page2.txt: [("'All", 'All'), ("'stand", 'stand')] PUR19010801-V01-01-page3.txt: [("'Cursed", 'Cursed'), ("'is", 'is'), ("'t", 't')] PUR19010801-V01-01-page4.txt: [("'There", 'There'), ("'Three", 'Three')] PUR19010801-V01-01-page8.txt: [("'Advent", 'Advent'), ("'by", 'by')] PUR19010815-V01-02-page1.txt: [("'is", 'is'), ("'a", 'a'), ("'same", 'same'), ("'be", 'be'), ("'to", 'to'), ("'Ye", 'Ye'), ("'they", 'they'), ("'do", 'do')] PUR19010815-V01-02-page13.txt: [("'before.", 'before.')] PUR19010815-V01-02-page15.txt: [("'F.", 'F.')] PUR19010815-V01-02-page16.txt: [("'Daniel", 'Daniel')] PUR19010815-V01-02-page2.txt: [("'others", 'others'), ("'Thou", 'Thou')] PUR19010815-V01-02-page4.txt: [("'to", 'to')] PUR19010815-V01-02-page5.txt: [("'Oregon", 'Oregon'), ("'be", 'be')] PUR19010815-V01-02-page9.txt: [("'YOUNG", 'YOUNG')] PUR19010829-V01-03-page2.txt: [("'over", 'over'), ("'and", 'and')] PUR19010829-V01-03-page3.txt: [("'speech-making", 'speech-making'), ("'theme", 'theme'), ("'to", 'to')] PUR19010829-V01-03-page4.txt: [("'Rauleder", 'Rauleder')] PUR19010829-V01-03-page7.txt: [("'oN", 'oN')] PUR19010912-V01-04-page10.txt: [("'questions", 'questions')] PUR19010912-V01-04-page12.txt: [("'-", '-')] PUR19010912-V01-04-page13.txt: [("'brought", 'brought')] PUR19010912-V01-04-page14.txt: [("'and", 'and')] PUR19010912-V01-04-page2.txt: [("'as", 'as')] PUR19010912-V01-04-page9.txt: [("'Tulare", 'Tulare')] PUR19010926-V01-05-page1.txt: [("'failure.", 'failure.')] PUR19010926-V01-05-page10.txt: [("'some", 'some')] PUR19010926-V01-05-page11.txt: [("'Good", 'Good'), ("'Who", 'Who'), ("'The", 'The'), ("'Review", 'Review'), ("'Missionary", 'Missionary'), ("'Good", 'Good')] PUR19010926-V01-05-page12.txt: [("'people", 'people')] PUR19010926-V01-05-page15.txt: [("'Use", 'Use')] PUR19010926-V01-05-page16.txt: [("'a", 'a'), ("'M.", 'M.'), ("'nineteen.", 'nineteen.'), ("'whom", 'whom'), ("'island", 'island')] PUR19010926-V01-05-page2.txt: [("'reproach", 'reproach'), ("'Then", 'Then'), ("'the", 'the')] PUR19010926-V01-05-page3.txt: [("'done", 'done'), ("'A", 'A')] PUR19010926-V01-05-page6.txt: [("'ask", 'ask')] PUR19010926-V01-05-page7.txt: [("'PACIFIC", 'PACIFIC')] PUR19011010-V01-06-page1.txt: [("'and", 'and')] PUR19011010-V01-06-page14.txt: [("'spend", 'spend')] PUR19011010-V01-06-page15.txt: [("'a", 'a')] PUR19011010-V01-06-page9.txt: [("'fice", 'fice')] PUR19011024-V01-07-page13.txt: [("'Helena", 'Helena')] PUR19011024-V01-07-page2.txt: [("'Give", 'Give'), ("'companions", 'companions')] PUR19011024-V01-07-page7.txt: [("'McCord", 'McCord')] PUR19011107-V01-08-page1.txt: [("'twould", 'twould'), ("'Tis", 'Tis')] PUR19011107-V01-08-page12.txt: [("'.", '.')] PUR19011107-V01-08-page6.txt: [("'prayers", 'prayers'), ("'getting", 'getting')] PUR19011121-V01-09-page12.txt: [("'burg", 'burg')] PUR19011121-V01-09-page13.txt: [("'I", 'I'), ("'Object.", 'Object.'), ("'coming", 'coming')] PUR19011121-V01-09-page14.txt: [("'Corning", 'Corning'), ("'Oh", 'Oh'), ("'Thou", 'Thou')] PUR19011121-V01-09-page2.txt: [("'There", 'There')] PUR19011121-V01-09-page3.txt: [("'s", 's'), ("'he", 'he'), ("'day", 'day')] PUR19011121-V01-09-page6.txt: [("'Jesus", 'Jesus'), ("'unto", 'unto')] PUR19011121-V01-09-page7.txt: [("'few", 'few'), ("'to", 'to'), ("'to", 'to'), ("'assistance", 'assistance')] PUR19011121-V01-09-page9.txt: [("'Thank", 'Thank'), ("'means", 'means')] PUR19011205-V01-10-page1.txt: [("'his", 'his')] PUR19011205-V01-10-page13.txt: [("'what", 'what'), ("'stOresto", 'stOresto'), ("'something", 'something')] PUR19011205-V01-10-page15.txt: [("'are", 'are'), ("'The", 'The')] PUR19011205-V01-10-page16.txt: [("'Christ's", 'Christs')] PUR19011205-V01-10-page3.txt: [("'Satan's", 'Satans')] PUR19011205-V01-10-page7.txt: [("'UNION", 'UNION'), ("'building", 'building')] PUR19011205-V01-10-page8.txt: [("'balance", 'balance')] PUR19011205-V01-10-page9.txt: [("'cause", 'cause')] PUR19011219-V01-11-page11.txt: [("'in", 'in'), ("'necessary", 'necessary')] PUR19011219-V01-11-page13.txt: [("'many", 'many')] PUR19011219-V01-11-page14.txt: [("'the", 'the'), ("'study", 'study'), ("'The", 'The'), ('\'Library."', 'Library."')] PUR19011219-V01-11-page2.txt: [("'before", 'before'), ("'of", 'of')] PUR19011219-V01-11-page4.txt: [("'the", 'the'), ("'Am", 'Am')] PUR19011219-V01-11-page5.txt: [("'.suggested", '.suggested')] PUR19011219-V01-11-page6.txt: [("'Wesleyans.", 'Wesleyans.')] PUR19011219-V01-11-page7.txt: [("'God's", 'Gods'), ("'here", 'here')] PUR19011219-V01-11-page8.txt: [("'lukewarmness", 'lukewarmness')] PUR19011219-V01-11-page9.txt: [("'Ask", 'Ask'), ("'nor", 'nor')] PUR19020102-V01-12-page1.txt: [("'Conferences", 'Conferences')] PUR19020102-V01-12-page10.txt: [("'be", 'be')] PUR19020102-V01-12-page11.txt: [("'You", 'You'), ("'here", 'here'), ("'RECORDER", 'RECORDER')] PUR19020102-V01-12-page13.txt: [("'PREPARE", 'PREPARE')] PUR19020102-V01-12-page2.txt: [("'striction", 'striction')] PUR19020102-V01-12-page3.txt: [("'in", 'in')] PUR19020102-V01-12-page5.txt: [("'your", 'your')] PUR19020102-V01-12-page6.txt: [("'Well", 'Well'), ("'Wouldn't", 'Wouldnt')] PUR19020102-V01-12-page7.txt: [("'California", 'California')] PUR19020116-V01-13-page1.txt: [("'CORDER", 'CORDER'), ("'Review", 'Review'), ("'apostolos", 'apostolos'), ("'or", 'or'), ("'We", 'We')] PUR19020116-V01-13-page11.txt: [("'Instead", 'Instead')] PUR19020116-V01-13-page12.txt: [("'Do.", 'Do.')] PUR19020116-V01-13-page13.txt: [("'our", 'our')] PUR19020116-V01-13-page15.txt: [("'your", 'your')] PUR19020116-V01-13-page16.txt: [("'restored", 'restored'), ("'as", 'as')] PUR19020116-V01-13-page2.txt: [("'And", 'And'), ("'bishop", 'bishop'), ("'In", 'In'), ("'elders", 'elders'), ("'bishop", 'bishop'), ("'an", 'an'), ("'e", 'e')] PUR19020116-V01-13-page4.txt: [("'meetings.", 'meetings.')] PUR19020116-V01-13-page7.txt: [("'Scandinavians", 'Scandinavians')] PUR19020116-V01-13-page8.txt: [("'the", 'the')] PUR19020116-V01-13-page9.txt: [("'PREPARE", 'PREPARE')] PUR19020130-V01-14-page1.txt: [("'Let", 'Let')] PUR19020130-V01-14-page10.txt: [("'YOUNG", 'YOUNG')] PUR19020130-V01-14-page11.txt: [("'that", 'that')] PUR19020130-V01-14-page12.txt: [("'Relation", 'Relation'), ("'PREPARE", 'PREPARE'), ("'I", 'I'), ("'She", 'She')] PUR19020130-V01-14-page13.txt: [("'something", 'something')] PUR19020130-V01-14-page15.txt: [("'Taint", 'Taint')] PUR19020130-V01-14-page2.txt: [("'of", 'of'), ("'Christ", 'Christ')] PUR19020130-V01-14-page4.txt: [("'under", 'under'), ("'no", 'no')] PUR19020130-V01-14-page5.txt: [("'one", 'one'), ("'I", 'I'), ("'thoroughly", 'thoroughly'), ("'overrule", 'overrule')] PUR19020130-V01-14-page6.txt: [("'Daniel", 'Daniel'), ("'I", 'I')] PUR19020213-V01-15-page10.txt: [("'Lesson", 'Lesson')] PUR19020213-V01-15-page11.txt: [("'PREPARE", 'PREPARE')] PUR19020213-V01-15-page14.txt: [("'fruits", 'fruits')] PUR19020213-V01-15-page17.txt: [("'d", 'd'), ("'as", 'as')] PUR19020213-V01-15-page22.txt: [("'Big", 'Big'), ("'I", 'I'), ("'Get", 'Get')] PUR19020213-V01-15-page23.txt: [("'IF", 'IF')] PUR19020213-V01-15-page3.txt: [("'CMS", 'CMS')] PUR19020213-V01-15-page5.txt: [("'following", 'following'), ("'Walter", 'Walter')] PUR19020213-V01-15-page6.txt: [("'Feb.", 'Feb.')] PUR19020313-V01-16-page11.txt: [("'heart", 'heart')] PUR19020313-V01-16-page2.txt: [("'feed", 'feed')] PUR19020327-V01-17-page1.txt: [("'meeting", 'meeting')] PUR19020327-V01-17-page19.txt: [("'query", 'query')] PUR19020327-V01-17-page21.txt: [("'to", 'to')] PUR19020327-V01-17-page24.txt: [("'At", 'At')] PUR19020410-V01-18-page1.txt: [("'followers", 'followers')] PUR19020410-V01-18-page11.txt: [("'PREPARE", 'PREPARE')] PUR19020410-V01-18-page2.txt: [("'Examine", 'Examine')] PUR19020410-V01-18-page5.txt: [("'the", 'the'), ("'hear", 'hear')] PUR19020410-V01-18-page6.txt: [("'we", 'we')] PUR19020410-V01-18-page8.txt: [("'these", 'these')] PUR19020424-V01-19-page1.txt: [("'Concentrate", 'Concentrate')] PUR19020424-V01-19-page10.txt: [("'I", 'I'), ("'good", 'good')] PUR19020424-V01-19-page11.txt: [("'Stirred", 'Stirred'), ("'rob", 'rob')] PUR19020424-V01-19-page13.txt: [("'It", 'It'), ("'We", 'We')] PUR19020424-V01-19-page2.txt: [("'unfaithful", 'unfaithful')] PUR19020424-V01-19-page5.txt: [("'Object", 'Object'), ("'prove", 'prove')] PUR19020508-V01-20-page11.txt: [("'all", 'all')] PUR19020508-V01-20-page12.txt: [("'place", 'place')] PUR19020508-V01-20-page13.txt: [("'just", 'just')] PUR19020508-V01-20-page15.txt: [("'The", 'The'), ("'TENS", 'TENS')] PUR19020508-V01-20-page3.txt: [("'Verily", 'Verily'), ("'Have", 'Have'), ("'He", 'He')] PUR19020508-V01-20-page6.txt: [("'phone", 'phone')] PUR19020508-V01-20-page7.txt: [("'Christ's", 'Christs')] PUR19020508-V01-20-page9.txt: [("'evenly", 'evenly')] PUR19020522-V01-21-page10.txt: [("'Christ's.", 'Christs.'), ("'God's.", 'Gods.')] PUR19020522-V01-21-page11.txt: [("'the", 'the'), ("'question", 'question')] PUR19020522-V01-21-page13.txt: [("'souls", 'souls'), ("'God", 'God'), ("'Saviour", 'Saviour')] PUR19020522-V01-21-page16.txt: [("'campmeeting", 'campmeeting')] PUR19020522-V01-21-page4.txt: [("'of", 'of')] PUR19020522-V01-21-page5.txt: [("'Our", 'Our'), ("'Daniel", 'Daniel'), ("'Great", 'Great'), ("'Man", 'Man'), ("'Christ's", 'Christs')] PUR19020522-V01-21-page6.txt: [("'Review", 'Review'), ("'Signs", 'Signs')] PUR19020522-V01-21-page7.txt: [("'California", 'California')] PUR19020605-V01-22-page2.txt: [("'Thou", 'Thou'), ("'By", 'By'), ("'Henceforth", 'Henceforth'), ("'let", 'let')] PUR19020619-V01-23-page11.txt: [("'but", 'but')] PUR19020619-V01-23-page2.txt: [("'viewed", 'viewed'), ("'institutions.", 'institutions.')] PUR19020619-V01-23-page3.txt: [("'the", 'the')] PUR19020703-V01-24-page13.txt: [("'Somebody", 'Somebody'), ("'impressed", 'impressed')] PUR19020703-V01-24-page14.txt: [("'Do", 'Do'), ("'Yes", 'Yes')] PUR19020703-V01-24-page5.txt: [("'trust", 'trust'), ("'brethren", 'brethren')] PUR19020703-V01-24-page6.txt: [("'the", 'the')] PUR19020703-V01-24-page8.txt: [("'UNION", 'UNION'), ("'Go", 'Go')] PUR19020717-V01-25-page11.txt: [("'Ages", 'Ages'), ("'It", 'It')] PUR19020717-V01-25-page13.txt: [("'WORK", 'WORK'), ("'They", 'They')] PUR19020717-V01-25-page14.txt: [("'Signs", 'Signs')] PUR19020717-V01-25-page3.txt: [("'of", 'of')] PUR19020717-V01-25-page8.txt: [("'Signs", 'Signs'), ("'Life", 'Life')] PUR19020717-V01-25-page9.txt: [("'that", 'that')] PUR19020731-V01-26-page10.txt: [("'college.", 'college.')] PUR19020731-V01-26-page11.txt: [("'.NING", '.NING')] PUR19020731-V01-26-page14.txt: [("'Great", 'Great')] PUR19020731-V01-26-page15.txt: [("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C'), ("'C", 'C')] PUR19020731-V01-26-page5.txt: [("'Christ's", 'Christs')] PUR19020731-V01-26-page6.txt: [("'the", 'the')] PUR19020814-V02-01-page3.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] PUR19020814-V02-01-page7.txt: [("'Tis", 'Tis')] PUR19020814-V02-01-page8.txt: [("'and", 'and')] PUR19020828-V02-02-page10.txt: [("'.", '.')] PUR19020828-V02-02-page14.txt: [("'Medical", 'Medical')] PUR19020828-V02-02-page15.txt: [("'Christ's", 'Christs'), ("'Mrs.", 'Mrs.'), ("'Christ's", 'Christs'), ("'Christ's", 'Christs'), ("'Any", 'Any')] PUR19020828-V02-02-page16.txt: [("'M.", 'M.')] PUR19020828-V02-02-page2.txt: [("'with", 'with'), ("'and", 'and')] PUR19020828-V02-02-page6.txt: [("'YOUNG", 'YOUNG')] PUR19020911-V02-03-page10.txt: [("'co", 'co'), ("'OF", 'OF'), ("'be", 'be')] PUR19020911-V02-03-page11.txt: [("'the", 'the')] PUR19020911-V02-03-page12.txt: [("'most", 'most')] PUR19020911-V02-03-page13.txt: [("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object')] PUR19020911-V02-03-page14.txt: [("'Give", 'Give')] PUR19020911-V02-03-page16.txt: [("'Arrangements", 'Arrangements')] PUR19020911-V02-03-page8.txt: [("'notexpect", 'notexpect'), ("'Now", 'Now')] PUR19020911-V02-03-page9.txt: [("'able", 'able'), ("'I", 'I')] PUR19020925-V02-04-page1.txt: [("'neath", 'neath'), ("'Twos", 'Twos')] PUR19020925-V02-04-page15.txt: [("'desert", 'desert')] PUR19020925-V02-04-page5.txt: [("'and", 'and')] PUR19020925-V02-04-page8.txt: [("'the", 'the')] PUR19021009-V02-05-page1.txt: [("'to", 'to')] PUR19021009-V02-05-page12.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis')] PUR19021009-V02-05-page14.txt: [("'tis", 'tis')] PUR19021009-V02-05-page3.txt: [("'he", 'he')] PUR19021009-V02-05-page4.txt: [("'Well", 'Well')] PUR19021009-V02-05-page9.txt: [("'have", 'have')] PUR19021023-V02-06-page13.txt: [("'Prophecies", 'Prophecies')] PUR19021023-V02-06-page14.txt: [("'glorious", 'glorious'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Please", 'Please'), ("'at", 'at'), ("'Life", 'Life')] PUR19021023-V02-06-page16.txt: [("'Little", 'Little')] PUR19021023-V02-06-page6.txt: [("'coming", 'coming'), ("'experience", 'experience'), ("'they", 'they'), ("'Go", 'Go')] PUR19021106-V02-07-page13.txt: [("'The", 'The')] PUR19021106-V02-07-page3.txt: [("'N.", 'N.')] PUR19021106-V02-07-page4.txt: [("'Santa", 'Santa'), ("'Cal.", 'Cal.'), ("'S.", 'S.')] PUR19021106-V02-07-page8.txt: [("'Present", 'Present'), ("'Good", 'Good')] PUR19021120-V02-08-page1.txt: [("'of", 'of')] PUR19021120-V02-08-page14.txt: [("'Yes", 'Yes'), ("'Mama", 'Mama')] PUR19021120-V02-08-page15.txt: [("'teens", 'teens')] PUR19021120-V02-08-page2.txt: [("'part", 'part')] PUR19021120-V02-08-page3.txt: [("'Ye", 'Ye'), ("'Ye", 'Ye'), ("'in", 'in')] PUR19021120-V02-08-page4.txt: [("'We", 'We'), ("'the", 'the'), ("'Your", 'Your'), ("'Lo", 'Lo')] PUR19021120-V02-08-page5.txt: [("'Come", 'Come'), ("'Are", 'Are'), ("'Worthy", 'Worthy'), ("'regions", 'regions')] PUR19021120-V02-08-page9.txt: [("'Let", 'Let')] PUR19021204-V02-09-page14.txt: [("'Christ's", 'Christs'), ("'Object", 'Object'), ("'Object", 'Object'), ("'set", 'set'), ("'Object", 'Object')] PUR19021204-V02-09-page15.txt: [("'Object", 'Object'), ("'been", 'been'), ("'How", 'How'), ("'Object", 'Object'), ("'Object", 'Object')] PUR19021204-V02-09-page16.txt: [("'From", 'From')] PUR19021204-V02-09-page3.txt: [("'establishment", 'establishment')] PUR19021204-V02-09-page5.txt: [("'I", 'I')] PUR19021218-V02-10-page1.txt: [("'or", 'or'), ("'made", 'made'), ("'us", 'us')] PUR19021218-V02-10-page10.txt: [("'The", 'The')] PUR19021218-V02-10-page14.txt: [("'Christ's", 'Christs')] PUR19021218-V02-10-page15.txt: [("'Fi", 'Fi')] PUR19021218-V02-10-page16.txt: [("'Signs", 'Signs'), ("'Times", 'Times')] PUR19021218-V02-10-page3.txt: [("'said", 'said')] PUR19021218-V02-10-page7.txt: [("'Christ's", 'Christs'), ("'Christ's", 'Christs')] PUR19021218-V02-10-page8.txt: [("'but", 'but')] PUR19030101-V02-11-page1.txt: [("'for", 'for')] PUR19030101-V02-11-page10.txt: [("'The", 'The'), ("'Christ's", 'Christs')] PUR19030101-V02-11-page11.txt: [("'Signs", 'Signs'), ("'Pa", 'Pa'), ("'Life", 'Life'), ("'Pacific", 'Pacific'), ("'Signs", 'Signs'), ("'Somebody", 'Somebody')] PUR19030101-V02-11-page12.txt: [("'good", 'good'), ("'Object", 'Object'), ("'our", 'our'), ("'Daniel", 'Daniel'), ("'Well", 'Well'), ("'Do", 'Do'), ("'Christ's", 'Christs')] PUR19030101-V02-11-page13.txt: [("'Christ's", 'Christs')] PUR19030101-V02-11-page2.txt: [("'individual", 'individual'), ('\'"', '"')] PUR19030101-V02-11-page3.txt: [("'in", 'in')] PUR19030101-V02-11-page7.txt: [("'Daniel", 'Daniel'), ("'new", 'new')] PUR19030101-V02-11-page9.txt: [("'In", 'In')] PUR19030115-V02-12-page1.txt: [("'past", 'past')] PUR19030115-V02-12-page10.txt: [("'Tis", 'Tis'), ("'Master's", 'Masters'), ("'at", 'at')] PUR19030115-V02-12-page12.txt: [("'scape", 'scape')] PUR19030115-V02-12-page2.txt: [("'transacquiring", 'transacquiring'), ("'Tis", 'Tis')] PUR19030115-V02-12-page3.txt: [("'Christ's", 'Christs'), ("'Object", 'Object'), ("'Christ's", 'Christs')] PUR19030115-V02-12-page6.txt: [("'I", 'I')] PUR19030115-V02-12-page8.txt: [("'accustomed", 'accustomed')] PUR19030129-V02-13-page12.txt: [("'that", 'that')] PUR19030129-V02-13-page13.txt: [("'I", 'I')] PUR19030129-V02-13-page15.txt: [("'Spread", 'Spread'), ("'Desire", 'Desire')] PUR19030129-V02-13-page16.txt: [("'Object", 'Object'), ("'Well", 'Well'), ("'when", 'when')] PUR19030129-V02-13-page5.txt: [("'Ibis", 'Ibis')] PUR19030129-V02-13-page9.txt: [("'will", 'will')] PUR19030212-V02-14-page13.txt: [("'Christ's", 'Christs')] PUR19030212-V02-14-page14.txt: [("'Object", 'Object'), ("'Christ's", 'Christs'), ("'the", 'the')] PUR19030212-V02-14-page15.txt: [("'chair", 'chair')] PUR19030212-V02-14-page9.txt: [("'UNION", 'UNION')] PUR19030226-V02-15-page10.txt: [("'Christ's", 'Christs'), ("'kind", 'kind')] PUR19030226-V02-15-page11.txt: [("'he", 'he')] PUR19030226-V02-15-page12.txt: [("'Signs", 'Signs')] PUR19030226-V02-15-page15.txt: [("'but", 'but')] PUR19030226-V02-15-page16.txt: [("'others", 'others')] PUR19030226-V02-15-page3.txt: [("'returned", 'returned')] PUR19030226-V02-15-page4.txt: [("'I", 'I'), ("'Christ's", 'Christs'), ("'much", 'much')] PUR19030226-V02-15-page6.txt: [("'Object", 'Object'), ("'Little", 'Little')] PUR19030226-V02-15-page8.txt: [("'message.", 'message.')] PUR19030226-V02-15-page9.txt: [("'i", 'i')] PUR19030312-V02-16-page1.txt: [("'befOre", 'befOre')] PUR19030312-V02-16-page11.txt: [("'behind", 'behind'), ("'hillside", 'hillside'), ("'rise", 'rise'), ("'tis", 'tis'), ("'tis", 'tis')] PUR19030312-V02-16-page12.txt: [("'Object", 'Object')] PUR19030312-V02-16-page15.txt: [("'gest", 'gest'), ("'Christ's", 'Christs'), ("'More", 'More')] PUR19030312-V02-16-page3.txt: [("'fleeted", 'fleeted'), ("'receiving", 'receiving')] PUR19030312-V02-16-page8.txt: [("'mid", 'mid'), ("'Present", 'Present'), ("'Good", 'Good')] PUR19030312-V02-16-page9.txt: [("'finish", 'finish')] PUR19030326-V02-17-page10.txt: [("'organism", 'organism')] PUR19030326-V02-17-page13.txt: [('\'thee."', 'thee."'), ("'InuSe", 'InuSe'), ("'steadily", 'steadily')] PUR19030326-V02-17-page14.txt: [("'Object", 'Object')] PUR19030326-V02-17-page3.txt: [("'tossed", 'tossed'), ("'shadow", 'shadow')] PUR19030326-V02-17-page6.txt: [("'RECORDER", 'RECORDER'), ("'Object", 'Object'), ("'and", 'and')] PUR19030326-V02-17-page7.txt: [("'ucson", 'ucson')] PUR19030326-V02-17-page9.txt: [("'school", 'school'), ("'it", 'it'), ("'the", 'the')] PUR19030423-V02-18-page11.txt: [("'to", 'to')] PUR19030423-V02-18-page12.txt: [("'held", 'held')] PUR19030423-V02-18-page14.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] PUR19030423-V02-18-page9.txt: [("'everything.", 'everything.')] PUR19030509-V02-19-page1.txt: [("'tho", 'tho')] PUR19030509-V02-19-page14.txt: [("'With", 'With')] PUR19030509-V02-19-page8.txt: [("'My", 'My'), ("'Let", 'Let'), ("'For", 'For'), ("'Six", 'Six')] PUR19030509-V02-19-page9.txt: [("'My", 'My'), ("'Give", 'Give'), ("'Give", 'Give')] PUR19030521-V02-20-page1.txt: [("'Midst", 'Midst')] PUR19030521-V02-20-page12.txt: [("'consider", 'consider')] PUR19030521-V02-20-page15.txt: [("'driven", 'driven')] PUR19030521-V02-20-page16.txt: [("'Bible", 'Bible'), ("'Signs", 'Signs')] PUR19030521-V02-20-page6.txt: [("'owe", 'owe')] PUR19030521-V02-20-page9.txt: [("'God", 'God')] PUR19030604-V02-21-page14.txt: [("'Signs", 'Signs'), ('\'"', '"'), ("'work.", 'work.')] PUR19030604-V02-21-page15.txt: [("'Search", 'Search')] PUR19030604-V02-21-page16.txt: [("'rm.", 'rm.')] PUR19030604-V02-21-page2.txt: [("'soon", 'soon')] PUR19030604-V02-21-page3.txt: [("'school.", 'school.')] PUR19030604-V02-21-page9.txt: [("'eludes", 'eludes')] PUR19030618-V02-22-page11.txt: [("'itself", 'itself')] PUR19030618-V02-22-page13.txt: [("'you", 'you'), ("'closed", 'closed'), ('\'Thee."', 'Thee."')] PUR19030618-V02-22-page3.txt: [("'on", 'on')] PUR19030618-V02-22-page8.txt: [("'joined", 'joined')] PUR19030702-V02-23-page1.txt: [("'Tis", 'Tis'), ("'GixL", 'GixL')] PUR19030702-V02-23-page10.txt: [("'Every", 'Every'), ("'Some", 'Some')] PUR19030702-V02-23-page11.txt: [("'Bozeman.", 'Bozeman.')] PUR19030702-V02-23-page13.txt: [("'and", 'and'), ("'there", 'there')] PUR19030702-V02-23-page15.txt: [("'Patriarchs", 'Patriarchs'), ("'ogpoy", 'ogpoy'), ("'Review", 'Review')] PUR19030702-V02-23-page16.txt: [("'some", 'some'), ("'Signs", 'Signs'), ("'Signs", 'Signs')] PUR19030702-V02-23-page2.txt: [("'I", 'I'), ("'Signs", 'Signs'), ("'to", 'to')] PUR19030702-V02-23-page3.txt: [("'this", 'this'), ("'Signs", 'Signs'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life'), ("'Life", 'Life')] PUR19030702-V02-23-page7.txt: [("'Southern", 'Southern')] PUR19030702-V02-23-page9.txt: [("'grace", 'grace')] PUR19030813-V03-01-page16.txt: [("'engaged", 'engaged')] PUR19030813-V03-01-page4.txt: [("'I", 'I')] PUR19030813-V03-01-page5.txt: [("'Australasia", 'Australasia')] PUR19030813-V03-01-page9.txt: [("'UNION", 'UNION'), ("'Worst", 'Worst'), ("'most", 'most')] PUR19030827-V03-02-page12.txt: [("'Signs", 'Signs')] PUR19030827-V03-02-page14.txt: [("'Christ's", 'Christs'), ("'Bible", 'Bible')] PUR19030827-V03-02-page15.txt: [("'Life", 'Life'), ("'Review", 'Review'), ("'Object", 'Object'), ('\'\'\'"', '"'), ("'Resurrections", 'Resurrections')] PUR19030827-V03-02-page3.txt: [("'a", 'a')] PUR19030827-V03-02-page5.txt: [("'tis", 'tis')] PUR19030827-V03-02-page7.txt: [("'He", 'He')] PUR19030924-V03-04-page1.txt: [("'He", 'He'), ("'Put", 'Put')] PUR19030924-V03-04-page10.txt: [("'fore", 'fore'), ("'Sakes", 'Sakes'), ("'I", 'I')] PUR19030924-V03-04-page12.txt: [("'who", 'who')] PUR19030924-V03-04-page15.txt: [("'The", 'The')] PUR19030924-V03-04-page2.txt: [("'the", 'the')] PUR19031008-V03-05-page5.txt: [("'him", 'him')] PUR19031008-V03-05-page7.txt: [("'to", 'to')] PUR19031022-V03-06-page10.txt: [("'Begin", 'Begin')] PUR19031022-V03-06-page12.txt: [("'I", 'I')] PUR19031022-V03-06-page13.txt: [("'distribute", 'distribute')] PUR19031022-V03-06-page14.txt: [("'hospital", 'hospital')] PUR19031022-V03-06-page16.txt: [('\'rimes."', 'rimes."'), ("'to", 'to')] PUR19031022-V03-06-page3.txt: [("'done", 'done')] PUR19031022-V03-06-page4.txt: [("'make", 'make')] PUR19031022-V03-06-page7.txt: [("'.", '.'), ("'doing", 'doing')] PUR19031022-V03-06-page8.txt: [("'Again", 'Again'), ("'Nearly", 'Nearly'), ("'When", 'When'), ("'The", 'The')] PUR19031022-V03-06-page9.txt: [("'The", 'The')] PUR19031105-V03-07-page12.txt: [("'Christian", 'Christian')] PUR19031105-V03-07-page13.txt: [("'work", 'work')] PUR19031105-V03-07-page3.txt: [("'life", 'life')] PUR19031105-V03-07-page5.txt: [("'nay", 'nay')] PUR19031105-V03-07-page7.txt: [("'comparatively", 'comparatively')] PUR19031105-V03-07-page8.txt: [("'my", 'my')] PUR19031119-V03-08-page11.txt: [("'Signs", 'Signs')] PUR19031119-V03-08-page12.txt: [("'Signs", 'Signs')] PUR19031119-V03-08-page13.txt: [("'Free", 'Free')] PUR19031119-V03-08-page14.txt: [("'and", 'and')] PUR19031119-V03-08-page2.txt: [("'Go", 'Go')] PUR19031119-V03-08-page3.txt: [("'The", 'The')] PUR19031119-V03-08-page4.txt: [("'people", 'people')] PUR19031119-V03-08-page6.txt: [("'of", 'of')] PUR19031119-V03-08-page9.txt: [("'I", 'I'), ("'I", 'I')] PUR19031203-V03-09-page12.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'certainly", 'certainly')] PUR19031203-V03-09-page13.txt: [("'Signs", 'Signs'), ("'bOoks", 'bOoks')] PUR19031203-V03-09-page14.txt: [("'fact.", 'fact.')] PUR19031203-V03-09-page15.txt: [("'Matt.", 'Matt.')] PUR19031203-V03-09-page2.txt: [("'and", 'and')] PUR19031203-V03-09-page6.txt: [("'Resolved", 'Resolved'), ("'seven.", 'seven.')] PUR19031203-V03-09-page8.txt: [("'with", 'with')] PUR19031217-V03-10-page10.txt: [("'dition", 'dition'), ("'For", 'For')] PUR19031217-V03-10-page11.txt: [("'Gainst", 'Gainst'), ("'closes", 'closes'), ("'Sabbath-School", 'Sabbath-School'), ("'HOid", 'HOid'), ("'ori", 'ori')] PUR19031217-V03-10-page12.txt: [("'The", 'The'), ("'I", 'I'), ("'tig", 'tig')] PUR19031217-V03-10-page13.txt: [("'I", 'I'), ("'I", 'I')] PUR19031217-V03-10-page2.txt: [("'He", 'He')] PUR19031217-V03-10-page3.txt: [("'professing", 'professing')] PUR19031217-V03-10-page6.txt: [("'The", 'The')] PUR19031217-V03-10-page8.txt: [('\'"Christ\'s', '"Christs'), ("'to", 'to'), ("'mariy", 'mariy'), ("'but", 'but'), ("'only", 'only'), ("'and", 'and'), ("'and", 'and'), ("'IS", 'IS'), ("'a", 'a'), ("'copies", 'copies'), ("'Wilt", 'Wilt'), ("'special", 'special')] PUR19031217-V03-10-page9.txt: [("'long", 'long'), ("'magazines", 'magazines'), ("'unable", 'unable'), ("'and", 'and'), ("'the", 'the')] PUR19040114-V03-12-page10.txt: [("'Sunday", 'Sunday')] PUR19040114-V03-12-page14.txt: [("'dispensary", 'dispensary')] PUR19040114-V03-12-page16.txt: [("'January", 'January'), ("'I", 'I')] PUR19040114-V03-12-page3.txt: [("'secretary", 'secretary')] PUR19040114-V03-12-page5.txt: [("'but", 'but'), ("'Patriarchs", 'Patriarchs')] PUR19040114-V03-12-page7.txt: [("'I", 'I'), ("'Lord", 'Lord')] PUR19040114-V03-12-page8.txt: [("'a", 'a')] PUR19040114-V03-12-page9.txt: [("'to", 'to')] PUR19040128-V03-13-page1.txt: [("'The", 'The'), ("'are", 'are')] PUR19040128-V03-13-page11.txt: [("'saw", 'saw'), ("'that", 'that')] PUR19040128-V03-13-page12.txt: [("'the", 'the'), ("'total", 'total')] PUR19040128-V03-13-page13.txt: [("'Jesus", 'Jesus')] PUR19040128-V03-13-page14.txt: [("'l'etters", 'letters')] PUR19040128-V03-13-page15.txt: [("'nut", 'nut'), ("'it", 'it')] PUR19040128-V03-13-page4.txt: [("'reaches", 'reaches')] PUR19040128-V03-13-page5.txt: [("'Cuddy", 'Cuddy')] PUR19040128-V03-13-page7.txt: [("'buildings", 'buildings')] PUR19040128-V03-13-page8.txt: [('\'"Whereas', '"Whereas')] PUR19040211-V03-14-page3.txt: [("'in", 'in')] PUR19040211-V03-14-page4.txt: [("'Marshaling", 'Marshaling'), ("'Here", 'Here'), ("'Portland", 'Portland'), ("'Rev.", 'Rev.'), ("'Thanking", 'Thanking')] PUR19040211-V03-14-page5.txt: [("'W.", 'W.'), ("'G.", 'G.'), ("'And", 'And'), ("'the", 'the'), ("'In", 'In'), ("'And", 'And'), ("'And", 'And')] PUR19040225-V03-15-page10.txt: [("'crq", 'crq')] PUR19040225-V03-15-page11.txt: [("'rough", 'rough')] PUR19040225-V03-15-page14.txt: [("'kind", 'kind'), ("'From", 'From')] PUR19040225-V03-15-page15.txt: [("'You", 'You')] PUR19040225-V03-15-page2.txt: [("'For", 'For')] PUR19040225-V03-15-page5.txt: [("'Life", 'Life'), ("'stove", 'stove'), ("'drank", 'drank'), ("'sure", 'sure')] PUR19040225-V03-15-page7.txt: [("'Jones", 'Jones')] PUR19040225-V03-15-page9.txt: [("'here", 'here')] PUR19040310-V03-16-page1.txt: [("'CHET", 'CHET'), ("'tis", 'tis')] PUR19040310-V03-16-page10.txt: [("'in", 'in')] PUR19040310-V03-16-page11.txt: [("'Desire", 'Desire')] PUR19040310-V03-16-page4.txt: [("'of", 'of')] PUR19040310-V03-16-page5.txt: [("'-rebase", '-rebase'), ("'different", 'different'), ("'Tis", 'Tis')] PUR19040310-V03-16-page7.txt: [("'for", 'for'), ("'higher", 'higher')] PUR19040310-V03-16-page9.txt: [("'will", 'will'), ("'gathering", 'gathering')] PUR19040324-V03-17-page10.txt: [("'t", 't'), ("'.", '.')] PUR19040324-V03-17-page14.txt: [("'Pacific", 'Pacific')] PUR19040324-V03-17-page15.txt: [("'O", 'O'), ("'w", 'w'), ('\'"', '"'), ("'I", 'I'), ("'at", 'at')] PUR19040324-V03-17-page3.txt: [("'measure", 'measure')] PUR19040324-V03-17-page9.txt: [("'does", 'does')] PUR19040407-V03-18-page1.txt: [("'besides", 'besides')] PUR19040407-V03-18-page10.txt: [("'The", 'The')] PUR19040407-V03-18-page13.txt: [("'cially", 'cially'), ("'These", 'These')] PUR19040407-V03-18-page14.txt: [("'one", 'one')] PUR19040407-V03-18-page16.txt: [("'Burden", 'Burden')] PUR19040407-V03-18-page7.txt: [("'population", 'population')] PUR19040407-V03-18-page9.txt: [("'of", 'of')] PUR19040421-V03-19-page10.txt: [("'God", 'God')] PUR19040421-V03-19-page11.txt: [("'But", 'But'), ("'the", 'the'), ("'a", 'a')] PUR19040421-V03-19-page13.txt: [('\'Recorder"', 'Recorder"'), ("'tables", 'tables')] PUR19040421-V03-19-page16.txt: [("'J.", 'J.'), ("'its", 'its')] PUR19040421-V03-19-page3.txt: [("'af", 'af')] PUR19040421-V03-19-page7.txt: [("'ACCOUNT", 'ACCOUNT')] PUR19040421-V03-19-page8.txt: [("'Admins.", 'Admins.')] PUR19040505-V03-20-page10.txt: [("'was", 'was'), ("'But", 'But'), ("'call", 'call'), ("'must", 'must'), ("''from", 'from'), ("'which", 'which'), ("'means", 'means'), ("'were", 'were'), ("'which", 'which')] PUR19040505-V03-20-page11.txt: [("'We", 'We'), ("'expense", 'expense')] PUR19040505-V03-20-page13.txt: [("'various", 'various'), ("'foreignnatioriS", 'foreignnatioriS'), ("'THE", 'THE')] PUR19040505-V03-20-page2.txt: [("'light", 'light')] PUR19040505-V03-20-page4.txt: [("'They", 'They')] PUR19040505-V03-20-page5.txt: [("'been", 'been')] PUR19040505-V03-20-page6.txt: [("'sold", 'sold')] PUR19040505-V03-20-page7.txt: [("'stir", 'stir')] PUR19040505-V03-20-page9.txt: [("'RECORIkit", 'RECORIkit'), ("'at", 'at')] PUR19040519-V03-21-page10.txt: [("'Rejoice", 'Rejoice'), ("'him", 'him')] PUR19040519-V03-21-page11.txt: [("'this", 'this'), ("'makes", 'makes'), ("'Bainbridge", 'Bainbridge')] PUR19040519-V03-21-page12.txt: [("'Fr", 'Fr')] PUR19040519-V03-21-page15.txt: [("'a", 'a')] PUR19040519-V03-21-page16.txt: [("'Patriarchs", 'Patriarchs')] PUR19040519-V03-21-page2.txt: [("'God", 'God')] PUR19040519-V03-21-page4.txt: [("'have", 'have')] PUR19040519-V03-21-page5.txt: [("'Object", 'Object'), ("'We", 'We'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object')] PUR19040602-V03-22-page4.txt: [("'n", 'n'), ("'of", 'of')] PUR19040602-V03-22-page6.txt: [("'Worthen", 'Worthen')] PUR19040602-V03-22-page7.txt: [("'Home", 'Home'), ("'The", 'The'), ("'Great", 'Great'), ("'Bible", 'Bible'), ("'Object", 'Object'), ("'Great", 'Great')] PUR19040609-V03-23-page3.txt: [("'Treat", 'Treat'), ("'Prove", 'Prove')] PUR19040609-V03-23-page4.txt: [("'Now", 'Now'), ("'Five", 'Five'), ("'The", 'The'), ("'Consider", 'Consider'), ("'off", 'off'), ("'Brother", 'Brother')] PUR19040609-V03-23-page5.txt: [("'Ile", 'Ile')] PUR19040609-V03-23-page7.txt: [("'symbolized", 'symbolized'), ("'higher", 'higher')] PUR19040616-V03-24-page1.txt: [("'round", 'round'), ("'of", 'of')] PUR19040616-V03-24-page5.txt: [("'to", 'to'), ("'himand.", 'himand.')] PUR19040616-V03-24-page6.txt: [("'round", 'round'), ("'continue", 'continue'), ("'the", 'the')] PUR19040616-V03-24-page8.txt: [("'next", 'next')] PUR19040623-V03-25-page2.txt: [("'Whereas", 'Whereas'), ("'That", 'That')] PUR19040623-V03-25-page7.txt: [("'teaching", 'teaching'), ("'I", 'I')] PUR19040630-V03-26-page1.txt: [("'right", 'right'), ("'house", 'house')] PUR19040630-V03-26-page2.txt: [("'of", 'of')] PUR19040630-V03-26-page4.txt: [("'some", 'some'), ("'Reasons", 'Reasons')] PUR19040630-V03-26-page7.txt: [("'W.", 'W.')] PUR19040707-V03-27-page1.txt: [("'with", 'with')] PUR19040714-V03-28-page2.txt: [("'Object", 'Object'), ("'Ministry", 'Ministry'), ("'Signs", 'Signs')] PUR19040714-V03-28-page8.txt: [("'and", 'and')] PUR19040721-V03-29-page7.txt: [("'Of", 'Of')] PUR19040728-V03-30-page1.txt: [("'Tis", 'Tis')] PUR19040728-V03-30-page5.txt: [("'Man", 'Man')] PUR19040728-V03-30-page7.txt: [("'and", 'and'), ("'Ending", 'Ending')] PUR19040804-V04-01-page1.txt: [("'Tis", 'Tis')] PUR19040804-V04-01-page2.txt: [("'By", 'By')] PUR19040811-V04-02-page1.txt: [("'to", 'to'), ("'Let", 'Let')] PUR19040811-V04-02-page3.txt: [("'those", 'those'), ("'If", 'If')] PUR19040811-V04-02-page4.txt: [("'Marvel", 'Marvel')] PUR19040818-V04-03-page2.txt: [("'somewhat", 'somewhat')] PUR19040818-V04-03-page5.txt: [("'sin.", 'sin.')] PUR19040818-V04-03-page7.txt: [("'J.", 'J.')] PUR19040818-V04-03-page8.txt: [("'ACIFIC", 'ACIFIC')] PUR19040825-V04-04-page1.txt: [("'what", 'what')] PUR19040825-V04-04-page3.txt: [("'us", 'us'), ("'the", 'the')] PUR19040825-V04-04-page4.txt: [("'Fen", 'Fen')] PUR19040825-V04-04-page6.txt: [("'report", 'report')] PUR19040825-V04-04-page7.txt: [("'educational", 'educational'), ("'La", 'La')] PUR19040825-V04-04-page8.txt: [("'list", 'list'), ("'habits", 'habits')] PUR19040901-V04-05-page2.txt: [("'are", 'are')] PUR19040901-V04-05-page6.txt: [("'underwent", 'underwent')] PUR19040901-V04-05-page7.txt: [("'patronage", 'patronage'), ("'to", 'to')] PUR19040908-V04-06-page3.txt: [('\'Signs"', 'Signs"')] PUR19040908-V04-06-page5.txt: [("'forward", 'forward')] PUR19040908-V04-06-page6.txt: [("'and", 'and')] PUR19040915-V04-07-page1.txt: [("'a", 'a')] PUR19040915-V04-07-page7.txt: [("'Power", 'Power')] PUR19040922-V04-08-page1.txt: [("'Matt.", 'Matt.')] PUR19040922-V04-08-page2.txt: [("'we", 'we')] PUR19040922-V04-08-page4.txt: [("'August", 'August'), ("'former", 'former'), ("'up", 'up'), ("'few", 'few')] PUR19040922-V04-08-page7.txt: [("'were", 'were')] PUR19040922-V04-08-page8.txt: [("'Patriarchs", 'Patriarchs'), ("'Lessons", 'Lessons')] PUR19040929-V04-09-page8.txt: [("'garment", 'garment')] PUR19041006-V04-10-page2.txt: [("'repent", 'repent'), ("'the", 'the')] PUR19041006-V04-10-page3.txt: [("'Signs", 'Signs'), ("'Southern", 'Southern'), ("'Life", 'Life'), ("'Object", 'Object'), ("'The", 'The'), ("'Object", 'Object'), ("'Mount", 'Mount'), ("'Great", 'Great'), ("'Steps", 'Steps'), ("'Review", 'Review')] PUR19041006-V04-10-page5.txt: [("'in", 'in')] PUR19041006-V04-10-page7.txt: [("'tis", 'tis')] PUR19041006-V04-10-page8.txt: [("'can", 'can')] PUR19041013-V04-11-page2.txt: [("'Give", 'Give'), ("'has", 'has')] PUR19041013-V04-11-page4.txt: [("'I", 'I')] PUR19041013-V04-11-page7.txt: [("'kind", 'kind')] PUR19041020-V04-12-page3.txt: [("'COMMA", 'COMMA')] PUR19041020-V04-12-page5.txt: [("'Send", 'Send'), ("'of", 'of')] PUR19041020-V04-12-page7.txt: [("'any", 'any'), ("'a", 'a'), ("'created", 'created'), ("'TheSe", 'TheSe'), ("'Signs", 'Signs'), ("'sent", 'sent')] PUR19041020-V04-12-page8.txt: [("'obligation", 'obligation'), ("'house", 'house'), ("'at", 'at')] PUR19041027-V04-13-page2.txt: [("'to", 'to')] PUR19041027-V04-13-page5.txt: [("'that", 'that')] PUR19041027-V04-13-page7.txt: [("'sisters", 'sisters')] PUR19041103-V04-14-page5.txt: [("'jail", 'jail')] PUR19041103-V04-14-page7.txt: [('\'buy"', 'buy"'), ("'are", 'are'), ("'Now", 'Now')] PUR19041110-V04-15-page1.txt: [("'anyone", 'anyone'), ("'not", 'not'), ("'the", 'the')] PUR19041110-V04-15-page2.txt: [("'a", 'a')] PUR19041110-V04-15-page7.txt: [("'Review", 'Review')] PUR19041110-V04-15-page8.txt: [("'denomination", 'denomination')] PUR19041117-V04-16-page1.txt: [("'twould", 'twould'), ("'and", 'and')] PUR19041117-V04-16-page4.txt: [("'outside", 'outside')] PUR19041117-V04-16-page7.txt: [("'Prophecies", 'Prophecies')] PUR19041124-V04-18-page1.txt: [("'comfort", 'comfort')] PUR19041124-V04-18-page3.txt: [("'as", 'as')] PUR19041124-V04-18-page4.txt: [("'Signs", 'Signs'), ("'I", 'I')] PUR19041124-V04-18-page6.txt: [("'Signs", 'Signs')] PUR19041201-V04-19-page1.txt: [("'of", 'of')] PUR19041201-V04-19-page2.txt: [("'Tisn't", 'Tisnt'), ("'em", 'em'), ("'the", 'the')] PUR19041201-V04-19-page3.txt: [("'Possibly", 'Possibly')] PUR19041201-V04-19-page5.txt: [("'Sec.", 'Sec.'), ("'Sec.", 'Sec.')] PUR19041201-V04-19-page7.txt: [("'Signs", 'Signs')] PUR19041208-V04-20-page1.txt: [("'else", 'else'), ("'them", 'them'), ("'argtuttents", 'argtuttents'), ("'prove", 'prove'), ("'to", 'to'), ("'righteousness", 'righteousness'), ("'God's", 'Gods'), ("'He", 'He')] PUR19041208-V04-20-page6.txt: [("'May", 'May')] PUR19041208-V04-20-page7.txt: [("'Some", 'Some'), ("'good", 'good'), ("'two", 'two'), ("'rat", 'rat')] PUR19050105-V04-24-page1.txt: [("'sok", 'sok'), ("'tis", 'tis')] PUR19050105-V04-24-page3.txt: [("'be", 'be'), ("'and", 'and')] PUR19050105-V04-24-page7.txt: [("'to", 'to')] PUR19050112-V04-25-page1.txt: [("'the", 'the'), ("'with", 'with'), ("'Springs", 'Springs')] PUR19050112-V04-25-page4.txt: [("'Francisco", 'Francisco'), ("'work", 'work'), ("'The", 'The'), ("'elicited", 'elicited'), ("'patrons", 'patrons'), ("'the", 'the')] PUR19050112-V04-25-page5.txt: [("'is", 'is'), ("'ask", 'ask'), ("'After", 'After'), ("'Strengthened", 'Strengthened'), ("'The", 'The'), ("'came", 'came'), ("'the", 'the')] PUR19050112-V04-25-page7.txt: [("'Mission", 'Mission'), ("'has", 'has'), ("'Heralds", 'Heralds')] PUR19050112-V04-25-page8.txt: [("'Nevada", 'Nevada'), ("'Great", 'Great'), ("'Christ's", 'Christs'), ("'House", 'House')] PUR19050119-V04-26-page1.txt: [("'Tie", 'Tie')] PUR19050119-V04-26-page2.txt: [("'by", 'by')] PUR19050119-V04-26-page5.txt: [("'believers", 'believers')] PUR19050119-V04-26-page7.txt: [("'more", 'more')] PUR19050209-V04-29-page1.txt: [("'in", 'in')] PUR19050209-V04-29-page2.txt: [("'See", 'See')] PUR19050209-V04-29-page3.txt: [("'entered", 'entered'), ("'Tabor.", 'Tabor.'), ("'Cal.", 'Cal.'), ("'to", 'to')] PUR19050209-V04-29-page4.txt: [("'Behold", 'Behold'), ("'..", '..'), ("'t", 't')] PUR19050209-V04-29-page5.txt: [("'Ti", 'Ti'), ("'is", 'is'), ("'Shall", 'Shall'), ("'fight", 'fight'), ("''to", 'to'), ("'parted", 'parted')] PUR19050209-V04-29-page6.txt: [("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Object", 'Object')] PUR19050209-V04-29-page8.txt: [("'success", 'success'), ("'Street", 'Street'), ("'laborers.", 'laborers.'), ("'the", 'the')] PUR19050223-V04-31-page1.txt: [("'Ten", 'Ten')] PUR19050223-V04-31-page2.txt: [("'of", 'of')] PUR19050223-V04-31-page3.txt: [("'experience", 'experience'), ("'CoMparati-vely", 'CoMparati-vely')] PUR19050223-V04-31-page5.txt: [("'summer's", 'summers'), ("'we", 'we'), ("'the", 'the'), ("'is", 'is'), ("'bracts", 'bracts')] PUR19050223-V04-31-page6.txt: [("'as", 'as')] PUR19050223-V04-31-page7.txt: [("'colleges", 'colleges'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Christ's", 'Christs')] PUR19050223-V04-31-page8.txt: [("'the", 'the'), ("'as", 'as'), ("'the", 'the'), ("'San", 'San'), ("'may", 'may')] PUR19050302-V04-32-page1.txt: [("'Mid", 'Mid'), ("'supposing", 'supposing'), ("'had", 'had')] PUR19050302-V04-32-page2.txt: [("'a", 'a'), ("'speak", 'speak'), ("'last", 'last'), ("'usefulness", 'usefulness'), ("'books.", 'books.')] PUR19050302-V04-32-page3.txt: [("'into", 'into'), ("'May", 'May'), ("'work", 'work'), ("'the", 'the'), ("'entire", 'entire'), ("'sessiOni", 'sessiOni'), ("'reigned", 'reigned'), ("'in", 'in'), ("'MONTANA", 'MONTANA'), ("'February", 'February'), ("'meeting", 'meeting'), ("'to", 'to')] PUR19050302-V04-32-page4.txt: [("'From", 'From'), ("'Daniel", 'Daniel')] PUR19050302-V04-32-page6.txt: [("'it", 'it'), ("'his", 'his'), ("'spiritual", 'spiritual'), ("'vast", 'vast'), ("'hearts", 'hearts'), ("'young", 'young'), ("'between", 'between'), ("'choice", 'choice'), ("'of", 'of'), ("'parable", 'parable'), ("'Lord", 'Lord'), ("'or", 'or'), ("'many", 'many'), ("'best.", 'best.')] PUR19050302-V04-32-page7.txt: [("'a", 'a'), ("'the", 'the'), ("'can", 'can')] PUR19050309-V04-33-page3.txt: [("'tis", 'tis')] PUR19050309-V04-33-page4.txt: [("'Prophecies", 'Prophecies'), ("'Prophecies", 'Prophecies')] PUR19050309-V04-33-page6.txt: [("'Christ's", 'Christs'), ("'D.", 'D.')] PUR19050316-V04-34-page7.txt: [("'That", 'That'), ("'I'll", 'Ill'), ("'Caribbean", 'Caribbean'), ("'Are", 'Are'), ("'us", 'us')] PUR19050323-V04-35-page2.txt: [("'Mother's", 'Mothers')] PUR19050323-V04-35-page7.txt: [("'English.", 'English.')] PUR19050330-V04-36-page1.txt: [("'Lamb", 'Lamb')] PUR19050330-V04-36-page2.txt: [("'As", 'As')] PUR19050330-V04-36-page6.txt: [("'within", 'within'), ("'ter", 'ter')] PUR19050330-V04-36-page8.txt: [('\'Bivouac."', 'Bivouac."')] PUR19050406-V04-37-page1.txt: [("'Come", 'Come'), ("'Thus", 'Thus')] PUR19050413-V04-38-page1.txt: [("'It", 'It')] PUR19050413-V04-38-page2.txt: [("'How", 'How'), ("'When", 'When'), ("'I", 'I')] PUR19050413-V04-38-page5.txt: [("'teach", 'teach')] PUR19050413-V04-38-page6.txt: [("'from", 'from')] PUR19050420-V04-39-page5.txt: [("'in", 'in')] PUR19050420-V04-39-page7.txt: [("'more", 'more')] PUR19050427-V04-40-page1.txt: [("'that", 'that'), ("'Did", 'Did'), ("'shoul", 'shoul')] PUR19050427-V04-40-page2.txt: [("'the", 'the')] PUR19050427-V04-40-page3.txt: [("'he", 'he'), ("'Or", 'Or')] PUR19050427-V04-40-page7.txt: [("'rd", 'rd'), ('\'"', '"')] PUR19050504-V04-41-page1.txt: [("'Show", 'Show'), ("'Vents", 'Vents'), ("'and", 'and')] PUR19050504-V04-41-page2.txt: [("'Review", 'Review')] PUR19050504-V04-41-page3.txt: [("'opened", 'opened')] PUR19050511-V04-42-page1.txt: [("'Bring", 'Bring'), ("'clothe", 'clothe')] PUR19050511-V04-42-page2.txt: [("'RECORDER", 'RECORDER')] PUR19050511-V04-42-page5.txt: [("'school", 'school')] PUR19050511-V04-42-page6.txt: [("'.itishing", '.itishing')] PUR19050511-V04-42-page7.txt: [("'are", 'are'), ("'bed", 'bed')] PUR19071017-V07-12-page1.txt: [("'Nathan", 'Nathan')] PUR19071017-V07-12-page3.txt: [("'Nine", 'Nine'), ("'Not", 'Not'), ("'July", 'July')] PUR19071017-V07-12-page4.txt: [("'UNION", 'UNION')] PUR19071024-V07-13-page1.txt: [("'falling", 'falling')] PUR19071024-V07-13-page2.txt: [("'fulfilled", 'fulfilled')] PUR19071024-V07-13-page3.txt: [("'Coming", 'Coming')] PUR19071024-V07-13-page4.txt: [("'Careful", 'Careful')] PUR19071031-V07-14-page1.txt: [("'be", 'be')] PUR19071031-V07-14-page3.txt: [("'C.", 'C.')] PUR19071031-V07-14-page4.txt: [("'UNION", 'UNION')] PUR19071107-V07-15-page1.txt: [("'whip", 'whip')] PUR19071107-V07-15-page2.txt: [("'UNION", 'UNION')] PUR19071107-V07-15-page4.txt: [("'Studies", 'Studies'), ("'Why", 'Why'), ("'Distribution", 'Distribution')] PUR19071114-V07-16-page1.txt: [("'by", 'by')] PUR19071114-V07-16-page3.txt: [("'Starr.", 'Starr.')] PUR19071121-V07-17-page2.txt: [("'since", 'since'), ("'Le", 'Le'), ("'etc.", 'etc.')] PUR19071121-V07-17-page3.txt: [("'s", 's')] PUR19071121-V07-17-page4.txt: [("'Thank", 'Thank'), ("'Remember", 'Remember')] PUR19071121-V07-17-page5.txt: [("'Periodicals", 'Periodicals'), ("'Work", 'Work'), ("'Gave", 'Gave'), ("'y", 'y'), ("'Week", 'Week'), ("'Total", 'Total'), ("'E", 'E'), ("'Order.", 'Order.')] PUR19071121-V07-17-page6.txt: [("'yon", 'yon'), ("'Patriarchs", 'Patriarchs'), ("'Patriarchs", 'Patriarchs')] PUR19071128-V07-18-page1.txt: [("'Testimonies", 'Testimonies')] PUR19071128-V07-18-page4.txt: [("'work", 'work')] PUR19071128-V07-18-page5.txt: [("'s", 's'), ('\'"us', '"us'), ("'strict", 'strict')] PUR19071128-V07-18-page6.txt: [("'destination.", 'destination.'), ("''Messages", 'Messages')] PUR19071212-V07-20-page4.txt: [("'s", 's')] PUR19071212-V07-20-page5.txt: [("'Mrs.", 'Mrs.'), ("'Week", 'Week'), ("'Report", 'Report'), ("'Distributed", 'Distributed'), ("''Steps", 'Steps')] PUR19071212-V07-20-page6.txt: [("'UNION", 'UNION')] PUR19071219-V07-21-page2.txt: [("'of", 'of'), ("'But", 'But'), ("'Is", 'Is'), ("'Yes", 'Yes'), ("'Indeed", 'Indeed'), ("'On", 'On'), ("'But", 'But'), ("'Yes", 'Yes'), ("'Well", 'Well')] PUR19071219-V07-21-page4.txt: [("'UNION", 'UNION'), ("'your", 'your')] PUR19071219-V07-21-page5.txt: [("'IIRION", 'IIRION')] PUR19080109-V07-24-page1.txt: [("'of", 'of')] PUR19080109-V07-24-page2.txt: [("'quotation", 'quotation'), ("'Christ's", 'Christs'), ("'Christ's", 'Christs'), ("'Ministry", 'Ministry'), ("'Christ's", 'Christs'), ("'Ministry", 'Ministry')] PUR19080109-V07-24-page4.txt: [("'one", 'one'), ("'B.", 'B.'), ("'James", 'James'), ("'Papers", 'Papers')] PUR19080109-V07-24-page5.txt: [("'harvest", 'harvest')] PUR19080130-V07-26-page3.txt: [("'UNION", 'UNION')] PUR19080130-V07-26-page4.txt: [("'UNION", 'UNION'), ("'experience", 'experience')] PUR19080130-V07-26-page6.txt: [("'Round", 'Round')] PUR19080206-V07-27-page1.txt: [("'used", 'used'), ("''SOWe'dwagon", 'SOWedwagon'), ("'Califtrritia", 'Califtrritia'), ("'machine", 'machine')] PUR19080206-V07-27-page2.txt: [("'business", 'business')] PUR19080206-V07-27-page3.txt: [("'pre", 'pre'), ("'UNION", 'UNION'), ("'we", 'we'), ("'with", 'with'), ("'We.", 'We.'), ("'of", 'of'), ("'sister", 'sister'), ("'Cathelie", 'Cathelie'), ("'but", 'but')] PUR19080206-V07-27-page4.txt: [("'PACIFIC", 'PACIFIC'), ("'on", 'on'), ("'There", 'There'), ("'is", 'is'), ("'taken", 'taken'), ("'Sabbath-school", 'Sabbath-school')] PUR19080206-V07-27-page5.txt: [("'them", 'them'), ("'Coming", 'Coming'), ("'Now", 'Now'), ("'The", 'The'), ("'Weeks", 'Weeks'), ("'Work", 'Work'), ("'Order", 'Order'), ("'Two", 'Two')] PUR19080206-V07-27-page6.txt: [("'Dr.", 'Dr.')] PUR19080213-V07-28-page1.txt: [("'him", 'him'), ("'Tenet", 'Tenet'), ("'coarse", 'coarse'), ("'for", 'for'), ("'trenibli.ng", 'trenibli.ng'), ("'Ae", 'Ae')] PUR19080213-V07-28-page11.txt: [("'effort", 'effort'), ("'Upper", 'Upper')] PUR19080213-V07-28-page13.txt: [("'year's", 'years'), ("'s", 's'), ("'from", 'from'), ("'future", 'future')] PUR19080213-V07-28-page15.txt: [("'at", 'at'), ("'A'ad", 'Aad'), ("'shore", 'shore'), ("'people", 'people')] PUR19080213-V07-28-page16.txt: [("'King", 'King'), ("'Central", 'Central')] PUR19080213-V07-28-page3.txt: [("'Colombia", 'Colombia'), ("'and", 'and'), ("'Smith.", 'Smith.')] PUR19080213-V07-28-page4.txt: [("'Pacific", 'Pacific')] PUR19080213-V07-28-page5.txt: [("'are", 'are'), ("'of", 'of'), ("''Ltibereis", 'Ltibereis')] PUR19080213-V07-28-page6.txt: [("'No", 'No')] PUR19080213-V07-28-page7.txt: [("'demand", 'demand')] PUR19080213-V07-28-page8.txt: [("'to", 'to'), ("'hereby", 'hereby')] PUR19080213-V07-28-page9.txt: [("'nth", 'nth'), ("'Month", 'Month'), ("'pertaining", 'pertaining'), ("'is", 'is'), ("'both", 'both')] PUR19080220-V07-29-page1.txt: [("'er", 'er'), ("''Yea", 'Yea')] PUR19080220-V07-29-page2.txt: [("'disciplined", 'disciplined'), ("''We", 'We')] PUR19080220-V07-29-page3.txt: [("'to", 'to'), ("'Oakland", 'Oakland')] PUR19080220-V07-29-page4.txt: [("'of", 'of'), ("'Lord", 'Lord'), ("'individuals", 'individuals'), ("'Order.", 'Order.'), ("'Week", 'Week')] PUR19080220-V07-29-page5.txt: [("'Main", 'Main'), ("'the", 'the'), ("'Taft", 'Taft'), ("'flattering.", 'flattering.')] PUR19080220-V07-29-page6.txt: [("'s", 's'), ("'Utah", 'Utah'), ("'y.", 'y.')] PUR19080227-V07-30-page10.txt: [("'No", 'No')] PUR19080227-V07-30-page11.txt: [("'shining", 'shining'), ("'in", 'in')] PUR19080227-V07-30-page2.txt: [("'s", 's'), ("'n.", 'n.'), ("'s", 's')] PUR19080227-V07-30-page5.txt: [("'California.", 'California.'), ("'coming", 'coming')] PUR19080227-V07-30-page6.txt: [("'distributed", 'distributed'), ("'Liberty", 'Liberty')] PUR19080227-V07-30-page7.txt: [("'Iran", 'Iran')] PUR19080227-V07-30-page9.txt: [("'tithes", 'tithes')] PUR19080305-V07-31-page1.txt: [("'to", 'to'), ("'tis", 'tis')] PUR19080305-V07-31-page2.txt: [("'UNION", 'UNION'), ("''holding", 'holding')] PUR19080305-V07-31-page3.txt: [("'have", 'have')] PUR19080305-V07-31-page4.txt: [("'Early", 'Early'), ("'Miss", 'Miss'), ("'James", 'James'), ("'Week", 'Week'), ("'Week", 'Week')] PUR19080305-V07-31-page6.txt: [("'Brother", 'Brother'), ("'Washington", 'Washington'), ("'because", 'because'), ("'Union", 'Union')] PUR19080312-V07-32-page1.txt: [("'Tis", 'Tis'), ("'caliber", 'caliber'), ("'but", 'but'), ("'do.'You", 'do.You'), ("'Heide", 'Heide'), ("'Shall", 'Shall')] PUR19080312-V07-32-page2.txt: [("'and", 'and'), ("'the", 'the'), ("'to", 'to')] PUR19080312-V07-32-page3.txt: [("'Go", 'Go'), ("'but", 'but'), ("''Finally", 'Finally')] PUR19080312-V07-32-page4.txt: [("'Dr.", 'Dr.'), ("'James", 'James'), ("'Hanford", 'Hanford')] PUR19080312-V07-32-page5.txt: [("'for", 'for'), ("'St.", 'St.'), ("'the", 'the'), ("'varied", 'varied'), ("'We", 'We'), ("'not", 'not')] PUR19080319-V07-33-page1.txt: [("'alTei", 'alTei')] PUR19080319-V07-33-page2.txt: [("'committee", 'committee')] PUR19080319-V07-33-page3.txt: [("'Altogether", 'Altogether'), ("'a", 'a'), ("'of", 'of'), ("'We", 'We'), ("'Central", 'Central'), ("'s", 's')] PUR19080319-V07-33-page4.txt: [("'the", 'the'), ("'close", 'close'), ("'know", 'know')] PUR19080319-V07-33-page5.txt: [("'enlating", 'enlating'), ("'Christ's", 'Christs'), ("'Ministry", 'Ministry'), ("'numbers", 'numbers'), ("'vicinity.", 'vicinity.')] PUR19080326-V07-34-page1.txt: [("'nevo", 'nevo'), ("'the", 'the'), ("'Tis", 'Tis'), ("'Christian", 'Christian'), ("'to", 'to')] PUR19080326-V07-34-page2.txt: [("'unto", 'unto')] PUR19080326-V07-34-page3.txt: [("'Order.", 'Order.'), ("'of", 'of'), ("'St.", 'St.'), ("''dwell", 'dwell'), ("'Ray", 'Ray')] PUR19080326-V07-34-page4.txt: [("''What", 'What'), ("'Jack", 'Jack')] PUR19080402-V07-35-page1.txt: [("'Tis", 'Tis')] PUR19080402-V07-35-page4.txt: [("'Object", 'Object')] PUR19080402-V07-35-page5.txt: [("'mercies", 'mercies')] PUR19080402-V07-35-page6.txt: [("'Object", 'Object'), ("'starting", 'starting'), ("'limes.", 'limes.')] PUR19080409-V07-36-page3.txt: [("'greatest", 'greatest'), ("'.health", '.health')] PUR19080409-V07-36-page5.txt: [("'Series", 'Series'), ("'to", 'to')] PUR19080409-V07-36-page6.txt: [("'every", 'every')] PUR19080416-V07-37-page1.txt: [("'doctrine", 'doctrine'), ("'a", 'a'), ("'word", 'word')] PUR19080416-V07-37-page2.txt: [("'UNION", 'UNION'), ("'s", 's')] PUR19080416-V07-37-page3.txt: [("'seer", 'seer')] PUR19080416-V07-37-page4.txt: [("'UNION", 'UNION')] PUR19080416-V07-37-page5.txt: [("'splendid", 'splendid'), ("'delicious", 'delicious')] PUR19080416-V07-37-page6.txt: [("'the", 'the'), ("'is", 'is'), ("'What", 'What')] PUR19080423-V07-38-page1.txt: [("'grace", 'grace'), ("'appointed.", 'appointed.')] PUR19080423-V07-38-page2.txt: [("'the", 'the')] PUR19080423-V07-38-page3.txt: [("'than", 'than'), ("'s", 's'), ("'we", 'we'), ("'the", 'the')] PUR19080423-V07-38-page4.txt: [("'a", 'a'), ("'of", 'of')] PUR19080423-V07-38-page5.txt: [("'health", 'health')] PUR19080423-V07-38-page6.txt: [("'receipt", 'receipt'), ("'Taft", 'Taft')] PUR19080430-V07-39-page1.txt: [("'audience", 'audience'), ("'s", 's'), ("'Tis", 'Tis')] PUR19080430-V07-39-page3.txt: [("'al.", 'al.')] PUR19080430-V07-39-page5.txt: [("'from", 'from')] PUR19080430-V07-39-page6.txt: [("'away", 'away'), ("'to", 'to'), ("'Continued", 'Continued')] PUR19080430-V07-39-page7.txt: [("'Said", 'Said'), ("'the", 'the'), ("'apes", 'apes'), ("'Work", 'Work')] PUR19080430-V07-39-page8.txt: [("'on", 'on'), ("'There", 'There')] PUR19080507-V07-40-page1.txt: [("'see", 'see'), ("'usually", 'usually'), ("'picked", 'picked'), ("'that", 'that'), ("'bilt", 'bilt'), ("'Neath", 'Neath'), ("'Slade", 'Slade'), ("'sinners", 'sinners')] PUR19080507-V07-40-page2.txt: [("'We", 'We'), ("'L.", 'L.'), ("'Mrs.", 'Mrs.'), ("'Fry", 'Fry'), ("'San", 'San'), ("'be", 'be'), ("'that", 'that')] PUR19080507-V07-40-page3.txt: [("'from", 'from'), ("'olijeet", 'olijeet')] PUR19080507-V07-40-page4.txt: [("'Neil", 'Neil'), ("'Mrs.", 'Mrs.')] PUR19080507-V07-40-page5.txt: [("'be", 'be')] PUR19080507-V07-40-page6.txt: [("'the", 'the'), ("'paper.", 'paper.'), ("'of", 'of'), ("'from", 'from'), ("'in", 'in'), ("'Cal..", 'Cal..'), ("'will", 'will'), ("'Cal.", 'Cal.'), ("'and", 'and'), ("'Sara", 'Sara'), ("'under", 'under'), ("'of", 'of'), ("'air", 'air')] PUR19080514-V07-41-page1.txt: [("'Pardoned", 'Pardoned'), ("'s", 's')] PUR19080514-V07-41-page2.txt: [("'behind", 'behind'), ("'Tis", 'Tis')] PUR19080521-V07-42-page2.txt: [("'received", 'received'), ("'thousand", 'thousand'), ("'week.", 'week.')] PUR19080521-V07-42-page3.txt: [("''The", 'The'), ("'Every", 'Every'), ("'Drink", 'Drink')] PUR19080521-V07-42-page4.txt: [("'Brethren", 'Brethren')] PUR19080521-V07-42-page5.txt: [("'In", 'In'), ("'I", 'I'), ("'Goa", 'Goa'), ("'Jesus", 'Jesus'), ("'He", 'He'), ("'He", 'He'), ("'You", 'You'), ("''Southwestern", 'Southwestern')] PUR19080521-V07-42-page6.txt: [("'correspond", 'correspond'), ("'Look", 'Look')] PUR19080604-V07-44-page1.txt: [("'Have", 'Have')] PUR19080604-V07-44-page3.txt: [("'advertising", 'advertising')] PUR19080604-V07-44-page6.txt: [("'The", 'The'), ("'Bible", 'Bible')] PUR19080611-V07-45-page2.txt: [("'Progressive", 'Progressive')] PUR19080618-V07-46-page2.txt: [("'s", 's'), ("'of", 'of'), ("'between", 'between')] PUR19080618-V07-46-page4.txt: [("'matter", 'matter')] PUR19080625-V07-47-page1.txt: [("'witnesses", 'witnesses')] PUR19080625-V07-47-page3.txt: [("'Biting", 'Biting'), ("'Rithmetie", 'Rithmetie'), ("'s", 's'), ("'s", 's')] PUR19080625-V07-47-page6.txt: [("'A.", 'A.')] PUR19080625-V07-47-page7.txt: [("'s", 's')] PUR19080625-V07-47-page8.txt: [("'to", 'to')] PUR19080702-V07-48-page1.txt: [("'date", 'date')] PUR19080702-V07-48-page2.txt: [("''the", 'the'), ("'change", 'change'), ("'Be", 'Be'), ("'be", 'be')] PUR19080702-V07-48-page3.txt: [("'s", 's')] PUR19080702-V07-48-page4.txt: [("'It", 'It')] PUR19080702-V07-48-page5.txt: [("'s", 's')] PUR19080709-V07-49-page1.txt: [("'s", 's')] PUR19080709-V07-49-page2.txt: [("'s", 's'), ("'s", 's'), ("'s", 's'), ("'s", 's'), ("'s", 's'), ("'s", 's'), ("'s", 's')] PUR19080709-V07-49-page6.txt: [("'in", 'in')] PUR19080716-V07-50-page1.txt: [("'en", 'en'), ("'a", 'a'), ("'shofar", 'shofar')] PUR19080716-V07-50-page2.txt: [("''the", 'the'), ("'unison", 'unison'), ("'sank", 'sank')] PUR19080716-V07-50-page3.txt: [("'deit", 'deit')] PUR19080716-V07-50-page4.txt: [("'The", 'The'), ("'by", 'by'), ("'I", 'I')] PUR19080716-V07-50-page6.txt: [("'Claude", 'Claude')] PUR19080723-V07-51-page1.txt: [("''Now", 'Now'), ("'Aubigne", 'Aubigne'), ("'ffve", 'ffve')] PUR19080723-V07-51-page2.txt: [("'copy", 'copy')] PUR19080723-V07-51-page3.txt: [("'with", 'with'), ("'the", 'the')] PUR19080723-V07-51-page4.txt: [("'do", 'do'), ("'upon", 'upon')] PUR19080723-V07-51-page5.txt: [("'hold", 'hold'), ("''of", 'of'), ("'Elan", 'Elan'), ("'Which", 'Which'), ("'wife", 'wife'), ("'Lord", 'Lord')] PUR19080723-V07-51-page6.txt: [("'Coming", 'Coming'), ("'of", 'of')] PUR19080730-V07-52-page1.txt: [("'We", 'We')] PUR19080730-V07-52-page2.txt: [("'EEC", 'EEC')] PUR19080730-V07-52-page3.txt: [("''aud'briigliing", 'audbriigliing')] PUR19080730-V07-52-page4.txt: [("'condition", 'condition')] PUR19080730-V07-52-page5.txt: [("'Was", 'Was'), ('\'"', '"')] PUR19080730-V07-52-page6.txt: [("'UNION", 'UNION')] PUR19080806-V08-01-page1.txt: [("'Neath", 'Neath'), ("'year", 'year')] PUR19080806-V08-01-page2.txt: [("'UNION", 'UNION'), ("'Correct.", 'Correct.')] PUR19080806-V08-01-page3.txt: [("'the.roughly", 'the.roughly')] PUR19080806-V08-01-page8.txt: [("'UNION", 'UNION'), ("'What", 'What')] PUR19080813-V08-02-page1.txt: [("'Tis", 'Tis'), ("'woes", 'woes'), ("'Jesus", 'Jesus'), ("'NU", 'NU')] PUR19080813-V08-02-page3.txt: [("'Val", 'Val'), ("'resent", 'resent')] PUR19080813-V08-02-page4.txt: [("'has", 'has'), ("'the", 'the')] PUR19080813-V08-02-page5.txt: [("'represent", 'represent')] PUR19080813-V08-02-page6.txt: [("'church", 'church')] PUR19080813-V08-02-page7.txt: [("'Well", 'Well')] PUR19080813-V08-02-page8.txt: [("'are", 'are')] PUR19080820-V08-03-page1.txt: [('\'s"', 's"'), ("'rave", 'rave'), ('\'i"befate', 'i"befate')] PUR19080820-V08-03-page3.txt: [("'lacier", 'lacier'), ('\'"', '"'), ("'prev", 'prev')] PUR19080820-V08-03-page4.txt: [("'with", 'with')] PUR19080820-V08-03-page5.txt: [("'softie", 'softie'), ("'for", 'for'), ("'s", 's'), ("'very", 'very')] PUR19080827-V08-04-page1.txt: [("'the", 'the'), ("'Brother", 'Brother'), ("'Wrapped", 'Wrapped')] PUR19080827-V08-04-page3.txt: [("''Ministry", 'Ministry'), ("'PA", 'PA'), ("'then", 'then'), ("'Older", 'Older')] PUR19080827-V08-04-page4.txt: [("'Do", 'Do'), ("'Christ's", 'Christs'), ("'Well", 'Well'), ("''How", 'How')] PUR19080827-V08-04-page5.txt: [("'Wait", 'Wait'), ("'in", 'in')] PUR19080827-V08-04-page6.txt: [("'UNION", 'UNION'), ("'Pacific", 'Pacific'), ("'n", 'n')] PUR19080910-V08-06-page1.txt: [("'picnics", 'picnics'), ("'cartiOCate", 'cartiOCate')] PUR19080910-V08-06-page3.txt: [("'Hew", 'Hew'), ("'Take", 'Take'), ("''With", 'With'), ("'to", 'to'), ("'s", 's')] PUR19080910-V08-06-page5.txt: [("'Steps", 'Steps'), ("'RkcountS", 'RkcountS'), ("'Oatrthe'leaeherS", 'OatrtheleaeherS')] PUR19080910-V08-06-page6.txt: [("'s", 's')] PUR19080917-V08-07-page1.txt: [("'t", 't'), ("'a", 'a'), ("'no", 'no'), ("'as", 'as'), ("'peace", 'peace'), ("'Come", 'Come'), ("'divers", 'divers'), ("'spoke", 'spoke'), ("'evil", 'evil'), ("'evil", 'evil'), ("'blessed", 'blessed')] PUR19080917-V08-07-page3.txt: [("'chte", 'chte'), ("'L.", 'L.')] PUR19080917-V08-07-page4.txt: [("'Which", 'Which'), ("'supply", 'supply')] PUR19080917-V08-07-page5.txt: [("'Woe", 'Woe')] PUR19080924-V08-08-page1.txt: [("'er", 'er'), ("'to", 'to'), ("'ttileS", 'ttileS'), ("''profeseed", 'profeseed'), ("'be", 'be'), ("'threat", 'threat'), ("'a", 'a'), ("'w", 'w'), ("'o'rlieri", 'orlieri'), ("'.", '.'), ("'riot", 'riot')] PUR19080924-V08-08-page3.txt: [("'Lord", 'Lord'), ("'Jehovah", 'Jehovah'), ("'The", 'The'), ("'per", 'per')] PUR19080924-V08-08-page5.txt: [("'and", 'and'), ("'Agnes", 'Agnes'), ("'Vallejo", 'Vallejo')] PUR19081001-V08-09-page1.txt: [("'When", 'When'), ("'hand", 'hand'), ("'test", 'test')] PUR19081001-V08-09-page3.txt: [("'was-jtoo", 'was-jtoo'), ("'and", 'and')] PUR19081001-V08-09-page4.txt: [("'the", 'the'), ("'Burden", 'Burden'), ("'church", 'church')] PUR19081001-V08-09-page5.txt: [("'s", 's'), ("'then.", 'then.'), ("'oriae", 'oriae'), ("'in", 'in')] PUR19081008-V08-10-page1.txt: [("'y'propirecy", 'ypropirecy'), ("'aymbel", 'aymbel'), ("'established", 'established'), ("'night", 'night'), ("'how", 'how'), ("'Don't", 'Dont'), ("'Or", 'Or'), ("'midnight", 'midnight')] PUR19081008-V08-10-page3.txt: [("'and", 'and'), ("'ffeciSion", 'ffeciSion'), ("'greater", 'greater'), ("'s", 's')] PUR19081008-V08-10-page5.txt: [("''Ministry", 'Ministry'), ("'she", 'she'), ("'and", 'and'), ("'One", 'One'), ("'painted", 'painted'), ("'front", 'front'), ("'trip", 'trip')] PUR19081008-V08-10-page6.txt: [("'since", 'since')] PUR19081015-V08-11-page1.txt: [("'No", 'No'), ("'midst", 'midst'), ("'midnight", 'midnight'), ("'There", 'There'), ("'mid", 'mid'), ("'midnight", 'midnight'), ("'To", 'To'), ("'.", '.')] PUR19081015-V08-11-page3.txt: [("'of", 'of')] PUR19081015-V08-11-page5.txt: [("'Rneeeseft", 'Rneeeseft'), ("'an", 'an')] PUR19081022-V08-12-page1.txt: [("'I", 'I')] PUR19081022-V08-12-page2.txt: [("'shadow", 'shadow'), ("'our", 'our'), ("''Thou", 'Thou')] PUR19081022-V08-12-page3.txt: [("'Mrs", 'Mrs')] PUR19081022-V08-12-page4.txt: [("''Miss", 'Miss'), ("''The", 'The')] PUR19081022-V08-12-page5.txt: [("'only", 'only'), ("''riglrt''tpseven", 'riglrttpseven')] PUR19081029-V08-13-page1.txt: [("''The", 'The')] PUR19081029-V08-13-page3.txt: [("'clock", 'clock')] PUR19081029-V08-13-page4.txt: [("'At", 'At')] PUR19081029-V08-13-page5.txt: [("'Romeo", 'Romeo')] PUR19081029-V08-13-page6.txt: [("'Pacific", 'Pacific')] PUR19081105-V08-14-page1.txt: [("''pattern", 'pattern'), ("'tire", 'tire')] PUR19081105-V08-14-page2.txt: [("'give", 'give'), ("'to", 'to')] PUR19081105-V08-14-page3.txt: [("''the", 'the'), ("'fret", 'fret'), ("'the", 'the')] PUR19081105-V08-14-page6.txt: [("'Pacific", 'Pacific'), ("'mention", 'mention')] PUR19081112-V08-15-page1.txt: [("'Come", 'Come'), ("'Peter", 'Peter'), ("'Where", 'Where'), ("'Hosanna", 'Hosanna')] PUR19081112-V08-15-page3.txt: [("'.", '.'), ("'s", 's'), ("''Dearie", 'Dearie')] PUR19081112-V08-15-page6.txt: [("'some", 'some'), ("'the", 'the')] PUR19081119-V08-16-page1.txt: [("'not", 'not'), ("'Lord's", 'Lords'), ("'Coming", 'Coming')] PUR19081119-V08-16-page2.txt: [("'assuring", 'assuring')] PUR19081119-V08-16-page4.txt: [("'weather", 'weather'), ("'Walker", 'Walker')] PUR19081119-V08-16-page5.txt: [("'and", 'and'), ("'Scripture", 'Scripture'), ("'education.", 'education.')] PUR19081119-V08-16-page6.txt: [("'Erfurth", 'Erfurth'), ("'redrawn", 'redrawn'), ("'and", 'and')] PUR19081126-V08-17-page1.txt: [("'neath", 'neath'), ("'..and", '..and')] PUR19081126-V08-17-page5.txt: [("'High.", 'High.'), ("'left", 'left')] PUR19081126-V08-17-page6.txt: [("'All", 'All'), ("'s", 's')] PUR19081203-V08-18-page1.txt: [("'noted", 'noted'), ("'after", 'after'), ("'village", 'village'), ("'from", 'from'), ("'zinc", 'zinc'), ("'for", 'for'), ("'cppanlerecl", 'cppanlerecl')] PUR19081203-V08-18-page2.txt: [("'sister", 'sister')] PUR19081203-V08-18-page3.txt: [("'are", 'are'), ("'to", 'to'), ("'More", 'More'), ("'that", 'that')] PUR19081203-V08-18-page4.txt: [('\'"ound', '"ound')] PUR19081203-V08-18-page5.txt: [("'s", 's'), ("'Tessa", 'Tessa'), ("'fressa", 'fressa'), ("'talk", 'talk')] PUR19081203-V08-18-page6.txt: [("'these", 'these'), ("'UNION", 'UNION')] PUR19081210-V08-19-page1.txt: [("'nesting", 'nesting'), ("'Sign", 'Sign'), ("'per", 'per')] PUR19081210-V08-19-page2.txt: [("'s", 's')] PUR19081210-V08-19-page3.txt: [("'night", 'night'), ("'Neil", 'Neil')] PUR19081210-V08-19-page4.txt: [("'Thirty-two", 'Thirty-two'), ("'Please", 'Please'), ("'If", 'If'), ("'that", 'that'), ("'Several", 'Several')] PUR19081210-V08-19-page5.txt: [("'Solane", 'Solane'), ("'Francisco", 'Francisco'), ("'Madera", 'Madera'), ("'city", 'city')] PUR19081210-V08-19-page6.txt: [("'s", 's')] PUR19081217-V08-20-page1.txt: [("''offerings", 'offerings')] PUR19081217-V08-20-page2.txt: [("'Sims", 'Sims'), ("'is", 'is')] PUR19081217-V08-20-page3.txt: [("'UNION", 'UNION')] PUR19081217-V08-20-page4.txt: [("'off", 'off')] PUR19081217-V08-20-page5.txt: [("'''Some", 'Some'), ("'song", 'song'), ("'Fak", 'Fak')] PUR19081217-V08-20-page6.txt: [("'Pacific", 'Pacific')] PUR19081224-V08-21-page1.txt: [("'Crese", 'Crese'), ("'prayer", 'prayer'), ("'they", 'they'), ("'at", 'at'), ("'be", 'be')] PUR19081224-V08-21-page2.txt: [("'save", 'save')] PUR19081224-V08-21-page3.txt: [("'the", 'the'), ("''Not", 'Not'), ("'IC", 'IC')] PUR19081224-V08-21-page4.txt: [("'New", 'New'), ("'the", 'the')] PUR19081224-V08-21-page5.txt: [("'Tuesday", 'Tuesday'), ("'The", 'The'), ("'one", 'one'), ("''experience.", 'experience.'), ("'but", 'but')] PUR19081231-V08-22-page1.txt: [("'s", 's')] PUR19081231-V08-22-page3.txt: [("'them", 'them'), ("'tis", 'tis'), ("'relationship", 'relationship')] PUR19081231-V08-22-page4.txt: [("'holidays.", 'holidays.')] PUR19081231-V08-22-page5.txt: [("'three", 'three')] PUR19090107-V08-23-page1.txt: [("'Vol.", 'Vol.')] PUR19090107-V08-23-page2.txt: [("'You", 'You'), ("'Don't", 'Dont')] PUR19090107-V08-23-page3.txt: [("'eight", 'eight'), ("'UNION.", 'UNION.')] PUR19090107-V08-23-page4.txt: [("'Herald", 'Herald')] PUR19090107-V08-23-page5.txt: [("'UNION", 'UNION'), ("'Not", 'Not')] PUR19090114-V08-24-page1.txt: [("'P", 'P')] PUR19090114-V08-24-page3.txt: [("''Christ's", 'Christs'), ("'Ministry", 'Ministry'), ("'Co", 'Co'), ("'Steps", 'Steps'), ("'Mount", 'Mount'), ("'You", 'You'), ("'It", 'It'), ("''The", 'The')] PUR19090114-V08-24-page4.txt: [("'and", 'and')] PUR19090114-V08-24-page6.txt: [("'Daniel", 'Daniel'), ("'Great", 'Great')] PUR19090121-V08-25-page1.txt: [("'SpeaketiattpPIOmented", 'SpeaketiattpPIOmented')] PUR19090121-V08-25-page3.txt: [("'s", 's'), ("'Fe", 'Fe')] PUR19090121-V08-25-page6.txt: [("'s", 's'), ("'Tis", 'Tis')] PUR19090128-V08-26-page1.txt: [("'in", 'in'), ("'eV", 'eV'), ("'These", 'These'), ("'everlasting", 'everlasting'), ("'everlasting", 'everlasting'), ("'neath", 'neath')] PUR19090128-V08-26-page2.txt: [("'UNION", 'UNION'), ("''And", 'And'), ("'and", 'and')] PUR19090128-V08-26-page3.txt: [("'same", 'same'), ("'tau", 'tau'), ("'community", 'community'), ("'once", 'once'), ("'church", 'church'), ("'from", 'from'), ("'Feb.", 'Feb.'), ("'Or", 'Or'), ("'citiesof", 'citiesof')] PUR19090128-V08-26-page4.txt: [("'the", 'the')] PUR19090128-V08-26-page5.txt: [("'hoped", 'hoped'), ("'delightful", 'delightful'), ("'four", 'four')] PUR19090128-V08-26-page6.txt: [("'of", 'of')] PUR19090204-V08-27-page1.txt: [("'Spanish.", 'Spanish.'), ("'Practical", 'Practical')] PUR19090204-V08-27-page2.txt: [("'Patriarchs", 'Patriarchs'), ("'Resolved", 'Resolved'), ("'that", 'that')] PUR19090204-V08-27-page3.txt: [("'Association", 'Association'), ("'office.", 'office.')] PUR19090204-V08-27-page4.txt: [("'to", 'to')] PUR19090204-V08-27-page6.txt: [("'Pacific", 'Pacific')] PUR19090211-V08-28-page1.txt: [("'twere", 'twere'), ("'ettee", 'ettee'), ("'night", 'night')] PUR19090211-V08-28-page3.txt: [("''Making", 'Making')] PUR19090211-V08-28-page4.txt: [("'UNION", 'UNION')] PUR19090211-V08-28-page5.txt: [("'week", 'week'), ("'gait", 'gait'), ("''an", 'an'), ("'my", 'my')] PUR19090218-V08-29-page12.txt: [("'clock", 'clock')] PUR19090218-V08-29-page3.txt: [("'presence", 'presence'), ("'UNION", 'UNION')] PUR19090218-V08-29-page4.txt: [("'UNION", 'UNION')] PUR19090218-V08-29-page6.txt: [("'UNION", 'UNION'), ("'missionaries", 'missionaries')] PUR19090218-V08-29-page7.txt: [("'RS", 'RS')] PUR19090218-V08-29-page8.txt: [("'They", 'They'), ("'s", 's'), ("'s", 's')] PUR19090218-V08-29-page9.txt: [("'University", 'University'), ("'UNION", 'UNION'), ("'s", 's'), ("'satisfactory", 'satisfactory')] PUR19090225-V08-30-page1.txt: [("'reference", 'reference')] PUR19090225-V08-30-page2.txt: [("'s", 's'), ("'to", 'to')] PUR19090225-V08-30-page3.txt: [("'Ceremonial", 'Ceremonial'), ("'The", 'The'), ("'UNION", 'UNION')] PUR19090225-V08-30-page4.txt: [("'but", 'but'), ("'I", 'I'), ("'on", 'on')] PUR19090225-V08-30-page5.txt: [("'How", 'How'), ("'clock", 'clock'), ("'clock", 'clock')] PUR19090304-V08-31-page1.txt: [("'sheuld", 'sheuld')] PUR19090304-V08-31-page3.txt: [("''the", 'the')] PUR19090304-V08-31-page4.txt: [("'s", 's')] PUR19090304-V08-31-page5.txt: [("'Elder", 'Elder'), ("'of", 'of'), ("'clock", 'clock')] PUR19090311-V08-32-page1.txt: [("'After", 'After'), ("'Carriage", 'Carriage'), ("'way.", 'way.'), ("'Winter", 'Winter')] PUR19090311-V08-32-page3.txt: [("'of", 'of'), ("'though", 'though'), ("'rettaMt", 'rettaMt')] PUR19090311-V08-32-page4.txt: [("'Of", 'Of'), ("'independent", 'independent'), ("'of", 'of'), ("'an", 'an'), ("'thy", 'thy'), ("'and", 'and'), ("'to", 'to')] PUR19090311-V08-32-page5.txt: [("'dna.", 'dna.'), ("'that", 'that'), ("'writer.", 'writer.')] PUR19090318-V08-33-page1.txt: [("'Tis", 'Tis')] PUR19090318-V08-33-page2.txt: [("'notions", 'notions'), ("'handed", 'handed')] PUR19090318-V08-33-page3.txt: [("'a", 'a'), ("'far", 'far'), ("'s", 's'), ("'Might", 'Might')] PUR19090318-V08-33-page5.txt: [("'following", 'following'), ("'the", 'the'), ("'El", 'El'), ("'season", 'season')] PUR19090325-V08-34-page1.txt: [("''''Trephetic", 'Trephetic')] PUR19090325-V08-34-page3.txt: [("'prayed", 'prayed'), ("'the", 'the'), ("'nany", 'nany')] PUR19090325-V08-34-page4.txt: [("'been", 'been')] PUR19090325-V08-34-page6.txt: [("'Pacific", 'Pacific')] PUR19090401-V08-35-page5.txt: [("'need", 'need'), ("'s", 's')] PUR19090401-V08-35-page6.txt: [("'s.", 's.')] PUR19090401-V08-35-page8.txt: [("'Pacific", 'Pacific')] PUR19090408-V08-36-page1.txt: [("''John", 'John')] PUR19090408-V08-36-page3.txt: [("'and", 'and'), ("'standard", 'standard'), ("'vide", 'vide'), ("'put", 'put'), ("''How", 'How')] PUR19090408-V08-36-page4.txt: [("'Aloof", 'Aloof')] PUR19090408-V08-36-page5.txt: [("'taken", 'taken')] PUR19090415-V08-37-page1.txt: [("'occasion", 'occasion'), ("'s", 's'), ("'mbued", 'mbued')] PUR19090415-V08-37-page2.txt: [("'S", 'S')] PUR19090415-V08-37-page3.txt: [("'are", 'are')] PUR19090415-V08-37-page5.txt: [("'demands", 'demands')] PUR19090422-V08-38-page1.txt: [("'blotted", 'blotted'), ("'against", 'against'), ("'taken", 'taken'), ("'taken", 'taken'), ("'These", 'These'), ("'blotted", 'blotted')] PUR19090422-V08-38-page3.txt: [("'carried", 'carried')] PUR19090422-V08-38-page4.txt: [("'Spirit", 'Spirit'), ("'s", 's')] PUR19090422-V08-38-page5.txt: [("'Wheat", 'Wheat')] PUR19090429-V08-39-page1.txt: [("'For", 'For'), ("'the", 'the'), ("'One", 'One')] PUR19090429-V08-39-page4.txt: [("'master", 'master')] PUR19090429-V08-39-page5.txt: [("'n", 'n')] PUR19090429-V08-39-page6.txt: [("'Columbia", 'Columbia')] PUR19090506-V08-40-page2.txt: [("'UNION", 'UNION'), ("'s", 's'), ("''Brother", 'Brother')] PUR19090506-V08-40-page3.txt: [("'on", 'on'), ("'Have", 'Have')] PUR19090506-V08-40-page4.txt: [("'s", 's'), ("'Necessity", 'Necessity')] PUR19090513-V08-41-page1.txt: [("'s", 's')] PUR19090513-V08-41-page2.txt: [("'descended", 'descended'), ("'condemns", 'condemns'), ("'favor", 'favor')] PUR19090513-V08-41-page3.txt: [("'quarter", 'quarter')] PUR19090513-V08-41-page4.txt: [("'Pilgrim", 'Pilgrim'), ("'to", 'to')] PUR19090520-V08-42-page3.txt: [("'UNION", 'UNION'), ('\'"', '"')] PUR19090520-V08-42-page4.txt: [("'quiet", 'quiet'), ("'Whatsoever", 'Whatsoever'), ("'By", 'By')] PUR19090520-V08-42-page6.txt: [("'Medic", 'Medic'), ("'erhead.", 'erhead.'), ("'me", 'me')] PUR19090527-V08-43-page1.txt: [("'O", 'O')] PUR19090527-V08-43-page2.txt: [("'excepted", 'excepted')] PUR19090527-V08-43-page3.txt: [("'dingy", 'dingy'), ("'that", 'that')] PUR19090527-V08-43-page5.txt: [("'California", 'California'), ("'d.", 'd.')] PUR19090527-V08-43-page6.txt: [("'Taphouse", 'Taphouse'), ("'Conference", 'Conference')] PUR19090603-V08-44-page1.txt: [("'eitlier", 'eitlier')] PUR19090603-V08-44-page2.txt: [("'in", 'in')] PUR19090603-V08-44-page3.txt: [("'to", 'to')] PUR19090603-V08-44-page5.txt: [("'s", 's')] PUR19090603-V08-44-page6.txt: [("'of", 'of'), ("'s", 's')] PUR19090610-V08-45-page1.txt: [("'started", 'started')] PUR19090610-V08-45-page2.txt: [("'s", 's')] PUR19090610-V08-45-page3.txt: [("'their", 'their'), ("'s", 's'), ("'Hear", 'Hear')] PUR19090610-V08-45-page4.txt: [("'Patriarchs", 'Patriarchs'), ("'copies", 'copies')] PUR19090610-V08-45-page5.txt: [("'Boys", 'Boys'), ("'expected", 'expected')] PUR19090610-V08-45-page6.txt: [("'Kind", 'Kind')] PUR19090617-V08-46-page2.txt: [("'a", 'a')] PUR19090617-V08-46-page3.txt: [("'Fortuna", 'Fortuna'), ("'Mount", 'Mount')] PUR19090617-V08-46-page4.txt: [("'my", 'my')] PUR19090617-V08-46-page5.txt: [("'No", 'No'), ("'Here's", 'Heres'), ("'How", 'How')] PUR19090617-V08-46-page6.txt: [("'that", 'that')] PUR19090624-V08-47-page1.txt: [("'Mission", 'Mission'), ("''Will", 'Will')] PUR19090624-V08-47-page2.txt: [("'sure", 'sure'), ("''Steadfastness", 'Steadfastness')] PUR19090624-V08-47-page3.txt: [("'which", 'which'), ("'expect", 'expect')] PUR19090624-V08-47-page5.txt: [("'Coming", 'Coming'), ("'Corning", 'Corning'), ("'John", 'John')] PUR19090701-V08-48-page1.txt: [("'of", 'of'), ("'tis", 'tis')] PUR19090701-V08-48-page2.txt: [("'s", 's')] PUR19090701-V08-48-page3.txt: [("'error.", 'error.'), ("'Praying", 'Praying')] PUR19090701-V08-48-page4.txt: [("'UNION", 'UNION'), ("'It", 'It')] PUR19090701-V08-48-page5.txt: [("'en", 'en')] PUR19090701-V08-48-page6.txt: [("'conitrinnicatinns", 'conitrinnicatinns'), ("'and", 'and')] PUR19090708-V08-49-page3.txt: [("'C.", 'C.'), ("'have", 'have'), ("'she", 'she'), ("''The", 'The')] PUR19090708-V08-49-page4.txt: [("'and", 'and')] PUR19090715-V08-50-page1.txt: [("'were", 'were'), ("'If", 'If')] PUR19090715-V08-50-page3.txt: [("''Now", 'Now')] PUR19090715-V08-50-page4.txt: [("'s", 's')] PUR19090715-V08-50-page5.txt: [("'seventy", 'seventy'), ("'Passing", 'Passing'), ("'Coming", 'Coming'), ("'Great", 'Great'), ("'Patriarchs", 'Patriarchs')] PUR19090715-V08-50-page6.txt: [("'General", 'General')] PUR19090722-V08-51-page1.txt: [("'If", 'If'), ("'It", 'It'), ("'kind.", 'kind.')] PUR19090722-V08-51-page3.txt: [("'been", 'been'), ("'Tithe", 'Tithe')] PUR19090722-V08-51-page4.txt: [("'mile", 'mile')] PUR19090722-V08-51-page5.txt: [("'Practical", 'Practical'), ("'New", 'New'), ("'Well", 'Well'), ("'all.", 'all.')] PUR19090729-V08-52-page1.txt: [("'the", 'the'), ("'of", 'of')] PUR19090729-V08-52-page3.txt: [("'or", 'or'), ("'be", 'be'), ("'TIC", 'TIC')] PUR19090729-V08-52-page5.txt: [("'Woodland", 'Woodland')] PUR19090729-V08-52-page6.txt: [("'FIealdsburg", 'FIealdsburg'), ("'the", 'the'), ("'is", 'is')] PUR19090805-V09-01-page1.txt: [("'Souls", 'Souls')] PUR19090805-V09-01-page2.txt: [("'Christ's", 'Christs'), ("'Object", 'Object'), ("'Christ's", 'Christs')] PUR19090805-V09-01-page3.txt: [("'Object", 'Object'), ("'Object", 'Object'), ("'Ministry", 'Ministry')] PUR19090812-V09-02-page2.txt: [("'author", 'author')] PUR19090812-V09-02-page4.txt: [("'formerly", 'formerly'), ("'Snyder", 'Snyder')] PUR19090812-V09-02-page6.txt: [("'Pacific", 'Pacific')] PUR19090819-V09-03-page1.txt: [("'s", 's'), ("'Ttred", 'Ttred'), ("'stopped", 'stopped'), ("'OrangePort", 'OrangePort'), ('\'"\'liongh', '"liongh'), ("'a", 'a'), ("'Lewis", 'Lewis'), ("'WOmmandments", 'WOmmandments')] PUR19090819-V09-03-page2.txt: [("'truly", 'truly'), ("'Oracle", 'Oracle'), ("'wine", 'wine'), ("'see", 'see'), ("'the", 'the'), ("'tables", 'tables'), ("'after", 'after'), ("'efforts", 'efforts')] PUR19090819-V09-03-page3.txt: [("'of", 'of'), ("'do", 'do'), ("'UNION", 'UNION')] PUR19090826-V09-04-page1.txt: [("'.", '.'), ("'o", 'o')] PUR19090826-V09-04-page2.txt: [("'of", 'of'), ("'to", 'to')] PUR19090826-V09-04-page3.txt: [("'Alsoout", 'Alsoout'), ("'by", 'by'), ("'handled", 'handled'), ("'ire", 'ire'), ("'solieitation", 'solieitation'), ("'per", 'per'), ("'Was", 'Was')] PUR19090826-V09-04-page5.txt: [("'Hundrede", 'Hundrede'), ("'shall", 'shall')] PUR19090826-V09-04-page6.txt: [("'UNION", 'UNION')] PUR19090826-V09-04-page7.txt: [("'separate", 'separate'), ("'iopy", 'iopy')] PUR19090826-V09-04-page8.txt: [("'the", 'the'), ("'UNION", 'UNION')] PUR19090902-V09-05-page4.txt: [("''What", 'What')] PUR19090902-V09-05-page5.txt: [("'By", 'By'), ("''Home", 'Home')] PUR19090902-V09-05-page6.txt: [("'Pacific", 'Pacific')] PUR19090909-V09-06-page4.txt: [("'made", 'made')] PUR19090909-V09-06-page6.txt: [("''Our", 'Our')] PUR19090916-V09-07-page1.txt: [("'White", 'White')] PUR19090916-V09-07-page2.txt: [("'and", 'and'), ("'toward", 'toward')] PUR19090916-V09-07-page3.txt: [("''retary", 'retary'), ("'ReligieuS", 'ReligieuS'), ("'Thursday", 'Thursday'), ("'Aggressive", 'Aggressive')] PUR19090923-V09-08-page1.txt: [("'of", 'of'), ("''So", 'So'), ('\'\'sense."', 'sense."'), ("'s", 's')] PUR19090923-V09-08-page4.txt: [("'addresses", 'addresses')] PUR19090923-V09-08-page5.txt: [("'Yours", 'Yours')] PUR19090930-V09-09-page1.txt: [("'upon", 'upon'), ("'s", 's'), ("'Cast", 'Cast')] PUR19090930-V09-09-page3.txt: [("'we", 'we'), ("'trr", 'trr'), ("'UNION", 'UNION')] PUR19090930-V09-09-page4.txt: [("'The", 'The')] PUR19090930-V09-09-page6.txt: [("'Burden", 'Burden'), ("'have", 'have')] PUR19091007-V09-10-page1.txt: [("'to", 'to'), ("'A.M.", 'A.M.'), ("'eairl'that", 'eairlthat')] PUR19091007-V09-10-page10.txt: [("''Brethren", 'Brethren'), ("'in", 'in')] PUR19091007-V09-10-page11.txt: [("'clock.", 'clock.'), ('\'endear"', 'endear"')] PUR19091007-V09-10-page12.txt: [("'Family", 'Family'), ("'of", 'of')] PUR19091007-V09-10-page3.txt: [("'Oellent", 'Oellent'), ("'The", 'The')] PUR19091007-V09-10-page4.txt: [("'Japan", 'Japan'), ("'And", 'And'), ("'And", 'And'), ("'And", 'And')] PUR19091007-V09-10-page5.txt: [("'Hear", 'Hear'), ("'Lord", 'Lord'), ("'The", 'The')] PUR19091007-V09-10-page6.txt: [("'and", 'and'), ("'seen", 'seen')] PUR19091007-V09-10-page7.txt: [("'When", 'When')] PUR19091007-V09-10-page8.txt: [("'We", 'We')] PUR19091007-V09-10-page9.txt: [("'bookkeeping", 'bookkeeping'), ("'Can't", 'Cant'), ("'Why", 'Why'), ("'Why", 'Why'), ("'Why", 'Why'), ("'Well", 'Well'), ("'He", 'He'), ("'But", 'But'), ("'without", 'without'), ("'Call", 'Call')] PUR19091014-V09-11-page2.txt: [("'s", 's'), ("'s", 's')] PUR19091014-V09-11-page3.txt: [("'bright", 'bright')] PUR19091014-V09-11-page4.txt: [("'may", 'may'), ("'.", '.'), ("''sibstantial", 'sibstantial'), ("'so", 'so')] PUR19091014-V09-11-page5.txt: [("'Object", 'Object'), ("'My", 'My'), ("'per", 'per'), ("'hearty", 'hearty'), ("'coopera", 'coopera')] PUR19091014-V09-11-page6.txt: [("'Subscription", 'Subscription')] PUR19091021-V09-12-page2.txt: [("'accusing", 'accusing')] PUR19091021-V09-12-page4.txt: [("'organ.", 'organ.'), ("'Institute", 'Institute')] PUR19091021-V09-12-page5.txt: [("'At", 'At'), ("'all", 'all'), ("'rejoice", 'rejoice')] PUR19091021-V09-12-page6.txt: [("'Seventh", 'Seventh')] PUR19091028-V09-13-page1.txt: [("''Covet", 'Covet'), ("'swere's", 'sweres'), ('\'"', '"')] PUR19091028-V09-13-page2.txt: [("'state", 'state')] PUR19091028-V09-13-page3.txt: [("''Religious", 'Religious'), ("'Ver.", 'Ver.'), ("'Bale", 'Bale'), ("'the", 'the')] PUR19091104-V09-14-page4.txt: [("'Castle", 'Castle')] PUR19091104-V09-14-page5.txt: [("'campaign.", 'campaign.'), ("''Dear", 'Dear'), ("'Wonders", 'Wonders')] PUR19091111-V09-15-page1.txt: [("'her", 'her')] PUR19091111-V09-15-page2.txt: [("'The", 'The')] PUR19091111-V09-15-page4.txt: [("'Brown", 'Brown')] PUR19091111-V09-15-page5.txt: [("'s", 's')] PUR19091118-V09-16-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'tis", 'tis')] PUR19091118-V09-16-page2.txt: [("'they", 'they')] PUR19091118-V09-16-page3.txt: [("'since", 'since')] PUR19091118-V09-16-page4.txt: [("'Christ", 'Christ'), ("'Home", 'Home'), ("'Home", 'Home'), ("'Coming", 'Coming')] PUR19091118-V09-16-page5.txt: [("'Salad", 'Salad'), ("'Sabot", 'Sabot'), ("'My", 'My')] PUR19091125-V09-17-page1.txt: [("'in", 'in'), ("'thirty", 'thirty'), ('\'.that"', '.that"'), ("'not", 'not')] PUR19091125-V09-17-page2.txt: [("'get", 'get'), ("'any.", 'any.'), ("'ample", 'ample'), ("'tis", 'tis'), ("'a", 'a'), ("''Not", 'Not')] PUR19091125-V09-17-page3.txt: [("'Sanctuary", 'Sanctuary'), ("'institute", 'institute'), ("'ehurCh.", 'ehurCh.'), ("'.", '.'), ("'vacation.", 'vacation.'), ("'that", 'that'), ("'Benator", 'Benator')] PUR19091125-V09-17-page4.txt: [("''LetEl", 'LetEl'), ("'Students", 'Students'), ("'haVe", 'haVe'), ("'the", 'the'), ("'I", 'I')] PUR19091125-V09-17-page5.txt: [("'a", 'a'), ("''Object", 'Object'), ("'s", 's'), ("''Christ's", 'Christs')] PUR19091125-V09-17-page6.txt: [("'Hypnotism", 'Hypnotism')] PUR19091202-V09-18-page4.txt: [("'Home", 'Home')] PUR19091202-V09-18-page5.txt: [("'I", 'I'), ("'The", 'The'), ("'Evolution", 'Evolution'), ("'and", 'and')] PUR19091209-V09-19-page1.txt: [("'Erie", 'Erie'), ("'clsnatio", 'clsnatio'), ("'the", 'the'), ("'which", 'which')] PUR19091209-V09-19-page2.txt: [("'a", 'a'), ("'Patriarchs", 'Patriarchs'), ("'Patriarchs", 'Patriarchs'), ("'Patriarchs", 'Patriarchs'), ("'New", 'New'), ("'New", 'New'), ("'Coming", 'Coming')] PUR19091209-V09-19-page3.txt: [("'Kern.", 'Kern.')] PUR19091209-V09-19-page5.txt: [("'Ukiah", 'Ukiah'), ("'Nebraska", 'Nebraska')] PUR19091216-V09-20-page2.txt: [("'to", 'to')] PUR19091216-V09-20-page3.txt: [("'s", 's'), ("'s", 's'), ("'Who", 'Who')] PUR19091216-V09-20-page4.txt: [("'There", 'There')] PUR19091216-V09-20-page5.txt: [("'In", 'In')] PUR19091223-V09-21-page1.txt: [("'Commandmentst", 'Commandmentst'), ("'The", 'The'), ("'of", 'of')] PUR19091223-V09-21-page2.txt: [("'elder", 'elder')] PUR19091223-V09-21-page3.txt: [("'Where", 'Where'), ("'s", 's'), ("'Give", 'Give')] PUR19091223-V09-21-page5.txt: [("'The", 'The'), ("''He", 'He'), ("'His", 'His'), ("'UNION", 'UNION')] PUR19091230-V09-22-page1.txt: [("'Muse", 'Muse')] PUR19091230-V09-22-page2.txt: [("'.holiness", '.holiness'), ("'of", 'of'), ("'to", 'to')] PUR19091230-V09-22-page3.txt: [("'Home", 'Home'), ("'Patriarchs", 'Patriarchs'), ("'Coming", 'Coming')] PUR19091230-V09-22-page4.txt: [("'the", 'the')] PUR19091230-V09-22-page5.txt: [("''Great", 'Great')] PUR19091230-V09-22-page6.txt: [("'to", 'to')] PUR19100106-V09-23-page1.txt: [("'not", 'not'), ("'What", 'What')] PUR19100106-V09-23-page3.txt: [("''The", 'The'), ("'course", 'course'), ("'of", 'of'), ("'Is", 'Is'), ("'regarding", 'regarding'), ("'divine", 'divine'), ("'ilenornination", 'ilenornination')] PUR19100106-V09-23-page4.txt: [("'Pacific", 'Pacific'), ("'General", 'General'), ("'devote", 'devote')] PUR19100120-V09-25-page1.txt: [("''Ciintributing", 'Ciintributing'), ("'the", 'the'), ("'been.", 'been.')] PUR19100120-V09-25-page2.txt: [("'UNION", 'UNION')] PUR19100120-V09-25-page3.txt: [("'spared", 'spared'), ("'Creating", 'Creating'), ("'Patriarchs", 'Patriarchs')] PUR19100127-V09-26-page1.txt: [("'hest", 'hest')] PUR19100127-V09-26-page2.txt: [("'University", 'University'), ("'s", 's')] PUR19100127-V09-26-page3.txt: [("'the", 'the'), ("'but", 'but'), ("'respect", 'respect'), ("'the", 'the')] PUR19100127-V09-26-page5.txt: [("'s", 's')] PUR19100127-V09-26-page7.txt: [("'delivered", 'delivered'), ("'expectation", 'expectation')] PUR19100203-V09-27-page11.txt: [("'treat", 'treat')] PUR19100203-V09-27-page13.txt: [('\'"impar"te"d', '"impar"te"d')] PUR19100203-V09-27-page15.txt: [("'ethi", 'ethi'), ("'changes", 'changes'), ("'believe", 'believe'), ("'Israel", 'Israel')] PUR19100203-V09-27-page2.txt: [("'a", 'a'), ("'a", 'a')] PUR19100203-V09-27-page3.txt: [("'IP", 'IP')] PUR19100203-V09-27-page4.txt: [("'Union", 'Union')] PUR19100203-V09-27-page5.txt: [("'they", 'they'), ("'nomination.", 'nomination.')] PUR19100203-V09-27-page6.txt: [("'And", 'And'), ("'n", 'n')] PUR19100203-V09-27-page7.txt: [("'EVANS", 'EVANS'), ("'Board", 'Board')] PUR19100203-V09-27-page8.txt: [("'to", 'to')] PUR19100203-V09-27-page9.txt: [("''Practically", 'Practically'), ("'tricked", 'tricked'), ("'a", 'a'), ("'in", 'in')] PUR19100210-V09-28-page11.txt: [("'and", 'and')] PUR19100210-V09-28-page12.txt: [("'the", 'the')] PUR19100210-V09-28-page14.txt: [("'asking", 'asking')] PUR19100210-V09-28-page16.txt: [("'clock", 'clock')] PUR19100210-V09-28-page3.txt: [("'We", 'We'), ("'tah", 'tah')] PUR19100210-V09-28-page6.txt: [("'the", 'the'), ("'seen", 'seen'), ("'a", 'a'), ("'a", 'a'), ("'a", 'a'), ("'the", 'the')] PUR19100210-V09-28-page7.txt: [("'Are", 'Are'), ("'foreign", 'foreign')] PUR19100210-V09-28-page8.txt: [("'s", 's')] PUR19100217-V09-29-page11.txt: [("'PACIFIC", 'PACIFIC')] PUR19100217-V09-29-page12.txt: [("'California", 'California'), ("'clock", 'clock')] PUR19100217-V09-29-page2.txt: [("'s", 's')] PUR19100217-V09-29-page3.txt: [("'a", 'a'), ("'believed", 'believed')] PUR19100217-V09-29-page4.txt: [("'of", 'of'), ("'Conference", 'Conference')] PUR19100217-V09-29-page5.txt: [("''Whereas", 'Whereas')] PUR19100217-V09-29-page8.txt: [("'is", 'is')] PUR19100217-V09-29-page9.txt: [("'s", 's')] PUR19100224-V09-30-page1.txt: [("'Ukiah", 'Ukiah'), ("'Were", 'Were'), ("'inernberShip", 'inernberShip'), ("'Taggart", 'Taggart')] PUR19100224-V09-30-page10.txt: [("'to", 'to')] PUR19100224-V09-30-page11.txt: [("'Tracts", 'Tracts')] PUR19100224-V09-30-page13.txt: [("'payment", 'payment'), ("'by", 'by'), ("'s", 's'), ("'centers", 'centers')] PUR19100224-V09-30-page14.txt: [("'it", 'it')] PUR19100224-V09-30-page15.txt: [("'I", 'I')] PUR19100224-V09-30-page16.txt: [("'Adventists", 'Adventists')] PUR19100224-V09-30-page3.txt: [("'White.", 'White.')] PUR19100224-V09-30-page4.txt: [("'of", 'of')] PUR19100224-V09-30-page5.txt: [("'church", 'church'), ("'Resolved", 'Resolved')] PUR19100224-V09-30-page7.txt: [("'the", 'the'), ("''.'irainediate", '.irainediate'), ("'committee.", 'committee.'), ("'it", 'it'), ("'districts", 'districts')] PUR19100224-V09-30-page9.txt: [("'''titios", 'titios'), ("'of", 'of')] PUR19100303-V09-31-page1.txt: [("'of", 'of'), ("'If", 'If')] PUR19100303-V09-31-page4.txt: [("'Coming", 'Coming'), ("'Patriarchs", 'Patriarchs'), ("'Home", 'Home')] PUR19100303-V09-31-page5.txt: [("'How", 'How')] PUR19100303-V09-31-page6.txt: [("'clock", 'clock'), ("'at", 'at')] PUR19100310-V09-32-page1.txt: [("'men", 'men')] PUR19100310-V09-32-page2.txt: [("'appointment", 'appointment'), ("'What", 'What')] PUR19100310-V09-32-page4.txt: [("'neath", 'neath'), ("''Ministry", 'Ministry')] PUR19100310-V09-32-page5.txt: [("'of", 'of')] PUR19100310-V09-32-page6.txt: [("'Pacific", 'Pacific'), ("'Plan", 'Plan')] PUR19100317-V09-33-page2.txt: [("'delay", 'delay')] PUR19100317-V09-33-page3.txt: [("'epidemic", 'epidemic'), ("'White.", 'White.'), ("'What", 'What'), ("'What", 'What')] PUR19100324-V09-34-page1.txt: [("'presirireTn", 'presirireTn')] PUR19100324-V09-34-page2.txt: [("'UNION", 'UNION'), ("'and", 'and')] PUR19100324-V09-34-page3.txt: [("'lots", 'lots'), ("'sold", 'sold'), ("''The", 'The'), ("'spiritual", 'spiritual'), ("'fifteen", 'fifteen'), ("''Samitariurn", 'Samitariurn'), ("'of", 'of')] PUR19100324-V09-34-page4.txt: [("'.", '.'), ("'nay", 'nay')] PUR19100324-V09-34-page5.txt: [("'resided", 'resided'), ("'weeks.", 'weeks.')] PUR19100324-V09-34-page6.txt: [("'nicate", 'nicate')] PUR19100324-V09-34-page7.txt: [("'UNTO", 'UNTO')] PUR19100331-V09-35-page1.txt: [("'sehOO", 'sehOO'), ("'an", 'an')] PUR19100331-V09-35-page11.txt: [("'Ron", 'Ron'), ("'tracts", 'tracts'), ("'Are", 'Are')] PUR19100331-V09-35-page2.txt: [("''For", 'For'), ("'they", 'they')] PUR19100331-V09-35-page3.txt: [("'that", 'that'), ("'than", 'than'), ("'enthusiastically", 'enthusiastically')] PUR19100331-V09-35-page5.txt: [("'clock.", 'clock.'), ("'ducted", 'ducted'), ("'Creek.", 'Creek.')] PUR19100331-V09-35-page7.txt: [("'of", 'of'), ("'conduct", 'conduct'), ("'Ccotti", 'Ccotti'), ("'like", 'like'), ("'arid", 'arid'), ("'that", 'that'), ("'Vie", 'Vie'), ("'it", 'it')] PUR19100331-V09-35-page9.txt: [("'C.", 'C.'), ("'Tett", 'Tett'), ("'Santa", 'Santa'), ("'see", 'see'), ("'California.", 'California.')] PUR19100407-V09-36-page1.txt: [("'and", 'and')] PUR19100407-V09-36-page11.txt: [("'Recommend", 'Recommend'), ("'being", 'being')] PUR19100407-V09-36-page12.txt: [("'Patriarchs", 'Patriarchs'), ("'Coming", 'Coming'), ("'Home", 'Home')] PUR19100407-V09-36-page13.txt: [("'eliureh'writes", 'eliurehwrites'), ("''.These", '.These'), ("'begun", 'begun')] PUR19100407-V09-36-page14.txt: [("'s", 's')] PUR19100407-V09-36-page15.txt: [('\'Ilke\'SVireet\'fragrande"', 'IlkeSVireetfragrande"')] PUR19100407-V09-36-page2.txt: [("'train", 'train')] PUR19100407-V09-36-page3.txt: [("'PACIFIC", 'PACIFIC'), ("'UNION", 'UNION')] PUR19100407-V09-36-page4.txt: [("'truth", 'truth'), ("'if", 'if')] PUR19100407-V09-36-page6.txt: [("'Give", 'Give')] PUR19100407-V09-36-page8.txt: [("'in", 'in')] PUR19100407-V09-36-page9.txt: [("''class", 'class'), ("'healthful", 'healthful'), ("'Conference", 'Conference')] PUR19100414-V09-37-page3.txt: [("''Plan", 'Plan'), ("'missionary", 'missionary')] PUR19100414-V09-37-page4.txt: [("'s", 's')] PUR19100421-V09-38-page1.txt: [("'God's", 'Gods')] PUR19100421-V09-38-page2.txt: [("'pleasing", 'pleasing'), ("'jot", 'jot')] PUR19100421-V09-38-page3.txt: [("''Elder", 'Elder'), ("'Great", 'Great'), ("'clays", 'clays'), ('\'"', '"')] PUR19100421-V09-38-page5.txt: [("'wars.", 'wars.')] PUR19100421-V09-38-page6.txt: [("'s", 's')] PUR19100428-V09-39-page4.txt: [("'tact", 'tact'), ("'for", 'for')] PUR19100505-V09-40-page2.txt: [("'Bible", 'Bible'), ("'We", 'We'), ("'Home", 'Home'), ("'good", 'good')] PUR19100505-V09-40-page3.txt: [("'of", 'of'), ("'distant", 'distant'), ("'a", 'a'), ("'recreation", 'recreation'), ("''Mountain", 'Mountain'), ("'number", 'number')] PUR19100505-V09-40-page4.txt: [("'J.", 'J.')] PUR19100505-V09-40-page5.txt: [("''They", 'They'), ("'worker", 'worker')] PUR19100505-V09-40-page6.txt: [("'UNION", 'UNION')] PUR19100505-V09-40-page7.txt: [("'expett", 'expett')] PUR19100505-V09-40-page8.txt: [("'How", 'How')] PUR19100512-V09-41-page1.txt: [("'and", 'and')] PUR19100512-V09-41-page3.txt: [("'Hebrew", 'Hebrew'), ("'in", 'in')] PUR19100512-V09-41-page4.txt: [("'UNION", 'UNION'), ("'and", 'and')] PUR19100519-V09-42-page10.txt: [("'firms", 'firms')] PUR19100519-V09-42-page11.txt: [("'clock", 'clock')] PUR19100519-V09-42-page13.txt: [("'Pardon", 'Pardon'), ("'I", 'I'), ("''I", 'I'), ("'was", 'was')] PUR19100519-V09-42-page15.txt: [("'Little", 'Little')] PUR19100519-V09-42-page2.txt: [("'furnishing", 'furnishing')] PUR19100519-V09-42-page3.txt: [("'I", 'I'), ("'We", 'We'), ("'I", 'I')] PUR19100519-V09-42-page5.txt: [("'You", 'You'), ("'even", 'even'), ("'s", 's')] PUR19100519-V09-42-page6.txt: [("'look", 'look')] PUR19100519-V09-42-page7.txt: [("'lots", 'lots')] PUR19100519-V09-42-page8.txt: [("'his", 'his'), ("'altar", 'altar')] PUR19100519-V09-42-page9.txt: [("'and", 'and'), ("'purposes", 'purposes')] PUR19100526-V09-43-page1.txt: [("'At", 'At'), ("'bound", 'bound'), ("'Shall", 'Shall')] PUR19100526-V09-43-page2.txt: [("'nion.", 'nion.')] PUR19100526-V09-43-page3.txt: [("'time", 'time')] PUR19100526-V09-43-page6.txt: [("''What", 'What')] PUR19100602-V09-44-page2.txt: [('\'\'"a', '"a'), ("'will", 'will')] PUR19100602-V09-44-page4.txt: [("'has", 'has')] PUR19100602-V09-44-page5.txt: [("'to", 'to'), ("'a", 'a'), ("'mordent", 'mordent'), ("'ire", 'ire'), ("'called", 'called'), ("'the", 'the')] PUR19100602-V09-44-page6.txt: [("'turned", 'turned')] PUR19100609-V09-45-page3.txt: [("'isthat", 'isthat'), ("'RECORDER", 'RECORDER')] PUR19100609-V09-45-page4.txt: [("'It", 'It')] PUR19100609-V09-45-page5.txt: [("'and", 'and'), ("'to", 'to')] PUR19100616-V09-46-page1.txt: [("'Pacific", 'Pacific')] PUR19100616-V09-46-page2.txt: [("'the", 'the'), ("'Story", 'Story'), ("'selling", 'selling')] PUR19100616-V09-46-page3.txt: [("'various", 'various'), ("'TNT", 'TNT')] PUR19100616-V09-46-page4.txt: [('\'\'happiness."', 'happiness."')] PUR19100616-V09-46-page5.txt: [("'Unanimous", 'Unanimous'), ("'s", 's'), ("'Occupy", 'Occupy'), ("'UNION", 'UNION')] PUR19100623-V09-47-page1.txt: [("'the", 'the')] PUR19100623-V09-47-page2.txt: [("'not", 'not'), ("'but", 'but'), ("'and", 'and')] PUR19100623-V09-47-page4.txt: [("'States", 'States')] PUR19100623-V09-47-page6.txt: [("'Every", 'Every')] PUR19100630-V09-48-page1.txt: [("'attent'en", 'attenten'), ("''Now", 'Now'), ("'N.", 'N.')] PUR19100630-V09-48-page2.txt: [("'Company", 'Company'), ("'crowded", 'crowded'), ("'Home", 'Home'), ("'His", 'His')] PUR19100630-V09-48-page3.txt: [("'been", 'been')] PUR19100630-V09-48-page5.txt: [("'instead", 'instead'), ("''Ministry", 'Ministry'), ("''Ministry", 'Ministry')] PUR19100630-V09-48-page6.txt: [("'Daniel", 'Daniel'), ("'member", 'member'), ('\'"Every', '"Every')] PUR19100630-V09-48-page7.txt: [("''Practical", 'Practical'), ("'W.", 'W.'), ("'large", 'large')] PUR19100630-V09-48-page8.txt: [("'Family", 'Family')] PUR19100707-V09-49-page1.txt: [("'accomplish", 'accomplish')] PUR19100707-V09-49-page2.txt: [("'We", 'We'), ("'You", 'You')] PUR19100707-V09-49-page4.txt: [("'.", '.'), ("'her", 'her'), ("'one", 'one')] PUR19100707-V09-49-page5.txt: [("'Corner", 'Corner')] PUR19100721-V09-51-page2.txt: [("'we", 'we'), ("'Silent", 'Silent'), ("'Salud", 'Salud'), ("'exposition", 'exposition')] PUR19100721-V09-51-page3.txt: [("'Home", 'Home'), ("'Certainly", 'Certainly'), ("'Crafts", 'Crafts'), ("'RECORD", 'RECORD')] PUR19100721-V09-51-page4.txt: [("''Perfect", 'Perfect')] PUR19100721-V09-51-page5.txt: [("'s", 's')] PUR19100721-V09-51-page6.txt: [("''Feed", 'Feed')] PUR19100721-V09-51-page8.txt: [("'a", 'a')] PUR19100728-V09-52-page1.txt: [("'whose", 'whose'), ("'et.", 'et.')] PUR19100728-V09-52-page3.txt: [("'P", 'P')] PUR19100728-V09-52-page4.txt: [("'Wolfsen", 'Wolfsen')] PUR19100728-V09-52-page6.txt: [("'as", 'as'), ("'s", 's')] PUR19100804-V10-01-page12.txt: [("'UNION", 'UNION')] PUR19100804-V10-01-page3.txt: [("'.", '.'), ("'the", 'the')] PUR19100804-V10-01-page5.txt: [("'Thou", 'Thou')] PUR19100804-V10-01-page6.txt: [("'UNION", 'UNION'), ("'That", 'That'), ("'t.", 't.')] PUR19100811-V10-02-page4.txt: [("'I", 'I')] PUR19100811-V10-02-page5.txt: [("'we", 'we'), ("'Blessed", 'Blessed')] PUR19100811-V10-02-page6.txt: [("'The", 'The')] PUR19100811-V10-02-page7.txt: [("'s", 's')] PUR19100818-V10-03-page1.txt: [("'Pacific", 'Pacific'), ("'Something", 'Something'), ("''Of", 'Of'), ("'correct", 'correct')] PUR19100818-V10-03-page11.txt: [("'strictly", 'strictly')] PUR19100818-V10-03-page12.txt: [("'RECORDER", 'RECORDER')] PUR19100818-V10-03-page2.txt: [("'a", 'a'), ("'of", 'of')] PUR19100818-V10-03-page4.txt: [("'sick", 'sick')] PUR19100818-V10-03-page6.txt: [("'Occupy", 'Occupy'), ("'eighteen", 'eighteen')] PUR19100818-V10-03-page7.txt: [("'accept", 'accept'), ("'very", 'very')] PUR19100818-V10-03-page8.txt: [("'s", 's')] PUR19100818-V10-03-page9.txt: [("'Twere", 'Twere')] PUR19100825-V10-04-page2.txt: [("'UNION", 'UNION')] PUR19100901-V10-05-page1.txt: [("'acific", 'acific'), ("'acific", 'acific')] PUR19100901-V10-05-page2.txt: [("'SOUTHERN", 'SOUTHERN')] PUR19100901-V10-05-page3.txt: [("''Ministry", 'Ministry'), ("'St.", 'St.'), ("'inedleat", 'inedleat'), ("'preparatory", 'preparatory')] PUR19100901-V10-05-page4.txt: [("'Work", 'Work'), ("'self", 'self'), ("'on", 'on'), ("'not", 'not')] PUR19100901-V10-05-page5.txt: [("'nd", 'nd')] PUR19100901-V10-05-page6.txt: [("'s", 's')] PUR19100908-V10-06-page1.txt: [("'now", 'now')] PUR19100908-V10-06-page2.txt: [("'church", 'church'), ("'tis", 'tis')] PUR19100908-V10-06-page5.txt: [("'that", 'that')] PUR19100915-V10-07-page2.txt: [("'have", 'have')] PUR19100915-V10-07-page5.txt: [("'will", 'will'), ("'.", '.')] PUR19100915-V10-07-page6.txt: [("'to", 'to'), ("'Practical", 'Practical'), ("'I", 'I')] PUR19100915-V10-07-page7.txt: [("'experiences", 'experiences'), ("'publications", 'publications'), ("'hunt", 'hunt'), ("'demanding.", 'demanding.'), ("'.", '.'), ("'and", 'and'), ("'worth", 'worth')] PUR19100915-V10-07-page8.txt: [("'igloo", 'igloo'), ("'Utak", 'Utak')] PUR19100922-V10-08-page1.txt: [("'on", 'on')] PUR19100922-V10-08-page2.txt: [("'Philadelphia", 'Philadelphia'), ("'Perhaps", 'Perhaps')] PUR19100922-V10-08-page3.txt: [("'My", 'My'), ("'signal", 'signal'), ("'Daniel", 'Daniel')] PUR19100922-V10-08-page4.txt: [("'a", 'a'), ("'form", 'form'), ("'the", 'the'), ("'Daniel", 'Daniel')] PUR19100922-V10-08-page6.txt: [("'fresh", 'fresh')] PUR19100922-V10-08-page7.txt: [("'medicine", 'medicine')] PUR19100922-V10-08-page8.txt: [("'Pacific", 'Pacific')] PUR19100929-V10-09-page1.txt: [("'sisters", 'sisters'), ("'literature", 'literature'), ("'them", 'them'), ("''Christ's", 'Christs')] PUR19100929-V10-09-page10.txt: [("'September", 'September')] PUR19100929-V10-09-page11.txt: [("'Lord", 'Lord'), ("'big", 'big'), ("'good", 'good'), ("'I", 'I'), ("'in", 'in'), ("'Only", 'Only')] PUR19100929-V10-09-page12.txt: [("'Visalia", 'Visalia'), ("'the", 'the'), ("'much", 'much'), ("'A", 'A'), ("'Is", 'Is')] PUR19100929-V10-09-page3.txt: [("'we", 'we')] PUR19100929-V10-09-page5.txt: [("''Reflect", 'Reflect')] PUR19100929-V10-09-page6.txt: [("'and", 'and'), ("'work", 'work')] PUR19100929-V10-09-page9.txt: [("'conditions.", 'conditions.')] PUR19101006-V10-10-page2.txt: [("'We", 'We')] PUR19101006-V10-10-page3.txt: [("'seed", 'seed')] PUR19101006-V10-10-page4.txt: [("'principles", 'principles')] PUR19101006-V10-10-page5.txt: [("'more", 'more'), ("'trained", 'trained')] PUR19101006-V10-10-page6.txt: [("'UNION", 'UNION'), ("'My", 'My')] PUR19101006-V10-10-page7.txt: [("'Faith", 'Faith'), ("'Daniel", 'Daniel'), ("'Early", 'Early'), ("'We", 'We'), ("'Upon", 'Upon'), ("'Supper", 'Supper'), ("''I", 'I'), ("'Tis", 'Tis'), ("'tis", 'tis')] PUR19101006-V10-10-page8.txt: [("'Many", 'Many')] PUR19101013-V10-11-page1.txt: [("'s", 's')] PUR19101013-V10-11-page2.txt: [("'have", 'have'), ("'of", 'of')] PUR19101013-V10-11-page4.txt: [("'s", 's')] PUR19101013-V10-11-page6.txt: [("''Our", 'Our'), ("''maybe", 'maybe'), ("'in", 'in')] PUR19101013-V10-11-page7.txt: [("'...veepeth", '...veepeth')] PUR19101020-V10-12-page2.txt: [("'at", 'at')] PUR19101020-V10-12-page3.txt: [('\'Livingstone."', 'Livingstone."'), ("'of", 'of'), ("'can", 'can'), ("'the", 'the')] PUR19101020-V10-12-page4.txt: [("'in", 'in'), ("'central", 'central')] PUR19101020-V10-12-page5.txt: [("'s", 's')] PUR19101020-V10-12-page6.txt: [("'class", 'class'), ("'former", 'former'), ("'faculty", 'faculty'), ("'even", 'even')] PUR19101020-V10-12-page7.txt: [("'Lift", 'Lift')] PUR19101027-V10-13-page1.txt: [("'View", 'View')] PUR19101027-V10-13-page10.txt: [("'Two", 'Two')] PUR19101027-V10-13-page11.txt: [("'in", 'in')] PUR19101027-V10-13-page12.txt: [("'Go", 'Go'), ("'Practical", 'Practical'), ("'with", 'with')] PUR19101027-V10-13-page13.txt: [("'Home", 'Home')] PUR19101027-V10-13-page14.txt: [("'REVOILD-.ER.", 'REVOILD-.ER.'), ("'our", 'our'), ("'places", 'places')] PUR19101027-V10-13-page15.txt: [("'Life", 'Life'), ("'Bible", 'Bible')] PUR19101027-V10-13-page2.txt: [("'dained", 'dained'), ("''Ministry", 'Ministry')] PUR19101027-V10-13-page5.txt: [("'s.", 's.')] PUR19101027-V10-13-page8.txt: [("'Some", 'Some'), ("'Willie", 'Willie')] PUR19101027-V10-13-page9.txt: [("'er", 'er')] PUR19101103-V10-14-page1.txt: [("'find", 'find'), ("''nothing", 'nothing'), ("'Patriarchs", 'Patriarchs'), ("'full", 'full')] PUR19101103-V10-14-page2.txt: [("'Campaign", 'Campaign'), ("'the", 'the')] PUR19101103-V10-14-page3.txt: [("'s", 's')] PUR19101103-V10-14-page6.txt: [("'once", 'once'), ("'taken", 'taken'), ("'You'll", 'Youll'), ("'A", 'A'), ("'Brethren", 'Brethren'), ("''The", 'The')] PUR19101103-V10-14-page7.txt: [("'them", 'them'), ("'Sunset", 'Sunset'), ("'Francisco", 'Francisco')] PUR19101103-V10-14-page8.txt: [("'work", 'work'), ("'necessary", 'necessary'), ("'s", 's')] PUR19101110-V10-15-page2.txt: [("'Great", 'Great'), ("'Bible", 'Bible'), ("'Great", 'Great')] PUR19101110-V10-15-page4.txt: [("'favorably", 'favorably'), ("''Practical", 'Practical')] PUR19101110-V10-15-page5.txt: [("'U", 'U')] PUR19101110-V10-15-page6.txt: [("'Twere", 'Twere')] PUR19101110-V10-15-page8.txt: [("'to", 'to')] PUR19101117-V10-16-page2.txt: [("'amounting", 'amounting')] PUR19101117-V10-16-page3.txt: [("'was", 'was')] PUR19101117-V10-16-page4.txt: [("'read", 'read'), ("'have", 'have'), ("'The", 'The'), ("'I", 'I')] PUR19101117-V10-16-page5.txt: [("'place.", 'place.'), ("'Iowa", 'Iowa'), ("'the", 'the'), ("'Your", 'Your'), ("'nu", 'nu')] PUR19101117-V10-16-page7.txt: [("'em", 'em'), ("'g", 'g'), ("'a", 'a'), ("'I", 'I'), ("'For", 'For')] PUR19101117-V10-16-page8.txt: [("'s", 's')] PUR19101124-V10-17-page1.txt: [("'sisters", 'sisters')] PUR19101124-V10-17-page2.txt: [("'Adams", 'Adams'), ("'watchcare", 'watchcare'), ("'that", 'that')] PUR19101124-V10-17-page3.txt: [("'while", 'while'), ("'and", 'and'), ("'Primarily", 'Primarily')] PUR19101124-V10-17-page4.txt: [("'following", 'following')] PUR19101124-V10-17-page5.txt: [("'I", 'I'), ("'I", 'I'), ("'seems", 'seems')] PUR19101124-V10-17-page6.txt: [("'Or", 'Or')] PUR19101124-V10-17-page7.txt: [("'Cloth", 'Cloth'), ("'Friend", 'Friend'), ("'j", 'j')] PUR19101124-V10-17-page8.txt: [("'Boys", 'Boys')] PUR19101201-V10-18-page3.txt: [("'Ito", 'Ito')] PUR19101201-V10-18-page4.txt: [("'UNION", 'UNION'), ("'AI.", 'AI.')] PUR19101201-V10-18-page5.txt: [("'accord", 'accord'), ("''Morning", 'Morning')] PUR19101201-V10-18-page8.txt: [("'As", 'As')] PUR19101208-V10-19-page1.txt: [("'Box", 'Box')] PUR19101208-V10-19-page2.txt: [("'Practical", 'Practical')] PUR19101208-V10-19-page4.txt: [("'having", 'having')] PUR19101208-V10-19-page5.txt: [("'was", 'was'), ("'of", 'of'), ("'s", 's')] PUR19101208-V10-19-page6.txt: [("'to", 'to'), ("'UNION", 'UNION')] PUR19101208-V10-19-page7.txt: [("'Let", 'Let'), ("'we", 'we'), ("'reports", 'reports')] PUR19101215-V10-20-page2.txt: [("'he", 'he'), ("'are", 'are'), ("'out", 'out'), ("'All", 'All'), ("'another", 'another'), ("'of", 'of'), ("'of", 'of')] PUR19101215-V10-20-page3.txt: [("'God", 'God'), ("'above", 'above')] PUR19101215-V10-20-page4.txt: [("'While", 'While'), ("'quick", 'quick')] PUR19101215-V10-20-page5.txt: [("'MB", 'MB')] PUR19101215-V10-20-page6.txt: [("'Cottrell", 'Cottrell')] PUR19101215-V10-20-page7.txt: [("'he", 'he'), ("'Irictory", 'Irictory'), ("'that", 'that'), ("'Daniel", 'Daniel'), ("'every", 'every'), ("'Oakland", 'Oakland'), ("'Beek", 'Beek'), ("'to", 'to'), ("'Brother", 'Brother'), ("'They", 'They'), ("'still", 'still')] PUR19101215-V10-20-page8.txt: [("'She", 'She')] PUR19101222-V10-21-page1.txt: [("'Now", 'Now')] PUR19101222-V10-21-page3.txt: [("'the", 'the'), ("'s", 's')] PUR19101222-V10-21-page4.txt: [("'galluses", 'galluses'), ("'I'll", 'Ill'), ("'Somehow", 'Somehow')] PUR19101222-V10-21-page6.txt: [("'to", 'to'), ("'My", 'My')] PUR19101229-V10-22-page1.txt: [("'Union.", 'Union.'), ("'tis", 'tis'), ("'All", 'All')] PUR19101229-V10-22-page2.txt: [("'we", 'we')] PUR19101229-V10-22-page4.txt: [("'volumes", 'volumes'), ("'M.", 'M.')] PUR19101229-V10-22-page6.txt: [("'UNION", 'UNION'), ("'the", 'the'), ("'Great", 'Great')] PUR19101229-V10-22-page7.txt: [("'The", 'The'), ("'Help", 'Help'), ("'Delivery", 'Delivery'), ("'the", 'the'), ("'aliOnt.", 'aliOnt.')] PUR19101229-V10-22-page8.txt: [("'Pacific", 'Pacific'), ("'a", 'a')] PUR19110105-V10-23-page1.txt: [("'sistePs.", 'sistePs.')] PUR19110105-V10-23-page2.txt: [("'The", 'The'), ("'iron'piitliP", 'ironpiitliP'), ("'called", 'called'), ("'.anoilick", '.anoilick'), ("'UNION", 'UNION')] PUR19110105-V10-23-page3.txt: [("'now", 'now'), ("'his", 'his')] PUR19110105-V10-23-page4.txt: [("'well", 'well')] PUR19110105-V10-23-page5.txt: [("'Sales", 'Sales')] PUR19110105-V10-23-page6.txt: [("'by", 'by'), ("'of", 'of')] PUR19110112-V10-24-page3.txt: [("'W.", 'W.'), ("'church", 'church'), ("'of", 'of')] PUR19110112-V10-24-page4.txt: [("'on", 'on'), ("'by", 'by')] PUR19110112-V10-24-page5.txt: [("'source", 'source'), ("'You", 'You'), ("'a", 'a'), ("'me", 'me')] PUR19110112-V10-24-page6.txt: [("'the", 'the'), ("'Stay", 'Stay')] PUR19110112-V10-24-page7.txt: [("'The", 'The'), ("'s", 's'), ("'Deliveries", 'Deliveries')] PUR19110112-V10-24-page8.txt: [("'Pacific", 'Pacific'), ("'year", 'year')] PUR19110119-V10-25-page1.txt: [("'heeded", 'heeded'), ("'er", 'er'), ("'anil'O", 'anilO'), ('\'"', '"'), ("'storin.", 'storin.')] PUR19110119-V10-25-page2.txt: [("'presented", 'presented'), ("'least", 'least')] PUR19110119-V10-25-page3.txt: [("'companies", 'companies'), ("'series", 'series'), ("'of", 'of')] PUR19110119-V10-25-page4.txt: [("'What", 'What'), ("'It", 'It'), ("'How", 'How'), ("'well", 'well')] PUR19110119-V10-25-page5.txt: [("'care", 'care')] PUR19110119-V10-25-page6.txt: [("'Game", 'Game'), ("'December", 'December'), ("'UNION", 'UNION')] PUR19110119-V10-25-page7.txt: [("'realize", 'realize')] PUR19110119-V10-25-page8.txt: [("'strong", 'strong'), ("'H.", 'H.')] PUR19110126-V10-26-page1.txt: [("'of", 'of')] PUR19110126-V10-26-page3.txt: [("'many", 'many')] PUR19110126-V10-26-page4.txt: [("'Ministry", 'Ministry')] PUR19110126-V10-26-page5.txt: [("'wrought", 'wrought')] PUR19110126-V10-26-page6.txt: [("'will", 'will'), ("'in", 'in')] PUR19110126-V10-26-page7.txt: [("'s", 's'), ("'we", 'we')] PUR19110202-V10-27-page1.txt: [("'and", 'and'), ("'of", 'of'), ("'blessing", 'blessing'), ("'societies", 'societies')] PUR19110202-V10-27-page2.txt: [("'Questions", 'Questions'), ("'nthly", 'nthly')] PUR19110202-V10-27-page3.txt: [('\'"has', '"has'), ("'that", 'that')] PUR19110202-V10-27-page4.txt: [("'Janucvry", 'Janucvry')] PUR19110202-V10-27-page5.txt: [("'Circle", 'Circle'), ("'week", 'week'), ("'Desire", 'Desire'), ('\'"', '"'), ("'all", 'all'), ("'A", 'A'), ("'legislature", 'legislature'), ("'Practical", 'Practical')] PUR19110202-V10-27-page6.txt: [("'Home", 'Home'), ("'the", 'the'), ("'in", 'in'), ("'duty", 'duty'), ("'upon", 'upon'), ("'assisting", 'assisting'), ("'faithful", 'faithful'), ("'a", 'a'), ("'the", 'the')] PUR19110202-V10-27-page7.txt: [("'work", 'work'), ("'COntaing", 'COntaing'), ("'church", 'church'), ("'S.", 'S.'), ("'correspondenee", 'correspondenee'), ("'wished", 'wished'), ("'church", 'church'), ("'a", 'a'), ("'ence.", 'ence.')] PUR19110202-V10-27-page8.txt: [("'meeting", 'meeting')] PUR19110209-V10-28-page1.txt: [("'s", 's'), ("'.", '.'), ("'the", 'the')] PUR19110209-V10-28-page2.txt: [("'UNION", 'UNION'), ("'wife", 'wife')] PUR19110209-V10-28-page3.txt: [("'and", 'and'), ("'health", 'health')] PUR19110209-V10-28-page4.txt: [("'work", 'work'), ("'Fireside", 'Fireside')] PUR19110209-V10-28-page5.txt: [("'literature", 'literature'), ("'the", 'the'), ("'Bible", 'Bible'), ("'now", 'now'), ("'offered", 'offered')] PUR19110209-V10-28-page6.txt: [("'the", 'the')] PUR19110209-V10-28-page7.txt: [("'to", 'to'), ("'owns", 'owns'), ("'Helps", 'Helps')] PUR19110216-V10-29-page2.txt: [("'sanitarium", 'sanitarium')] PUR19110216-V10-29-page3.txt: [("'was", 'was')] PUR19110216-V10-29-page7.txt: [("'From", 'From'), ("'conscious.", 'conscious.'), ("'Heralds", 'Heralds'), ("'D.", 'D.'), ("'Should", 'Should'), ("'Christ's", 'Christs'), ("'Steps", 'Steps'), ("'Helps", 'Helps')] PUR19110216-V10-29-page8.txt: [("'Pacific", 'Pacific')] PUR19110223-V10-30-page1.txt: [("'himself", 'himself'), ("'that", 'that'), ("'truth", 'truth'), ("'Wolcott", 'Wolcott'), ("'DiCtlietTar", 'DiCtlietTar'), ("'tea", 'tea'), ("'Adirentifittin", 'Adirentifittin')] PUR19110223-V10-30-page2.txt: [("'encouraging", 'encouraging')] PUR19110223-V10-30-page3.txt: [("'Writing", 'Writing'), ("'Ministry", 'Ministry')] PUR19110223-V10-30-page4.txt: [("'Volume", 'Volume')] PUR19110223-V10-30-page6.txt: [("'Great", 'Great'), ("'lost", 'lost')] PUR19110223-V10-30-page7.txt: [("'clock", 'clock'), ("'Delivery", 'Delivery'), ("''Steps", 'Steps'), ("'Delivery", 'Delivery'), ("'Delivery", 'Delivery')] PUR19110223-V10-30-page8.txt: [("'March", 'March')] PUR19110302-V10-31-page1.txt: [("'California", 'California')] PUR19110302-V10-31-page12.txt: [("'year", 'year')] PUR19110302-V10-31-page13.txt: [("'a", 'a')] PUR19110302-V10-31-page3.txt: [("'UNION", 'UNION')] PUR19110302-V10-31-page5.txt: [("'on", 'on')] PUR19110302-V10-31-page8.txt: [("'rom", 'rom')] PUR19110302-V10-31-page9.txt: [("'s", 's'), ("'UNION", 'UNION')] PUR19110309-V10-32-page1.txt: [("'thee", 'thee')] PUR19110309-V10-32-page10.txt: [("'has", 'has'), ("'Helps", 'Helps'), ("'Delivery", 'Delivery'), ("'Delivery", 'Delivery'), ("'Delivery", 'Delivery')] PUR19110309-V10-32-page11.txt: [("'it.", 'it.')] PUR19110309-V10-32-page12.txt: [("'book.", 'book.'), ("'met", 'met')] PUR19110309-V10-32-page14.txt: [("'Can", 'Can'), ("'Can't", 'Cant'), ("'more", 'more')] PUR19110309-V10-32-page16.txt: [("'with", 'with')] PUR19110309-V10-32-page2.txt: [("'Land", 'Land')] PUR19110309-V10-32-page3.txt: [("''Ministry", 'Ministry'), ("''How", 'How'), ("'Bitbseription", 'Bitbseription'), ("'Value", 'Value')] PUR19110309-V10-32-page4.txt: [("'people.", 'people.')] PUR19110309-V10-32-page5.txt: [("'continued", 'continued'), ("'and", 'and')] PUR19110309-V10-32-page6.txt: [("'for", 'for'), ("'UNION", 'UNION')] PUR19110309-V10-32-page7.txt: [("'Missionary", 'Missionary'), ("'UNION", 'UNION')] PUR19110309-V10-32-page8.txt: [("''Have", 'Have'), ("''Will", 'Will'), ("'the", 'the')] PUR19110309-V10-32-page9.txt: [("'population", 'population'), ("'large", 'large'), ("'by", 'by')] PUR19110316-V10-33-page1.txt: [("'and", 'and'), ("'schoolhouse", 'schoolhouse'), ("'the", 'the')] PUR19110316-V10-33-page2.txt: [("'brethren", 'brethren'), ("'organization", 'organization')] PUR19110316-V10-33-page3.txt: [("'just", 'just')] PUR19110316-V10-33-page4.txt: [("'the", 'the'), ("'may", 'may'), ("'ekingdom.", 'ekingdom.'), ("'great.", 'great.')] PUR19110316-V10-33-page5.txt: [("'of", 'of'), ("''church", 'church')] PUR19110316-V10-33-page6.txt: [("'to", 'to')] PUR19110316-V10-33-page7.txt: [("'Eulyssa", 'Eulyssa'), ("'Lawrence", 'Lawrence'), ("'Helps", 'Helps')] PUR19110316-V10-33-page8.txt: [("'the", 'the')] PUR19110323-V10-34-page2.txt: [("'Well", 'Well'), ("'Elder", 'Elder'), ("'conference", 'conference')] PUR19110323-V10-34-page3.txt: [("'Giver", 'Giver'), ("'the", 'the')] PUR19110323-V10-34-page4.txt: [("'standard", 'standard'), ("'eat", 'eat'), ("'Salmi", 'Salmi'), ("'Bible", 'Bible')] PUR19110323-V10-34-page5.txt: [("'Special", 'Special'), ("'Some", 'Some'), ("'conference", 'conference')] PUR19110323-V10-34-page7.txt: [("'books", 'books'), ("''Home", 'Home'), ("''you", 'you'), ("'able", 'able'), ("'do", 'do'), ("''His", 'His')] PUR19110330-V10-35-page1.txt: [("'year", 'year')] PUR19110330-V10-35-page3.txt: [("'tirer", 'tirer'), ("'Ind", 'Ind')] PUR19110330-V10-35-page4.txt: [("'We", 'We')] PUR19110330-V10-35-page5.txt: [("'Spanish-speaking", 'Spanish-speaking')] PUR19110330-V10-35-page7.txt: [("'helps", 'helps'), ("'helps", 'helps'), ("'been", 'been'), ("'Helps", 'Helps'), ("'helps", 'helps'), ("'helps", 'helps'), ("'Week", 'Week')] PUR19110330-V10-35-page8.txt: [("'portions", 'portions')] PUR19110406-V10-36-page1.txt: [("'Mean", 'Mean'), ("'forward", 'forward'), ("'advance", 'advance')] PUR19110406-V10-36-page2.txt: [("'s", 's')] PUR19110406-V10-36-page3.txt: [("'.Andross.", '.Andross.'), ('\'present"', 'present"'), ("'ever", 'ever')] PUR19110406-V10-36-page4.txt: [("'s", 's'), ("'Elder", 'Elder')] PUR19110406-V10-36-page5.txt: [("'of", 'of'), ("'Cartise", 'Cartise'), ("'thejrkerequisite", 'thejrkerequisite'), ("'PACIFIC", 'PACIFIC')] PUR19110406-V10-36-page7.txt: [("'year", 'year')] PUR19110406-V10-36-page8.txt: [("'Pacific", 'Pacific')] PUR19110413-V10-37-page1.txt: [("'Why", 'Why'), ("'Sister", 'Sister'), ("'I", 'I'), ("'This", 'This'), ("'another", 'another')] PUR19110413-V10-37-page2.txt: [("'Robbins", 'Robbins'), ("'wife", 'wife')] PUR19110413-V10-37-page3.txt: [("'came", 'came'), ("'our", 'our')] PUR19110413-V10-37-page4.txt: [("'MS", 'MS'), ("'Iia", 'Iia')] PUR19110413-V10-37-page5.txt: [("'with", 'with'), ("'and", 'and'), ("'Taggart", 'Taggart'), ("'Mingled", 'Mingled'), ("'or", 'or')] PUR19110413-V10-37-page6.txt: [("'has", 'has')] PUR19110413-V10-37-page7.txt: [("''Well", 'Well'), ("'From", 'From'), ("''Well", 'Well'), ("'Helps", 'Helps'), ("'Church", 'Church'), ("'Helps", 'Helps')] PUR19110413-V10-37-page8.txt: [("'Union", 'Union')] PUR19110420-V10-38-page1.txt: [("'Bear", 'Bear'), ("'to", 'to'), ("'J.", 'J.')] PUR19110420-V10-38-page3.txt: [("'s", 's'), ("'truth", 'truth')] PUR19110420-V10-38-page4.txt: [("'UNION", 'UNION'), ("'The", 'The'), ("'I.", 'I.'), ("'Heralds", 'Heralds')] PUR19110420-V10-38-page5.txt: [("'study", 'study'), ("'to", 'to'), ("'finique.", 'finique.')] PUR19110420-V10-38-page6.txt: [("'ean", 'ean'), ("'Helps", 'Helps'), ("'Men", 'Men'), ("'helps", 'helps')] PUR19110420-V10-38-page7.txt: [("'ritOry", 'ritOry'), ("'incr", 'incr'), ("'the", 'the'), ("'niggers", 'niggers'), ("'see", 'see')] PUR19110420-V10-38-page8.txt: [("'in", 'in'), ("'Prof.", 'Prof.'), ("'Will", 'Will'), ("'by", 'by'), ("'are", 'are')] PUR19110427-V10-39-page1.txt: [("'Irhe", 'Irhe'), ("'have", 'have'), ("'back", 'back'), ("'lime", 'lime')] PUR19110427-V10-39-page2.txt: [("'the", 'the'), ("'what", 'what'), ("'Booth.", 'Booth.')] PUR19110427-V10-39-page3.txt: [("'a", 'a')] PUR19110427-V10-39-page4.txt: [("'twentyfive", 'twentyfive')] PUR19110427-V10-39-page5.txt: [("'according", 'according'), ("'shapes", 'shapes')] PUR19110427-V10-39-page6.txt: [("'lag", 'lag')] PUR19110427-V10-39-page7.txt: [("'Oakland", 'Oakland'), ("''Object", 'Object')] PUR19110504-V10-40-page1.txt: [("'of", 'of')] PUR19110504-V10-40-page2.txt: [("'members.", 'members.')] PUR19110504-V10-40-page3.txt: [("'Erancisco.", 'Erancisco.'), ("'has", 'has')] PUR19110504-V10-40-page4.txt: [("'there", 'there')] PUR19110504-V10-40-page5.txt: [("'Do", 'Do'), ("'If", 'If')] PUR19110504-V10-40-page6.txt: [("'UNION", 'UNION'), ("''six", 'six')] PUR19110511-V10-41-page1.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'a", 'a'), ("'aim", 'aim'), ("'nt", 'nt'), ("'spend", 'spend'), ("'euthern", 'euthern'), ("'Conference", 'Conference'), ("'Sacramento", 'Sacramento')] PUR19110511-V10-41-page2.txt: [("'should", 'should')] PUR19110511-V10-41-page4.txt: [("'Ministry", 'Ministry'), ("'Mr.", 'Mr.'), ("'Well", 'Well'), ("'you", 'you'), ("'How", 'How'), ("'You", 'You'), ("'Mama", 'Mama'), ("'The", 'The'), ("'I", 'I'), ("'Ministry", 'Ministry')] PUR19110511-V10-41-page8.txt: [("'All", 'All'), ("'with", 'with')] PUR19110518-V10-42-page1.txt: [("'San", 'San')] PUR19110518-V10-42-page2.txt: [("'Money", 'Money'), ("'an", 'an'), ("'He", 'He')] PUR19110518-V10-42-page3.txt: [("'Sabbath", 'Sabbath'), ("'bewildered", 'bewildered')] PUR19110518-V10-42-page5.txt: [("'help", 'help'), ("'There", 'There'), ("'To", 'To'), ("'In", 'In')] PUR19110518-V10-42-page6.txt: [("'hold", 'hold')] PUR19110518-V10-42-page7.txt: [("'This", 'This'), ("'in", 'in'), ("'ONION", 'ONION')] PUR19110525-V10-43-page1.txt: [("'short", 'short'), ("'from", 'from')] PUR19110525-V10-43-page2.txt: [("'lacked", 'lacked'), ("'since", 'since'), ("'in", 'in'), ("'searching", 'searching'), ("'the", 'the')] PUR19110525-V10-43-page3.txt: [("'your", 'your'), ("'Sister", 'Sister'), ("'of", 'of'), ("'have", 'have')] PUR19110525-V10-43-page4.txt: [("'here", 'here'), ("'little", 'little'), ("'hOspitality", 'hOspitality'), ("'sixteen", 'sixteen')] PUR19110525-V10-43-page5.txt: [("'Um", 'Um'), ("'ditanizatien.", 'ditanizatien.'), ("'She", 'She'), ("'Centralia", 'Centralia'), ("'work", 'work')] PUR19110525-V10-43-page6.txt: [("'with", 'with'), ("'time", 'time'), ("'are", 'are'), ("'two", 'two'), ("'UNION", 'UNION')] PUR19110525-V10-43-page8.txt: [("'and", 'and'), ("''They", 'They')] PUR19110601-V10-44-page1.txt: [("'Tis", 'Tis'), ("'And", 'And')] PUR19110601-V10-44-page4.txt: [("'developed.", 'developed.')] PUR19110601-V10-44-page5.txt: [("'buried", 'buried'), ("'Bible", 'Bible')] PUR19110601-V10-44-page6.txt: [("'Shirley", 'Shirley')] PUR19110601-V10-44-page7.txt: [("'a", 'a'), ("''those", 'those')] PUR19110608-V10-45-page1.txt: [("'number", 'number')] PUR19110608-V10-45-page2.txt: [("'before", 'before'), ("'one", 'one')] PUR19110608-V10-45-page3.txt: [("'Ave.", 'Ave.'), ("'UNION", 'UNION'), ("'to", 'to'), ("'of", 'of')] PUR19110608-V10-45-page4.txt: [("'singers.", 'singers.')] PUR19110608-V10-45-page5.txt: [("'Educational", 'Educational'), ("'perferin.", 'perferin.'), ('\'r"Schoel', 'r"Schoel'), ("'h'eld", 'held'), ("'normal", 'normal')] PUR19110608-V10-45-page6.txt: [("'Never", 'Never'), ("'old", 'old'), ("'Pachuca", 'Pachuca'), ("'I", 'I')] PUR19110608-V10-45-page7.txt: [("'He", 'He'), ("'All", 'All'), ("'Patriarchs", 'Patriarchs'), ("'for", 'for'), ("'may", 'may'), ("'Four", 'Four')] PUR19110608-V10-45-page8.txt: [("'UNION", 'UNION'), ("'order", 'order')] PUR19110615-V10-46-page2.txt: [("'the", 'the')] PUR19110615-V10-46-page3.txt: [("'Blessed", 'Blessed')] PUR19110615-V10-46-page4.txt: [("'Great", 'Great'), ("'Honesty", 'Honesty')] PUR19110615-V10-46-page5.txt: [("''Discipline", 'Discipline')] PUR19110615-V10-46-page8.txt: [("'Conference", 'Conference')] PUR19110622-V10-47-page1.txt: [("'Treas.", 'Treas.')] PUR19110622-V10-47-page4.txt: [("'Should", 'Should'), ("'s", 's')] PUR19110629-V10-48-page1.txt: [("'We", 'We'), ("'back", 'back')] PUR19110629-V10-48-page2.txt: [("'A", 'A'), ("'the", 'the'), ("'to", 'to')] PUR19110629-V10-48-page5.txt: [("'praying", 'praying'), ("'I", 'I'), ("'We", 'We')] PUR19110629-V10-48-page6.txt: [("'Paradise", 'Paradise'), ("'Practical", 'Practical'), ("'My", 'My'), ("'Are", 'Are')] PUR19110629-V10-48-page7.txt: [("'We", 'We'), ("'s", 's')] PUR19110706-V10-49-page1.txt: [("'the", 'the'), ("'prineiples.", 'prineiples.')] PUR19110706-V10-49-page2.txt: [("'clock", 'clock')] PUR19110706-V10-49-page3.txt: [("'er", 'er')] PUR19110706-V10-49-page4.txt: [("'er", 'er'), ("'s", 's')] PUR19110706-V10-49-page5.txt: [("'the", 'the')] PUR19110706-V10-49-page6.txt: [("''I", 'I'), ("'My", 'My')] PUR19110713-V10-50-page1.txt: [("'pleasant", 'pleasant')] PUR19110713-V10-50-page4.txt: [("'I", 'I'), ("'phoned", 'phoned'), ("'that", 'that')] PUR19110713-V10-50-page5.txt: [("'the", 'the')] PUR19110713-V10-50-page6.txt: [("'gentleman", 'gentleman')] PUR19110713-V10-50-page7.txt: [("'s", 's'), ("'of", 'of'), ("'He's", 'Hes'), ("'s", 's')] PUR19110720-V10-51-page1.txt: [("'it", 'it')] PUR19110720-V10-51-page3.txt: [("'a", 'a')] PUR19110720-V10-51-page4.txt: [("'delivered", 'delivered'), ("'Practical", 'Practical'), ("'Great", 'Great'), ("'Practical", 'Practical'), ("'I", 'I'), ("'I", 'I'), ("'s", 's'), ("'I", 'I'), ("'I", 'I'), ("'gainst", 'gainst'), ("'Mid", 'Mid')] PUR19110720-V10-51-page5.txt: [("'And", 'And'), ("'Delivered", 'Delivered'), ("'de", 'de'), ("'Daniel", 'Daniel'), ("'Sutter", 'Sutter')] PUR19110720-V10-51-page6.txt: [("'Daniel", 'Daniel'), ("'image", 'image'), ("'Daniel", 'Daniel'), ("'Coming", 'Coming')] PUR19110720-V10-51-page7.txt: [("'which", 'which'), ("'s", 's')] PUR19110727-V10-52-page1.txt: [("'rtIonth", 'rtIonth'), ("''oNsirig", 'oNsirig'), ("'When", 'When'), ("'passport", 'passport'), ("'the", 'the'), ("'left", 'left'), ("'activity", 'activity')] PUR19110727-V10-52-page5.txt: [("'workers", 'workers'), ("'Seal", 'Seal')] PUR19110727-V10-52-page6.txt: [("'s", 's'), ("'Helps", 'Helps'), ("'delivered", 'delivered'), ("'delivered", 'delivered'), ("'helps", 'helps'), ("'delivered", 'delivered'), ("'delivered", 'delivered'), ("'delivered", 'delivered'), ("'delivered", 'delivered'), ("'delivered", 'delivered'), ("'Helps", 'Helps')] PUR19110727-V10-52-page7.txt: [("'Go", 'Go'), ("'That", 'That'), ("''Mr.", 'Mr.'), ("'is", 'is')] PUR19110803-V11-01-page1.txt: [("''Lead", 'Lead')] PUR19110803-V11-01-page2.txt: [("'s", 's')] PUR19110803-V11-01-page4.txt: [("'Lord", 'Lord'), ("'machine.", 'machine.')] PUR19110803-V11-01-page5.txt: [("'Helps", 'Helps'), ("'Helps", 'Helps'), ("'Helps", 'Helps'), ("'Delivered", 'Delivered')] PUR19110803-V11-01-page6.txt: [("'old-time", 'old-time'), ("'Prodigal", 'Prodigal'), ("'Delivered", 'Delivered'), ("'Delivered", 'Delivered'), ("'Delivered", 'Delivered')] PUR19110803-V11-01-page7.txt: [("'the", 'the'), ("'not", 'not'), ("'are", 'are'), ("'OW", 'OW'), ("'UNION", 'UNION')] PUR19110803-V11-01-page8.txt: [("'by", 'by')] PUR19110810-V11-02-page4.txt: [("'completion", 'completion'), ("'of", 'of'), ("'To", 'To'), ("'of", 'of')] PUR19110810-V11-02-page5.txt: [("'reflect", 'reflect')] PUR19110817-V11-03-page1.txt: [("'The", 'The'), ("'In", 'In')] PUR19110817-V11-03-page2.txt: [("'Forward", 'Forward'), ("'Peter", 'Peter'), ("'s", 's')] PUR19110817-V11-03-page3.txt: [("'maintained", 'maintained')] PUR19110817-V11-03-page5.txt: [("'.", '.'), ("'school", 'school'), ("'that", 'that')] PUR19110817-V11-03-page6.txt: [("'Fisher", 'Fisher')] PUR19110817-V11-03-page7.txt: [("'You", 'You'), ("''The", 'The'), ("'My", 'My'), ("'Good", 'Good')] PUR19110817-V11-03-page8.txt: [("'in", 'in')] PUR19110824-V11-04-page1.txt: [("'upon", 'upon')] PUR19110824-V11-04-page2.txt: [("'See", 'See')] PUR19110824-V11-04-page3.txt: [("'was", 'was')] PUR19110824-V11-04-page5.txt: [("''The", 'The'), ("'.", '.')] PUR19110824-V11-04-page6.txt: [("'work", 'work')] PUR19110824-V11-04-page7.txt: [("'of", 'of'), ("'UNION", 'UNION')] PUR19110831-V11-05-page2.txt: [("'s", 's')] PUR19110831-V11-05-page5.txt: [("''Say", 'Say'), ("'s", 's')] PUR19110831-V11-05-page6.txt: [("'Are", 'Are'), ("'showers", 'showers'), ("'strong", 'strong'), ("'I", 'I'), ("'several", 'several')] PUR19110831-V11-05-page8.txt: [("'me", 'me')] PUR19110907-V11-06-page13.txt: [("'OF", 'OF')] PUR19110907-V11-06-page14.txt: [("'youth", 'youth'), ("'advantages.", 'advantages.')] PUR19110907-V11-06-page3.txt: [("'hem", 'hem'), ("'ce", 'ce'), ("'eve", 'eve')] PUR19110907-V11-06-page5.txt: [("''when", 'when')] PUR19110907-V11-06-page7.txt: [("'she", 'she'), ("'UNION", 'UNION')] PUR19110907-V11-06-page8.txt: [("'regular", 'regular')] PUR19110914-V11-07-page4.txt: [("'the", 'the')] PUR19110921-V11-08-page2.txt: [("'In", 'In')] PUR19110921-V11-08-page3.txt: [("'organized.", 'organized.')] PUR19110921-V11-08-page5.txt: [("''She", 'She')] PUR19110921-V11-08-page6.txt: [("'UNION", 'UNION'), ("'Daniel", 'Daniel'), ("'Great", 'Great'), ("'deep", 'deep'), ("'And", 'And'), ("'Are", 'Are'), ("'Coming", 'Coming')] PUR19110921-V11-08-page7.txt: [("'f.", 'f.')] PUR19110921-V11-08-page8.txt: [("'UNION", 'UNION'), ("'s", 's')] PUR19110928-V11-09-page1.txt: [("'be", 'be'), ("'me", 'me'), ("'While", 'While'), ("'on", 'on'), ("'the", 'the'), ("'clock", 'clock'), ("'never", 'never')] PUR19110928-V11-09-page4.txt: [("'Where", 'Where')] PUR19110928-V11-09-page5.txt: [("'laid", 'laid')] PUR19110928-V11-09-page6.txt: [("'a", 'a')] PUR19110928-V11-09-page8.txt: [("'White", 'White')] PUR19111005-V11-10-page1.txt: [("'appointed", 'appointed')] PUR19111005-V11-10-page2.txt: [("'UNION", 'UNION'), ("'I", 'I'), ("'He", 'He')] PUR19111005-V11-10-page5.txt: [("'El", 'El')] PUR19111005-V11-10-page6.txt: [("'El", 'El'), ("'We", 'We')] PUR19111005-V11-10-page8.txt: [("'s", 's'), ("'Cal.", 'Cal.')] PUR19111012-V11-11-page1.txt: [("'the", 'the'), ("'Napa", 'Napa')] PUR19111012-V11-11-page2.txt: [("'PACIFIC", 'PACIFIC'), ("'suitable", 'suitable'), ("'and", 'and')] PUR19111012-V11-11-page3.txt: [("'evident", 'evident'), ("'to", 'to')] PUR19111012-V11-11-page4.txt: [("'clock.", 'clock.'), ("'MacPherson.", 'MacPherson.')] PUR19111012-V11-11-page6.txt: [("'cV.", 'cV.')] PUR19111019-V11-12-page1.txt: [("'Using", 'Using')] PUR19111019-V11-12-page4.txt: [("'come", 'come')] PUR19111019-V11-12-page5.txt: [("'We", 'We')] PUR19111019-V11-12-page6.txt: [("'Appropriate", 'Appropriate')] PUR19111019-V11-12-page7.txt: [("'shed", 'shed')] PUR19111026-V11-13-page2.txt: [("'are", 'are'), ("'it", 'it')] PUR19111026-V11-13-page3.txt: [("'s", 's')] PUR19111026-V11-13-page4.txt: [("'on", 'on')] PUR19111026-V11-13-page8.txt: [("'Patriarchs", 'Patriarchs')] PUR19111102-V11-14-page1.txt: [("'pitched", 'pitched')] PUR19111102-V11-14-page3.txt: [("'is", 'is'), ("'light", 'light')] PUR19111102-V11-14-page4.txt: [("'Buchanan", 'Buchanan')] PUR19111102-V11-14-page5.txt: [("'Neil", 'Neil')] PUR19111102-V11-14-page6.txt: [("''Pocket", 'Pocket')] PUR19111102-V11-14-page7.txt: [("'missionary", 'missionary')] PUR19111109-V11-15-page1.txt: [('\'send"Samples', 'send"Samples'), ("'of", 'of'), ("'tWO", 'tWO'), ("'kindi", 'kindi')] PUR19111109-V11-15-page3.txt: [("'Coming", 'Coming'), ("'Coming", 'Coming'), ("'Christ", 'Christ')] PUR19111109-V11-15-page4.txt: [("'UNION", 'UNION'), ("'I", 'I')] PUR19111109-V11-15-page5.txt: [("'one", 'one'), ("'Bible", 'Bible'), ("'RECORDER", 'RECORDER')] PUR19111109-V11-15-page7.txt: [('\'"', '"'), ("'.", '.')] PUR19111109-V11-15-page8.txt: [("'Hosanna", 'Hosanna')] PUR19111116-V11-16-page2.txt: [("'UNION", 'UNION'), ("'place", 'place')] PUR19111116-V11-16-page3.txt: [("'plans", 'plans')] PUR19111116-V11-16-page4.txt: [("'Salud", 'Salud'), ("'had", 'had'), ("'saw", 'saw'), ("'SOUTHERN", 'SOUTHERN')] PUR19111116-V11-16-page5.txt: [("''The", 'The'), ("'Steps", 'Steps'), ("'everywhere", 'everywhere')] PUR19111116-V11-16-page6.txt: [("'Year's", 'Years'), ("'rice", 'rice'), ("'preparing", 'preparing'), ("'Elder", 'Elder')] PUR19111116-V11-16-page8.txt: [("'s", 's')] PUR19111123-V11-17-page1.txt: [("'Mountain", 'Mountain'), ("'empty", 'empty')] PUR19111123-V11-17-page2.txt: [("'the", 'the')] PUR19111123-V11-17-page3.txt: [("'s", 's'), ("'to", 'to'), ("'success.", 'success.')] PUR19111123-V11-17-page6.txt: [("''Reward", 'Reward')] PUR19111123-V11-17-page7.txt: [("'Sabbath", 'Sabbath')] PUR19111130-V11-18-page1.txt: [("'provided", 'provided')] PUR19111130-V11-18-page3.txt: [("'in", 'in')] PUR19111130-V11-18-page6.txt: [("'UNION", 'UNION'), ("'see", 'see')] PUR19111130-V11-18-page7.txt: [("'Continued", 'Continued'), ("''Steps", 'Steps')] PUR19111130-V11-18-page8.txt: [("'s", 's')] PUR19111207-V11-19-page2.txt: [("''the", 'the'), ("'Fess", 'Fess'), ("'fine", 'fine'), ("'still", 'still'), ("'seven", 'seven')] PUR19111207-V11-19-page3.txt: [("'Attie", 'Attie'), ("'UNION", 'UNION')] PUR19111207-V11-19-page5.txt: [("'I's", 'Is'), ("'splain", 'splain'), ("'Yes", 'Yes'), ("'RECORDER", 'RECORDER'), ("'Philip", 'Philip')] PUR19111207-V11-19-page6.txt: [("'s", 's'), ("''But", 'But'), ("'UNION", 'UNION')] PUR19111214-V11-20-page1.txt: [("'Tis", 'Tis'), ("'s", 's'), ("'tis", 'tis'), ("'Tis", 'Tis'), ("'tis", 'tis')] PUR19111214-V11-20-page2.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis'), ("'Tis", 'Tis')] PUR19111214-V11-20-page4.txt: [("'I", 'I')] PUR19111214-V11-20-page5.txt: [("'school", 'school')] PUR19111214-V11-20-page6.txt: [("'UNION", 'UNION'), ("'Harvest", 'Harvest'), ("'As", 'As')] PUR19111214-V11-20-page7.txt: [("'What", 'What'), ("'This", 'This'), ("'That's", 'Thats'), ("'That's", 'Thats'), ("'I'm", 'Im'), ("'of", 'of'), ("''Emboldened", 'Emboldened')] PUR19111214-V11-20-page8.txt: [("'in", 'in')] PUR19111221-V11-21-page1.txt: [("'Oar", 'Oar'), ("'Leng", 'Leng')] PUR19111221-V11-21-page2.txt: [("'of", 'of')] PUR19111221-V11-21-page3.txt: [("'readings", 'readings'), ("'be", 'be'), ("''to", 'to')] PUR19111221-V11-21-page4.txt: [("''Heal", 'Heal')] PUR19111221-V11-21-page5.txt: [("'evening", 'evening')] PUR19111221-V11-21-page6.txt: [('\'"', '"')] PUR19111221-V11-21-page7.txt: [("'sorrows.", 'sorrows.'), ("'SaW.Pra", 'SaW.Pra'), ("'sat", 'sat'), ("'quietly", 'quietly'), ("'the", 'the')] PUR19111221-V11-21-page8.txt: [("'not", 'not')] PUR19111228-V11-22-page1.txt: [("'The", 'The'), ("'My", 'My'), ("'secure", 'secure')] PUR19111228-V11-22-page2.txt: [("'a", 'a')] PUR19111228-V11-22-page3.txt: [("'resolutions.", 'resolutions.'), ("'asked", 'asked'), ("'When'iagrairt", 'Wheniagrairt'), ("'iViSheS", 'iViSheS'), ("'My", 'My'), ('\'"', '"')] PUR19111228-V11-22-page4.txt: [("'did", 'did')] PUR19111228-V11-22-page5.txt: [("'.of", '.of'), ("''Very", 'Very'), ("'dress", 'dress'), ("''Who", 'Who'), ("''With", 'With'), ("''Are", 'Are'), ("'difference", 'difference'), ("'realizing", 'realizing'), ("'every", 'every')] PUR19111228-V11-22-page6.txt: [('\'go"', 'go"'), ("'rot", 'rot')] PUR19111228-V11-22-page7.txt: [("'we", 'we'), ("'dangerous.", 'dangerous.'), ("'Societyhas", 'Societyhas')] PUR19120104-V11-23-page1.txt: [("'Salisbury", 'Salisbury'), ("'Hox", 'Hox'), ("'tiered", 'tiered')] PUR19120104-V11-23-page3.txt: [("'to", 'to'), ("'CU", 'CU'), ("'Whose", 'Whose'), ("'s", 's'), ("'whose", 'whose')] PUR19120104-V11-23-page5.txt: [("'vire", 'vire')] PUR19120104-V11-23-page6.txt: [("'them.", 'them.')] PUR19120104-V11-23-page7.txt: [("'Workers", 'Workers')] PUR19120111-V11-24-page1.txt: [("'s", 's')] PUR19120111-V11-24-page3.txt: [("'no", 'no')] PUR19120111-V11-24-page5.txt: [("'regarding", 'regarding')] PUR19120111-V11-24-page6.txt: [("'PACIFIC", 'PACIFIC')] PUR19120111-V11-24-page7.txt: [("'brethren", 'brethren')] PUR19120111-V11-24-page8.txt: [('\'ully."', 'ully."'), ("'o", 'o')] PUR19120118-V11-25-page1.txt: [("'Patriarchs", 'Patriarchs'), ("'believes", 'believes')] PUR19120118-V11-25-page2.txt: [("'Family", 'Family')] PUR19120118-V11-25-page3.txt: [("'forward", 'forward')] PUR19120118-V11-25-page4.txt: [("'do", 'do')] PUR19120125-V11-26-page1.txt: [("'the", 'the'), ("'Welthat", 'Welthat'), ("'which", 'which'), ("'instruction", 'instruction')] PUR19120125-V11-26-page2.txt: [("''The", 'The')] PUR19120125-V11-26-page4.txt: [("''Many", 'Many'), ("'the", 'the'), ("'Had", 'Had'), ("'Won't", 'Wont'), ("'Pray", 'Pray'), ("'homes", 'homes'), ("'Great", 'Great'), ("'Bible", 'Bible')] PUR19120125-V11-26-page5.txt: [("'Great", 'Great'), ("'We", 'We'), ("'Indeed", 'Indeed'), ("'art", 'art'), ("'Cigarettes", 'Cigarettes')] PUR19120125-V11-26-page7.txt: [("'kitchen", 'kitchen'), ("'Sacramento", 'Sacramento')] PUR19120201-V11-27-page1.txt: [("'appointment", 'appointment'), ("'prominent", 'prominent'), ("'Kansas", 'Kansas')] PUR19120201-V11-27-page11.txt: [("'Might", 'Might'), ("'place", 'place')] PUR19120201-V11-27-page12.txt: [("'UNION", 'UNION'), ("''seen", 'seen'), ("'Wood", 'Wood')] PUR19120201-V11-27-page3.txt: [("'tor", 'tor'), ("'Cottrell", 'Cottrell')] PUR19120201-V11-27-page5.txt: [("''Great", 'Great'), ("'Signs", 'Signs'), ("'two", 'two'), ("'but", 'but'), ("'Seventh", 'Seventh'), ("'the", 'the'), ("'place", 'place')] PUR19120201-V11-27-page7.txt: [("'many", 'many'), ("'to", 'to'), ("'the", 'the')] PUR19120201-V11-27-page8.txt: [("'Bible", 'Bible')] PUR19120208-V11-28-page1.txt: [("'s", 's')] PUR19120208-V11-28-page2.txt: [("'Sir", 'Sir'), ("'all", 'all')] PUR19120208-V11-28-page3.txt: [("'Tis", 'Tis')] PUR19120208-V11-28-page6.txt: [("'clock", 'clock')] PUR19120215-V11-29-page1.txt: [("'Blaring", 'Blaring'), ("'P", 'P'), ("'S.", 'S.'), ("'of", 'of')] PUR19120215-V11-29-page11.txt: [("'located", 'located')] PUR19120215-V11-29-page12.txt: [("'fathers", 'fathers')] PUR19120215-V11-29-page14.txt: [("'Tis", 'Tis')] PUR19120215-V11-29-page15.txt: [("'We", 'We')] PUR19120215-V11-29-page5.txt: [("'to", 'to')] PUR19120215-V11-29-page6.txt: [("'The", 'The')] PUR19120215-V11-29-page7.txt: [("'Work.", 'Work.'), ("'What", 'What')] PUR19120222-V11-30-page1.txt: [("'s", 's')] PUR19120222-V11-30-page4.txt: [("'Every", 'Every'), ("'laborers", 'laborers')] PUR19120229-V11-31-page2.txt: [("'plenty", 'plenty')] PUR19120229-V11-31-page3.txt: [("'be", 'be')] PUR19120229-V11-31-page7.txt: [("'s", 's'), ("'Prof.", 'Prof.')] PUR19120229-V11-31-page8.txt: [("'for", 'for')] PUR19120307-V11-32-page1.txt: [("'s", 's'), ("'Back", 'Back'), ("'description", 'description'), ("'South", 'South')] PUR19120307-V11-32-page5.txt: [("'Steps", 'Steps')] PUR19120314-V11-33-page1.txt: [("'housethat", 'housethat'), ("'terror", 'terror'), ("'White", 'White')] PUR19120314-V11-33-page3.txt: [("'of", 'of'), ("'And", 'And'), ("'VI.", 'VI.'), ("'their", 'their')] PUR19120314-V11-33-page5.txt: [("'All", 'All'), ("'Christian", 'Christian')] PUR19120314-V11-33-page6.txt: [("'Steps", 'Steps'), ("'Christian", 'Christian')] PUR19120314-V11-33-page7.txt: [("'Seventh-day", 'Seventh-day'), ("''The", 'The'), ("'rests", 'rests')] PUR19120314-V11-33-page8.txt: [("'UNION", 'UNION')] PUR19120321-V11-34-page1.txt: [("'A", 'A'), ("'gospeP", 'gospeP')] PUR19120321-V11-34-page10.txt: [("'The", 'The')] PUR19120321-V11-34-page11.txt: [("'being", 'being'), ("'has", 'has')] PUR19120321-V11-34-page12.txt: [("'the", 'the')] PUR19120321-V11-34-page13.txt: [("'For", 'For'), ("'Willbe", 'Willbe'), ("'more", 'more')] PUR19120321-V11-34-page14.txt: [("'paying", 'paying')] PUR19120321-V11-34-page15.txt: [("'be", 'be'), ("'elitiusted.", 'elitiusted.')] PUR19120321-V11-34-page16.txt: [("'MA", 'MA')] PUR19120321-V11-34-page2.txt: [("'Not", 'Not')] PUR19120321-V11-34-page3.txt: [("'the", 'the'), ("'WhiCh", 'WhiCh')] PUR19120321-V11-34-page5.txt: [("'time", 'time'), ("'the", 'the'), ("'going", 'going')] PUR19120321-V11-34-page6.txt: [("'a", 'a'), ("'good", 'good'), ("'just", 'just'), ("'Who", 'Who'), ("'Assess", 'Assess'), ("'working", 'working'), ("'Wonder", 'Wonder')] PUR19120321-V11-34-page7.txt: [("'t", 't'), ("'against", 'against')] PUR19120321-V11-34-page8.txt: [("'the", 'the')] PUR19120321-V11-34-page9.txt: [("'to", 'to'), ("'was", 'was'), ("'don't", 'dont'), ("'too", 'too'), ("'there", 'there')] PUR19120328-V11-35-page1.txt: [("'of", 'of'), ("'His", 'His'), ("'qualified", 'qualified'), ("'them", 'them')] PUR19120328-V11-35-page3.txt: [("'They", 'They'), ("'to", 'to')] PUR19120328-V11-35-page4.txt: [("''My", 'My'), ("'s", 's'), ("'s", 's')] PUR19120328-V11-35-page5.txt: [("'t", 't'), ("'I", 'I'), ("'take", 'take'), ("'to", 'to'), ("'have", 'have'), ("'by", 'by'), ("'''that", 'that'), ("'to", 'to'), ("'of", 'of'), ("'His", 'His'), ("'by", 'by'), ("''Follow", 'Follow'), ("''Be", 'Be'), ("'part", 'part'), ("'OS", 'OS'), ("'Who", 'Who'), ("'the''Comforter", 'theComforter'), ("'one.", 'one.'), ("'as", 'as'), ("'The", 'The'), ("'UsalL'as", 'UsalLas'), ("'truth", 'truth')] PUR19120328-V11-35-page6.txt: [("'UNION", 'UNION'), ("'confirming", 'confirming')] PUR19120328-V11-35-page7.txt: [("'Well", 'Well')] PUR19120328-V11-35-page8.txt: [("'I", 'I'), ("'quick", 'quick'), ("'come", 'come')] PUR19120404-V11-36-page1.txt: [("'find", 'find'), ("'Pertant", 'Pertant')] PUR19120404-V11-36-page2.txt: [("'which", 'which'), ("'New", 'New')] PUR19120404-V11-36-page3.txt: [("'around", 'around'), ("'clean", 'clean'), ("'While", 'While'), ("'Then", 'Then'), ("'there", 'there')] PUR19120404-V11-36-page5.txt: [("''Any", 'Any'), ("'and.", 'and.')] PUR19120404-V11-36-page7.txt: [("'in", 'in'), ("'With", 'With')] PUR19120411-V11-37-page1.txt: [("'sermonready", 'sermonready'), ("'neath", 'neath')] PUR19120411-V11-37-page2.txt: [("''Well", 'Well')] PUR19120411-V11-37-page3.txt: [("'What", 'What')] PUR19120411-V11-37-page4.txt: [("'the", 'the'), ("'the", 'the'), ("'He", 'He'), ("'the", 'the'), ("'First", 'First')] PUR19120411-V11-37-page5.txt: [("'living", 'living'), ("'first", 'first'), ("'the", 'the'), ('\'No."', 'No."')] PUR19120418-V11-38-page1.txt: [("'J.", 'J.'), ("'vote", 'vote')] PUR19120418-V11-38-page10.txt: [("'and", 'and'), ("'The", 'The'), ("'so", 'so'), ("'one", 'one'), ("'or", 'or'), ("'blessings", 'blessings')] PUR19120418-V11-38-page11.txt: [("'so", 'so')] PUR19120418-V11-38-page12.txt: [("''Resolved", 'Resolved')] PUR19120418-V11-38-page13.txt: [("'.", '.'), ("'UNION", 'UNION')] PUR19120418-V11-38-page14.txt: [("'New", 'New'), ("'reform", 'reform')] PUR19120418-V11-38-page15.txt: [("'mild", 'mild'), ("'Union", 'Union'), ('\'Mrept"', 'Mrept"'), ("'who", 'who'), ("'UNION", 'UNION')] PUR19120418-V11-38-page18.txt: [("'work.", 'work.')] PUR19120418-V11-38-page2.txt: [("'when", 'when')] PUR19120418-V11-38-page6.txt: [("'union", 'union'), ("'the", 'the'), ("'be", 'be'), ("'CODAV", 'CODAV'), ("'s", 's')] PUR19120418-V11-38-page8.txt: [("'G.", 'G.'), ("'according", 'according')] PUR19120425-V11-39-page1.txt: [("'ar.iy", 'ar.iy'), ("'teachers", 'teachers')] PUR19120425-V11-39-page2.txt: [("'UNION", 'UNION'), ("'be", 'be'), ("'Meditate", 'Meditate'), ("'Whatsoever", 'Whatsoever'), ("'in", 'in')] PUR19120425-V11-39-page3.txt: [("'Sell", 'Sell'), ("'every", 'every'), ("''Testimonies", 'Testimonies'), ("''My", 'My'), ("'RECORDER", 'RECORDER')] PUR19120425-V11-39-page4.txt: [("'s", 's'), ("''entering", 'entering')] PUR19120425-V11-39-page6.txt: [("'churches", 'churches'), ("''In", 'In')] PUR19120502-V11-40-page2.txt: [("'means", 'means'), ("'the", 'the')] PUR19120502-V11-40-page4.txt: [("'A", 'A'), ("'How", 'How'), ("'Whom", 'Whom'), ("'This", 'This'), ("'apparent", 'apparent')] PUR19120502-V11-40-page7.txt: [("'It", 'It'), ("'How", 'How'), ("'Two", 'Two'), ("'Healing", 'Healing')] PUR19120502-V11-40-page8.txt: [("'s", 's')] PUR19120509-V11-41-page1.txt: [("'For", 'For')] PUR19120509-V11-41-page2.txt: [("'Sabbath", 'Sabbath')] PUR19120509-V11-41-page3.txt: [("'wet", 'wet')] PUR19120509-V11-41-page6.txt: [("''American", 'American')] PUR19120509-V11-41-page7.txt: [("'camp", 'camp'), ("''Our", 'Our'), ("'s", 's'), ("'served", 'served')] PUR19120516-V11-42-page2.txt: [("'UNION", 'UNION'), ("'Day", 'Day')] PUR19120516-V11-42-page3.txt: [("'Elder", 'Elder')] PUR19120516-V11-42-page4.txt: [("'UNION", 'UNION')] PUR19120516-V11-42-page6.txt: [("'Herein", 'Herein'), ("'mid", 'mid')] PUR19120516-V11-42-page7.txt: [("'Do", 'Do')] PUR19120523-V11-43-page3.txt: [("'Where", 'Where'), ("'I", 'I')] PUR19120523-V11-43-page5.txt: [("'Daniel", 'Daniel'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Pastor", 'Pastor'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Well", 'Well'), ("'s", 's')] PUR19120530-V11-44-page1.txt: [("'tis", 'tis'), ("'Tis", 'Tis')] PUR19120530-V11-44-page3.txt: [("'I", 'I'), ("'seventy-seven", 'seventy-seven'), ("'Manteca", 'Manteca')] PUR19120530-V11-44-page6.txt: [("'Coming", 'Coming'), ("'We", 'We')] PUR19120530-V11-44-page8.txt: [("'teaser", 'teaser'), ("'clock.", 'clock.'), ("'Glorious", 'Glorious'), ("'Last", 'Last')] PUR19120606-V11-45-page1.txt: [("''Christ", 'Christ')] PUR19120606-V11-45-page3.txt: [("'denomination", 'denomination'), ("'A.", 'A.')] PUR19120606-V11-45-page7.txt: [("'Bible", 'Bible')] PUR19120613-V11-46-page5.txt: [("'greatly", 'greatly'), ("'Tis", 'Tis')] PUR19120613-V11-46-page7.txt: [("'Value", 'Value'), ("'I", 'I'), ("'I", 'I'), ("'How", 'How'), ("'Listen", 'Listen'), ("'I", 'I'), ("'I", 'I')] PUR19120620-V11-47-page5.txt: [("'Brother", 'Brother'), ("'Concerning", 'Concerning')] PUR19120620-V11-47-page6.txt: [("'Erector", 'Erector'), ('\'liberal"', 'liberal"'), ("'Irs.", 'Irs.')] PUR19120627-V11-48-page2.txt: [("'s", 's')] PUR19120627-V11-48-page3.txt: [("'during", 'during')] PUR19120627-V11-48-page7.txt: [("'s", 's')] PUR19120704-V11-49-page1.txt: [("'has", 'has')] PUR19120704-V11-49-page10.txt: [("'the", 'the'), ("'Printing", 'Printing'), ("'Brethren", 'Brethren'), ("'Aubigne", 'Aubigne'), ("'To", 'To')] PUR19120704-V11-49-page11.txt: [("''Work", 'Work'), ("'afternoon", 'afternoon'), ("''Brightest", 'Brightest')] PUR19120704-V11-49-page4.txt: [("'s", 's'), ("'this", 'this')] PUR19120704-V11-49-page5.txt: [("'Unanimously", 'Unanimously')] PUR19120704-V11-49-page6.txt: [("'Work", 'Work')] PUR19120704-V11-49-page9.txt: [("'Object", 'Object'), ("'Great", 'Great'), ("'I", 'I'), ("'Yes", 'Yes')] PUR19120711-V11-50-page4.txt: [("'to", 'to')] PUR19120711-V11-50-page6.txt: [("'wherein", 'wherein')] PUR19120711-V11-50-page7.txt: [("'Home", 'Home'), ("'in", 'in')] PUR19120711-V11-50-page8.txt: [("'It", 'It')] PUR19120718-V11-51-page4.txt: [("'William", 'William'), ("'the", 'the'), ("'But", 'But')] PUR19120718-V11-51-page5.txt: [("'Questions", 'Questions'), ("'I", 'I')] PUR19120718-V11-51-page6.txt: [("'UNION", 'UNION')] PUR19120718-V11-51-page8.txt: [("'UNION", 'UNION'), ("'president", 'president')] PUR19120725-V11-52-page2.txt: [("'s", 's')] PUR19120725-V11-52-page3.txt: [("'Fff", 'Fff')] PUR19120725-V11-52-page4.txt: [("'Family", 'Family'), ("'higher", 'higher'), ("'s", 's')] PUR19120725-V11-52-page5.txt: [("'spare", 'spare')] PUR19120725-V11-52-page6.txt: [("'the", 'the'), ("'We", 'We'), ("'Patriarchs", 'Patriarchs'), ("'Northern.", 'Northern.')] PUR19120725-V11-52-page7.txt: [("'is", 'is'), ("'Its", 'Its'), ("'What", 'What')] PUR19120725-V11-52-page8.txt: [("'der", 'der'), ("'California", 'California'), ("'The", 'The'), ("'convenience", 'convenience'), ("'Floyd", 'Floyd'), ("'What", 'What'), ("'The", 'The'), ("'We", 'We')] PUR19120801-V12-01-page4.txt: [("'Yes", 'Yes'), ("'our", 'our'), ("'The", 'The'), ("'of", 'of')] PUR19120801-V12-01-page6.txt: [("'UNION", 'UNION')] PUR19120808-V12-02-page2.txt: [("''the", 'the')] PUR19120808-V12-02-page4.txt: [("'Lonely", 'Lonely'), ("'Patriarchs", 'Patriarchs'), ("'I", 'I'), ("'All", 'All')] PUR19120808-V12-02-page7.txt: [("'s", 's')] PUR19120815-V12-03-page3.txt: [("'na.udo", 'na.udo'), ("'ONION", 'ONION')] PUR19120822-V12-04-page2.txt: [("'Adventists", 'Adventists'), ("'of", 'of'), ("'this", 'this'), ("'Christian", 'Christian'), ("'The", 'The')] PUR19120822-V12-04-page3.txt: [("'God", 'God'), ("'Christ's", 'Christs')] PUR19120822-V12-04-page5.txt: [("'took", 'took')] PUR19120822-V12-04-page6.txt: [("'think", 'think'), ("'Controversy", 'Controversy'), ("'Great", 'Great')] PUR19120829-V12-05-page2.txt: [("'of", 'of'), ("'Present", 'Present'), ("'Is", 'Is')] PUR19120829-V12-05-page4.txt: [("'by", 'by')] PUR19120829-V12-05-page5.txt: [("'provide", 'provide'), ("'Gather", 'Gather'), ("'Educate", 'Educate')] PUR19120905-V12-06-page2.txt: [("'UNION", 'UNION')] PUR19120905-V12-06-page4.txt: [("''Dear", 'Dear'), ("'s", 's')] PUR19120905-V12-06-page5.txt: [("''run", 'run'), ("''hard", 'hard')] PUR19120905-V12-06-page6.txt: [("'ts", 'ts'), ("'ts", 'ts')] PUR19120912-V12-07-page3.txt: [("'being", 'being')] PUR19120912-V12-07-page4.txt: [("'industrial", 'industrial')] PUR19120912-V12-07-page6.txt: [("'UNION", 'UNION')] PUR19120912-V12-07-page8.txt: [("'UNION", 'UNION')] PUR19120919-V12-08-page11.txt: [("'Inasmuch", 'Inasmuch'), ("'ye", 'ye'), ("'Lift", 'Lift')] PUR19120919-V12-08-page3.txt: [("'Beautiful", 'Beautiful'), ("'s", 's')] PUR19120919-V12-08-page5.txt: [("'s", 's')] PUR19120919-V12-08-page6.txt: [("'Of", 'Of')] PUR19120919-V12-08-page7.txt: [("'speed", 'speed')] PUR19120926-V12-09-page2.txt: [("'Heralds", 'Heralds'), ("'Heralds", 'Heralds'), ("'is", 'is')] PUR19120926-V12-09-page3.txt: [("'pray", 'pray')] PUR19120926-V12-09-page4.txt: [("'of", 'of')] PUR19121003-V12-10-page2.txt: [("'the", 'the')] PUR19121003-V12-10-page4.txt: [("'UNION", 'UNION')] PUR19121003-V12-10-page5.txt: [("''Uncover", 'Uncover')] PUR19121003-V12-10-page6.txt: [("'be", 'be')] PUR19121010-V12-11-page1.txt: [("'and", 'and'), ("'Union", 'Union')] PUR19121010-V12-11-page4.txt: [("'constructive", 'constructive')] PUR19121010-V12-11-page5.txt: [("'Prospects", 'Prospects')] PUR19121017-V12-12-page1.txt: [("'New", 'New'), ("'Ninety-five", 'Ninety-five'), ("'or", 'or'), ("'Celtic", 'Celtic'), ("'Slavic", 'Slavic'), ("'Under", 'Under'), ("'garbage", 'garbage')] PUR19121017-V12-12-page2.txt: [("'With", 'With'), ("'If", 'If'), ("'to", 'to')] PUR19121017-V12-12-page4.txt: [("'to", 'to')] PUR19121017-V12-12-page5.txt: [("'Move", 'Move')] PUR19121017-V12-12-page6.txt: [("'our", 'our')] PUR19121024-V12-13-page1.txt: [("'baptism", 'baptism')] PUR19121024-V12-13-page2.txt: [("'United", 'United')] PUR19121024-V12-13-page3.txt: [("'suggested", 'suggested')] PUR19121024-V12-13-page5.txt: [("'the", 'the'), ("'Testimonies", 'Testimonies'), ("'One", 'One'), ("'A", 'A'), ("'Great", 'Great'), ("'s", 's'), ("'Xiainagbrdo", 'Xiainagbrdo')] PUR19121024-V12-13-page6.txt: [("'God", 'God'), ("'.God", '.God'), ("'Had", 'Had'), ("'Our", 'Our'), ("'When", 'When'), ("'Christ's", 'Christs'), ("'Christ's", 'Christs'), ("'Christ's", 'Christs'), ("'so", 'so'), ("'Christ's", 'Christs'), ("'Ministry", 'Ministry'), ("'Christ's", 'Christs')] PUR19121024-V12-13-page7.txt: [("''Daniel", 'Daniel'), ("'we", 'we'), ("'work", 'work'), ('\'the"', 'the"')] PUR19121031-V12-14-page1.txt: [("'Ave.", 'Ave.'), ("'A", 'A'), ("'ria", 'ria'), ("'well", 'well')] PUR19121031-V12-14-page2.txt: [("'part", 'part'), ("'the", 'the'), ("'Watchman", 'Watchman'), ("'brick", 'brick'), ("'the", 'the'), ("'represent", 'represent'), ("'Christ", 'Christ'), ("'apPearattractive", 'apPearattractive')] PUR19121031-V12-14-page3.txt: [("'They", 'They'), ("'their", 'their'), ("'teach", 'teach'), ("'Christ's", 'Christs'), ("'be", 'be'), ("''The", 'The'), ("'means", 'means'), ("'We", 'We'), ('\'Those"', 'Those"'), ("'are", 'are'), ("'has", 'has'), ("'to", 'to'), ("'work.", 'work.'), ("'Others.", 'Others.'), ("'s", 's'), ("'which", 'which'), ("'eduea.", 'eduea.'), ("'be", 'be'), ("'Wolirehe", 'Wolirehe'), ("'to.", 'to.')] PUR19121031-V12-14-page4.txt: [("'Object", 'Object'), ("'a", 'a')] PUR19121031-V12-14-page5.txt: [("'.", '.'), ("'the'money", 'themoney'), ("'these", 'these'), ("'returns.", 'returns.'), ("'in", 'in'), ('\'"ftvittigtv', '"ftvittigtv')] PUR19121031-V12-14-page7.txt: [("'Obtain'th", 'Obtainth'), ("''Making", 'Making'), ("''Our", 'Our')] PUR19121031-V12-14-page8.txt: [("'Neil", 'Neil'), ("'rough", 'rough')] PUR19121107-V12-15-page3.txt: [("''spot", 'spot')] PUR19121107-V12-15-page5.txt: [("'needed.", 'needed.')] PUR19121107-V12-15-page7.txt: [("'stove.", 'stove.'), ("'other", 'other')] PUR19121107-V12-15-page8.txt: [("'are", 'are')] PUR19121114-V12-16-page2.txt: [("'He", 'He')] PUR19121114-V12-16-page3.txt: [("'we", 'we'), ("'to", 'to')] PUR19121114-V12-16-page4.txt: [("''Bible", 'Bible'), ("'Object", 'Object')] PUR19121114-V12-16-page6.txt: [("'money", 'money'), ("'for", 'for')] PUR19121114-V12-16-page7.txt: [("'mile", 'mile'), ("'acres", 'acres'), ("'keep", 'keep')] PUR19121114-V12-16-page8.txt: [("'Be", 'Be'), ("'Behold", 'Behold')] PUR19121121-V12-17-page1.txt: [("''And", 'And'), ("''rest", 'rest'), ("'treasurer.", 'treasurer.'), ("'And", 'And')] PUR19121121-V12-17-page2.txt: [("'from", 'from'), ("'We", 'We'), ("'Live", 'Live'), ("'Go", 'Go'), ("'Go", 'Go'), ("'Go", 'Go')] PUR19121121-V12-17-page3.txt: [("'So", 'So'), ("'Twenty", 'Twenty'), ("'Half", 'Half'), ("'Almost", 'Almost'), ("'of", 'of'), ("'God", 'God'), ("'s", 's'), ("'Worth", 'Worth'), ("'Seventy", 'Seventy'), ("'A", 'A'), ("'Five", 'Five'), ("'Jack", 'Jack'), ("'No", 'No'), ("'I", 'I'), ("'Dear", 'Dear'), ("'My", 'My'), ("'Love", 'Love')] PUR19121121-V12-17-page5.txt: [("'urged.", 'urged.')] PUR19121121-V12-17-page6.txt: [("'and", 'and')] PUR19121121-V12-17-page7.txt: [("'Our", 'Our'), ("'It", 'It'), ("'Contemplating", 'Contemplating')] PUR19121128-V12-18-page1.txt: [("'Tain't", 'Taint'), ("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'an", 'an')] PUR19121128-V12-18-page2.txt: [("'School", 'School')] PUR19121128-V12-18-page3.txt: [("'to", 'to')] PUR19121128-V12-18-page5.txt: [("'s", 's'), ("''La", 'La')] PUR19121128-V12-18-page7.txt: [("'thank", 'thank')] PUR19121205-V12-19-page1.txt: [("'throne", 'throne'), ("'a", 'a')] PUR19121205-V12-19-page3.txt: [("'PACIEIC", 'PACIEIC'), ("'RECO", 'RECO')] PUR19121205-V12-19-page5.txt: [("'s", 's'), ("'s", 's')] PUR19121205-V12-19-page6.txt: [("'Health", 'Health'), ("'California", 'California')] PUR19121205-V12-19-page7.txt: [("'Bible", 'Bible'), ("'Steps", 'Steps')] PUR19121212-V12-20-page1.txt: [("'California", 'California'), ("'to", 'to'), ("'and", 'and'), ("'for", 'for'), ("'the", 'the')] PUR19121212-V12-20-page2.txt: [("'provided", 'provided')] PUR19121212-V12-20-page3.txt: [("'McClure", 'McClure'), ("'us", 'us'), ("'few", 'few')] PUR19121212-V12-20-page4.txt: [("'Christ's", 'Christs'), ("'Is", 'Is'), ("'Object", 'Object'), ("'Object", 'Object'), ("'Steps", 'Steps'), ("'No", 'No')] PUR19121212-V12-20-page5.txt: [("'to", 'to'), ("'Sister", 'Sister')] PUR19121212-V12-20-page7.txt: [("'this", 'this')] PUR19121212-V12-20-page8.txt: [("'UNION", 'UNION'), ("'four", 'four')] PUR19121219-V12-21-page3.txt: [("'Sited", 'Sited'), ("'Union", 'Union')] PUR19121219-V12-21-page4.txt: [("'of", 'of'), ("'Holy", 'Holy'), ("'have", 'have')] PUR19121219-V12-21-page6.txt: [("'all", 'all'), ("'breaking", 'breaking')] PUR19121219-V12-21-page7.txt: [("''the", 'the')] PUR19121226-V12-22-page1.txt: [("'Then", 'Then'), ("'Union", 'Union'), ("'Xtend", 'Xtend')] PUR19121226-V12-22-page3.txt: [("''Our", 'Our'), ("'s", 's')] PUR19121226-V12-22-page4.txt: [("'clock", 'clock')] PUR19121226-V12-22-page5.txt: [("'UNION", 'UNION'), ("''Only", 'Only'), ("'California", 'California'), ("'Utah", 'Utah'), ("'Arizona", 'Arizona'), ("'Two", 'Two'), ("'Two", 'Two')] PUR19121226-V12-22-page7.txt: [("'nai", 'nai'), ("'rith.", 'rith.')] PUR19121226-V12-22-page8.txt: [("'of", 'of')] PUR19130102-V12-23-page1.txt: [("''lovers", 'lovers')] PUR19130102-V12-23-page2.txt: [("'and", 'and'), ("'sink", 'sink'), ("'sink", 'sink')] PUR19130102-V12-23-page6.txt: [('\'me."', 'me."'), ("'must", 'must')] PUR19130102-V12-23-page8.txt: [("'clock", 'clock')] PUR19130109-V12-24-page1.txt: [("'the", 'the')] PUR19130109-V12-24-page2.txt: [("'s", 's')] PUR19130109-V12-24-page3.txt: [("'order", 'order'), ("'deidre", 'deidre'), ("'Work", 'Work'), ("'Wedish", 'Wedish'), ("'in", 'in'), ("'small", 'small')] PUR19130109-V12-24-page4.txt: [("'new", 'new')] PUR19130109-V12-24-page5.txt: [("'Sabbath", 'Sabbath'), ("'where", 'where'), ("'What", 'What'), ("'I", 'I'), ("'I", 'I'), ("'but", 'but'), ("'that", 'that'), ("'feel", 'feel')] PUR19130109-V12-24-page7.txt: [("'Daniel", 'Daniel'), ("'I", 'I'), ("'I", 'I')] PUR19130116-V12-25-page1.txt: [("'to", 'to'), ("'together", 'together'), ("'the", 'the'), ("'not", 'not'), ("'as", 'as')] PUR19130116-V12-25-page2.txt: [("'California", 'California')] PUR19130116-V12-25-page3.txt: [("'subsequent", 'subsequent')] PUR19130116-V12-25-page4.txt: [("'from", 'from')] PUR19130116-V12-25-page5.txt: [("'Value", 'Value')] PUR19130123-V12-26-page1.txt: [("'and", 'and')] PUR19130123-V12-26-page3.txt: [("'God.", 'God.'), ("'you", 'you')] PUR19130123-V12-26-page4.txt: [("'the", 'the'), ("'Zt", 'Zt'), ("'our", 'our'), ("'normal", 'normal')] PUR19130123-V12-26-page5.txt: [("'work", 'work'), ("'wire", 'wire')] PUR19130123-V12-26-page7.txt: [("'fulnes's", 'fulness')] PUR19130130-V12-27-page1.txt: [("'The", 'The'), ("'the", 'the'), ("'association", 'association')] PUR19130130-V12-27-page10.txt: [("'Pressed", 'Pressed'), ("'books", 'books')] PUR19130130-V12-27-page11.txt: [("'Patriarchs", 'Patriarchs'), ("'Great", 'Great'), ("'proVidetl", 'proVidetl')] PUR19130130-V12-27-page12.txt: [("'are", 'are')] PUR19130130-V12-27-page2.txt: [("'Hitherto", 'Hitherto'), ("'He", 'He')] PUR19130130-V12-27-page3.txt: [("'events", 'events'), ("'Patriarchs", 'Patriarchs'), ("'Great", 'Great')] PUR19130130-V12-27-page4.txt: [("'UNION", 'UNION'), ("'like", 'like'), ("'Union", 'Union')] PUR19130130-V12-27-page5.txt: [("'conven", 'conven')] PUR19130130-V12-27-page7.txt: [("''This", 'This')] PUR19130130-V12-27-page8.txt: [("'anin", 'anin'), ("'report.", 'report.'), ("'as", 'as'), ("'in", 'in'), ("'the", 'the')] PUR19130130-V12-27-page9.txt: [("'and", 'and'), ("'Canadian", 'Canadian'), ("'and", 'and'), ("'morning", 'morning')] PUR19130206-V12-28-page1.txt: [("'done", 'done'), ("'rePresclittutiot", 'rePresclittutiot')] PUR19130206-V12-28-page3.txt: [("'to", 'to')] PUR19130206-V12-28-page4.txt: [("'s", 's')] PUR19130206-V12-28-page5.txt: [("'of", 'of'), ("'dolibileas", 'dolibileas')] PUR19130206-V12-28-page7.txt: [("'No", 'No'), ("'in", 'in'), ('\'"daughter', '"daughter'), ("'message", 'message')] PUR19130213-V12-29-page1.txt: [("'Blue", 'Blue')] PUR19130213-V12-29-page2.txt: [("'church", 'church'), ("'developing.", 'developing.'), ("'especially", 'especially')] PUR19130213-V12-29-page5.txt: [("'to", 'to')] PUR19130213-V12-29-page6.txt: [("'ONION", 'ONION')] PUR19130220-V12-30-page2.txt: [("'Abbey's", 'Abbeys')] PUR19130220-V12-30-page3.txt: [("'Christ's", 'Christs'), ("'studying", 'studying'), ("'following", 'following')] PUR19130220-V12-30-page4.txt: [("''He", 'He')] PUR19130220-V12-30-page5.txt: [("'Practical", 'Practical'), ("'Great", 'Great'), ("'Bible", 'Bible'), ("'Great", 'Great'), ("'gates", 'gates')] PUR19130227-V12-31-page1.txt: [("'and", 'and'), ("'a", 'a'), ("'Twas", 'Twas'), ("'twas", 'twas'), ("'s", 's')] PUR19130227-V12-31-page2.txt: [("'only", 'only')] PUR19130227-V12-31-page5.txt: [("'DEB", 'DEB'), ("'our", 'our')] PUR19130227-V12-31-page7.txt: [("'Frisco.", 'Frisco.'), ("'s'soCieties'in", 'ssoCietiesin'), ("'UNION", 'UNION')] PUR19130306-V12-32-page11.txt: [("'usual", 'usual'), ("'Palm", 'Palm')] PUR19130306-V12-32-page12.txt: [("'Protection", 'Protection')] PUR19130306-V12-32-page13.txt: [("'ger", 'ger'), ("'Box", 'Box'), ("'ecrrOin", 'ecrrOin')] PUR19130306-V12-32-page14.txt: [("'Protection", 'Protection')] PUR19130306-V12-32-page5.txt: [("'ecti", 'ecti'), ("'s", 's')] PUR19130306-V12-32-page6.txt: [("'s", 's')] PUR19130306-V12-32-page7.txt: [("'bring", 'bring'), ("'Of", 'Of')] PUR19130306-V12-32-page9.txt: [("'Canvassers", 'Canvassers'), ("'L'OM", 'LOM'), ("'grYe", 'grYe'), ("'the", 'the')] PUR19130313-V12-33-page1.txt: [("'abSent", 'abSent'), ("'We", 'We')] PUR19130313-V12-33-page2.txt: [("'and", 'and'), ("'s", 's')] PUR19130313-V12-33-page3.txt: [("'s", 's'), ("'points", 'points'), ("'of", 'of'), ("'these", 'these'), ("''Five", 'Five'), ("'to", 'to'), ("'Was", 'Was'), ("''What", 'What'), ("'DE", 'DE')] PUR19130313-V12-33-page4.txt: [("'s", 's'), ("'Proposed", 'Proposed'), ("'Great", 'Great'), ("'Thy", 'Thy'), ("'In", 'In'), ("'And", 'And'), ("'Daniel", 'Daniel'), ("'Plans", 'Plans'), ("'to", 'to'), ("'This", 'This')] PUR19130313-V12-33-page5.txt: [("'Work", 'Work'), ("'partial", 'partial'), ("'ManY'of", 'ManYof'), ("'the", 'the'), ("'is", 'is')] PUR19130313-V12-33-page7.txt: [("'Made", 'Made'), ("'and'Brother", 'andBrother'), ("'IttoWleilgte", 'IttoWleilgte'), ("'Chat", 'Chat'), ("'wisheS", 'wisheS')] PUR19130320-V12-34-page1.txt: [("'does", 'does'), ("'a", 'a')] PUR19130320-V12-34-page10.txt: [("''Bible", 'Bible')] PUR19130320-V12-34-page11.txt: [("'Hie", 'Hie')] PUR19130320-V12-34-page13.txt: [('\'bride"', 'bride"')] PUR19130320-V12-34-page14.txt: [("'Freefor-all", 'Freefor-all'), ("'Thoughts", 'Thoughts')] PUR19130320-V12-34-page15.txt: [("'WORK", 'WORK')] PUR19130320-V12-34-page5.txt: [("'llitietettle", 'llitietettle'), ("'pang", 'pang'), ("'Adventists", 'Adventists')] PUR19130320-V12-34-page6.txt: [("'way", 'way')] PUR19130320-V12-34-page7.txt: [("'two", 'two')] PUR19130320-V12-34-page9.txt: [("'Then", 'Then'), ("'Eno", 'Eno')] PUR19130327-V12-35-page1.txt: [("'appointed", 'appointed'), ("'necessary.", 'necessary.'), ("'present", 'present'), ("'fleet", 'fleet')] PUR19130327-V12-35-page2.txt: [("'during", 'during')] PUR19130327-V12-35-page3.txt: [("'of", 'of')] PUR19130327-V12-35-page5.txt: [("'in", 'in'), ("'encouraged", 'encouraged'), ("'of", 'of')] PUR19130327-V12-35-page6.txt: [("'Coining", 'Coining'), ("'Best", 'Best'), ("'Bible", 'Bible')] PUR19130327-V12-35-page7.txt: [("'C", 'C'), ("'the", 'the')] PUR19130327-V12-35-page8.txt: [("'as", 'as')] PUR19130403-V12-36-page2.txt: [("'UNION", 'UNION'), ("'that", 'that')] PUR19130403-V12-36-page3.txt: [("'ought", 'ought'), ("'be", 'be')] PUR19130403-V12-36-page5.txt: [("'Individual", 'Individual')] PUR19130403-V12-36-page7.txt: [("'They", 'They')] PUR19130410-V12-37-page1.txt: [("''Let", 'Let'), ("'One", 'One'), ('\'loved\'"', 'loved"'), ("'kingdOtti", 'kingdOtti'), ("'let", 'let'), ("'first", 'first')] PUR19130410-V12-37-page2.txt: [("'Daniel", 'Daniel')] PUR19130410-V12-37-page5.txt: [("'Tis", 'Tis'), ("'Patriarchs", 'Patriarchs')] PUR19130410-V12-37-page7.txt: [("'of", 'of')] PUR19130417-V12-38-page1.txt: [("'To", 'To'), ("'Sunday", 'Sunday'), ("'twenty-four", 'twenty-four'), ("'works", 'works'), ("'siek", 'siek')] PUR19130417-V12-38-page2.txt: [("'works", 'works'), ("'twenty", 'twenty'), ("'An", 'An'), ("'fearfully", 'fearfully'), ("'a", 'a')] PUR19130417-V12-38-page3.txt: [("'Lectures", 'Lectures'), ("'Hygsenic", 'Hygsenic')] PUR19130417-V12-38-page5.txt: [("''All", 'All')] PUR19130417-V12-38-page6.txt: [("'Well", 'Well'), ("'But", 'But')] PUR19130417-V12-38-page7.txt: [("'they", 'they')] PUR19130424-V12-39-page2.txt: [("'Bring", 'Bring')] PUR19130424-V12-39-page5.txt: [("'The", 'The'), ("'of", 'of'), ("'present", 'present')] PUR19130501-V12-40-page1.txt: [("'protection", 'protection'), ("'Prominent", 'Prominent'), ("'Only", 'Only'), ("'t", 't')] PUR19130501-V12-40-page2.txt: [("'All", 'All')] PUR19130501-V12-40-page4.txt: [("'to", 'to')] PUR19130501-V12-40-page5.txt: [("''Ministry", 'Ministry')] PUR19130501-V12-40-page6.txt: [("'the", 'the'), ("'to", 'to')] PUR19130508-V12-41-page1.txt: [("'ask", 'ask'), ("'Bible", 'Bible')] PUR19130508-V12-41-page2.txt: [("'Bible", 'Bible')] PUR19130508-V12-41-page4.txt: [("'Tis", 'Tis')] PUR19130515-V12-42-page1.txt: [("'I", 'I'), ("'t", 't'), ("'Dos", 'Dos'), ("'PO", 'PO'), ("'.t.", '.t.')] PUR19130522-V12-43-page1.txt: [("'Mr.", 'Mr.')] PUR19130522-V12-43-page8.txt: [("'work", 'work')] PUR19130529-V12-44-page1.txt: [("'s", 's'), ("'ts.", 'ts.')] PUR19130529-V12-44-page2.txt: [("'Kan.", 'Kan.')] PUR19130529-V12-44-page3.txt: [("'Miss", 'Miss'), ("'death.", 'death.')] PUR19130529-V12-44-page4.txt: [("'season", 'season')] PUR19130529-V12-44-page5.txt: [("'s", 's')] PUR19130529-V12-44-page6.txt: [("'Hours", 'Hours'), ("'Hours", 'Hours')] PUR19130529-V12-44-page7.txt: [("'DER", 'DER')] PUR19130529-V12-44-page8.txt: [("'it", 'it')] PUR19130605-V12-45-page5.txt: [("'first", 'first')] PUR19130605-V12-45-page6.txt: [("'Some", 'Some')] PUR19130612-V12-46-page1.txt: [("'neath", 'neath')] PUR19130612-V12-46-page2.txt: [("'the", 'the'), ("'new", 'new'), ("'Avenida", 'Avenida'), ("'s", 's')] PUR19130612-V12-46-page3.txt: [("'returning", 'returning')] PUR19130612-V12-46-page7.txt: [("'PACIFIC", 'PACIFIC'), ("'It", 'It')] PUR19130619-V12-47-page5.txt: [("'Practical", 'Practical'), ("'New", 'New')] PUR19130626-V12-48-page1.txt: [("'grievous", 'grievous'), ("'The", 'The')] PUR19130626-V12-48-page5.txt: [("'to", 'to'), ("'readers.", 'readers.')] PUR19130626-V12-48-page6.txt: [("'to", 'to'), ("'No", 'No'), ("'Ords.", 'Ords.')] PUR19130626-V12-48-page7.txt: [("'Lord's", 'Lords'), ("'Do", 'Do'), ("'mong", 'mong'), ("'or", 'or'), ("'ashamed", 'ashamed')] PUR19130626-V12-48-page8.txt: [("'Taggart", 'Taggart')] PUR19130703-V12-49-page1.txt: [("'opportunity", 'opportunity')] PUR19130703-V12-49-page4.txt: [("'twill", 'twill')] PUR19130703-V12-49-page5.txt: [("'ministers", 'ministers'), ("'When", 'When'), ("'except", 'except'), ("'Thomason", 'Thomason')] PUR19130703-V12-49-page6.txt: [("'Well", 'Well')] PUR19130703-V12-49-page8.txt: [("'s", 's'), ("'A.", 'A.')] PUR19130710-V12-50-page3.txt: [("'s", 's'), ("'We", 'We')] PUR19130717-V12-51-page5.txt: [("''Hymns", 'Hymns'), ("'resolution.", 'resolution.')] PUR19130717-V12-51-page7.txt: [("'y", 'y')] PUR19130717-V12-51-page8.txt: [("'ant.", 'ant.')] PUR19130724-V12-52-page1.txt: [("'Of", 'Of')] PUR19130724-V12-52-page2.txt: [("'let", 'let'), ("'on", 'on'), ("'Matthew", 'Matthew'), ("'What", 'What'), ("'Good", 'Good')] PUR19130724-V12-52-page3.txt: [("'Very", 'Very'), ("'All", 'All'), ("'If", 'If'), ("'It", 'It'), ("'I", 'I'), ("'You", 'You'), ("'Great", 'Great'), ("''Let", 'Let')] PUR19130724-V12-52-page4.txt: [("'See", 'See'), ("'cos", 'cos'), ("'em.", 'em.'), ("'May", 'May')] PUR19130731-V12-53-page11.txt: [("'s", 's')] PUR19130731-V12-53-page4.txt: [("'Litt", 'Litt'), ("'q.z", 'q.z'), ("'c", 'c')] PUR19130731-V12-53-page6.txt: [("'a", 'a'), ("'the", 'the'), ("'I", 'I')] PUR19130731-V12-53-page7.txt: [("'Foul", 'Foul'), ("'School", 'School')] PUR19130807-V13-01-page2.txt: [("'twill", 'twill')] PUR19130807-V13-01-page5.txt: [("'down", 'down'), ("'a", 'a')] PUR19130814-V13-02-page1.txt: [("'Union", 'Union')] PUR19130814-V13-02-page2.txt: [("'to", 'to')] PUR19130814-V13-02-page4.txt: [("'s", 's'), ("'Twill", 'Twill')] PUR19130814-V13-02-page5.txt: [("''He", 'He'), ("''Shall", 'Shall')] PUR19130814-V13-02-page6.txt: [("'home", 'home')] PUR19130814-V13-02-page8.txt: [("'s", 's'), ("'s", 's'), ("'s", 's')] PUR19130821-V13-03-page1.txt: [("'events", 'events'), ("'s", 's'), ("'freighted", 'freighted')] PUR19130821-V13-03-page11.txt: [("'will", 'will'), ("'Claude", 'Claude')] PUR19130821-V13-03-page12.txt: [("''As", 'As')] PUR19130821-V13-03-page2.txt: [("'been", 'been')] PUR19130821-V13-03-page3.txt: [("'His", 'His'), ("'the", 'the')] PUR19130821-V13-03-page5.txt: [("'requisite", 'requisite'), ('\'\'R"DEIt', 'R"DEIt'), ("'.", '.')] PUR19130821-V13-03-page8.txt: [("'UNION", 'UNION'), ("'and", 'and')] PUR19130828-V13-04-page1.txt: [("'Union", 'Union')] PUR19130828-V13-04-page2.txt: [("'American", 'American'), ("'Attention", 'Attention'), ("'Patriarchs", 'Patriarchs'), ("'For", 'For')] PUR19130828-V13-04-page4.txt: [("'UNION", 'UNION'), ("'Proclaim", 'Proclaim'), ("'And", 'And'), ("'Now", 'Now'), ("'Congress", 'Congress'), ("'The", 'The'), ("'I", 'I')] PUR19130828-V13-04-page5.txt: [("'What", 'What'), ("'I", 'I')] PUR19130828-V13-04-page7.txt: [("'students", 'students'), ("'UNION", 'UNION')] PUR19130828-V13-04-page8.txt: [("'s", 's')] PUR19130904-V13-05-page1.txt: [("'brethren", 'brethren'), ("'sisters", 'sisters'), ("'ask", 'ask'), ("'As", 'As'), ("'commodions", 'commodions')] PUR19130904-V13-05-page3.txt: [("'To", 'To'), ("'scholarship", 'scholarship'), ("'is", 'is'), ("'Utah", 'Utah')] PUR19130904-V13-05-page5.txt: [("'UNION", 'UNION'), ("'tifd", 'tifd')] PUR19130904-V13-05-page7.txt: [("'UNION", 'UNION'), ("''July", 'July'), ("''Bright", 'Bright'), ("'to", 'to'), ("''God", 'God')] PUR19130911-V13-06-page1.txt: [("'Another", 'Another')] PUR19130911-V13-06-page3.txt: [("'to", 'to'), ("'s", 's')] PUR19130911-V13-06-page4.txt: [("'Great", 'Great'), ("'spent", 'spent')] PUR19130911-V13-06-page5.txt: [("'young", 'young'), ("'to", 'to'), ("'Signs.", 'Signs.')] PUR19130911-V13-06-page7.txt: [("'s", 's')] PUR19130911-V13-06-page8.txt: [("'of", 'of'), ("'splendid", 'splendid')] PUR19130918-V13-07-page3.txt: [("'brief", 'brief'), ("'and", 'and')] PUR19130918-V13-07-page4.txt: [("'Steps", 'Steps')] PUR19130918-V13-07-page5.txt: [("'the", 'the')] PUR19130918-V13-07-page7.txt: [("'Patriarchs", 'Patriarchs'), ("'Home", 'Home')] PUR19130925-V13-08-page1.txt: [("'Seine", 'Seine')] PUR19130925-V13-08-page6.txt: [("'and", 'and'), ("''Gospel", 'Gospel'), ("''House", 'House'), ("''Our", 'Our'), ("''Best", 'Best'), ("''Little", 'Little')] PUR19131002-V13-09-page5.txt: [("'s", 's'), ("'What's", 'Whats'), ("'Why", 'Why'), ("'The", 'The'), ("''This", 'This'), ("'If", 'If'), ("'people", 'people'), ("'The", 'The')] PUR19131002-V13-09-page6.txt: [("'UNION", 'UNION')] PUR19131009-V13-10-page1.txt: [("'compare", 'compare'), ("'Can", 'Can')] PUR19131009-V13-10-page2.txt: [("''Along", 'Along')] PUR19131016-V13-11-page1.txt: [("'Chriatian", 'Chriatian')] PUR19131016-V13-11-page3.txt: [("'asking", 'asking')] PUR19131016-V13-11-page4.txt: [("'er", 'er'), ("'Whereas", 'Whereas'), ("'Whereas", 'Whereas'), ("'Whereas", 'Whereas'), ("'Resolved", 'Resolved'), ("'Resolved", 'Resolved')] PUR19131016-V13-11-page7.txt: [("''Here", 'Here')] PUR19131016-V13-11-page8.txt: [("'Waldenses", 'Waldenses')] PUR19131023-V13-12-page1.txt: [("'Whom", 'Whom'), ("'We", 'We'), ("'could", 'could')] PUR19131023-V13-12-page3.txt: [("'Verily", 'Verily')] PUR19131023-V13-12-page4.txt: [("'school", 'school'), ("'Why", 'Why')] PUR19131023-V13-12-page5.txt: [("'not", 'not'), ("'s", 's')] PUR19131023-V13-12-page6.txt: [("'l", 'l')] PUR19131023-V13-12-page7.txt: [("'for", 'for')] PUR19131030-V13-13-page1.txt: [("'s", 's')] PUR19131030-V13-13-page5.txt: [("'Thank", 'Thank'), ("'Do", 'Do'), ("'If", 'If')] PUR19131030-V13-13-page7.txt: [("'Desire", 'Desire'), ("'Origin", 'Origin')] PUR19131030-V13-13-page8.txt: [("'UNION", 'UNION'), ("'be", 'be'), ("'California", 'California')] PUR19131106-V13-14-page1.txt: [("'of", 'of')] PUR19131106-V13-14-page3.txt: [("'Practical", 'Practical')] PUR19131106-V13-14-page4.txt: [("''Please", 'Please')] PUR19131113-V13-15-page1.txt: [("'Twill", 'Twill'), ("'Twill", 'Twill'), ("'.c.", '.c.'), ("'mentioned", 'mentioned')] PUR19131113-V13-15-page6.txt: [("'Now", 'Now'), ("'Now", 'Now'), ("'these", 'these')] PUR19131113-V13-15-page7.txt: [("'Continents", 'Continents')] PUR19131120-V13-16-page1.txt: [("'people", 'people'), ("'hope.", 'hope.')] PUR19131120-V13-16-page6.txt: [("'Take", 'Take')] PUR19131127-V13-17-page1.txt: [("'Tis", 'Tis'), ("'tis", 'tis')] PUR19131127-V13-17-page4.txt: [("'Who", 'Who')] PUR19131127-V13-17-page5.txt: [("'might", 'might'), ("'the", 'the'), ("'the", 'the'), ("'the", 'the')] PUR19131127-V13-17-page6.txt: [("'Great", 'Great')] PUR19131127-V13-17-page8.txt: [("'This", 'This')] PUR19131204-V13-18-page1.txt: [("'not", 'not')] PUR19131204-V13-18-page2.txt: [("'the", 'the')] PUR19131204-V13-18-page3.txt: [("'we", 'we')] PUR19131204-V13-18-page5.txt: [("'upon", 'upon'), ("'is", 'is'), ("'the", 'the')] PUR19131204-V13-18-page7.txt: [("'of", 'of'), ("'buyer's", 'buyers'), ("'Tide", 'Tide'), ("'Coll", 'Coll'), ("'C.", 'C.')] PUR19131211-V13-19-page1.txt: [("'.''iOnd", '.iOnd'), ("'Of", 'Of'), ("'may", 'may'), ('\'Much."', 'Much."')] PUR19131211-V13-19-page2.txt: [("'Shall", 'Shall'), ("'and", 'and'), ("'Well", 'Well'), ("'we", 'we'), ("'When", 'When'), ("'that", 'that'), ("'was", 'was'), ("'In", 'In'), ("'I", 'I'), ("'Yes", 'Yes'), ("'and", 'and')] PUR19131211-V13-19-page3.txt: [("'deny", 'deny'), ("'attending.", 'attending.'), ("'kind", 'kind'), ("'father", 'father'), ("'M.", 'M.'), ("'Paiadena", 'Paiadena')] PUR19131211-V13-19-page5.txt: [("'church.", 'church.'), ("'Our", 'Our'), ("'field", 'field'), ("'end", 'end'), ("'route", 'route')] PUR19131211-V13-19-page7.txt: [("'gra", 'gra')] PUR19131218-V13-20-page1.txt: [("'s", 's')] PUR19131218-V13-20-page2.txt: [("'The", 'The'), ("'the", 'the')] PUR19131218-V13-20-page4.txt: [("'I", 'I')] PUR19131218-V13-20-page5.txt: [("'lives", 'lives')] PUR19131218-V13-20-page8.txt: [("'Daniel", 'Daniel'), ("'His", 'His'), ("'Revelation", 'Revelation')] PUR19131225-V13-21-page2.txt: [("'and", 'and')] PUR19131225-V13-21-page3.txt: [("'heart", 'heart')] PUR19131225-V13-21-page8.txt: [("'And", 'And')] PUR19140101-V13-22-page1.txt: [("'Here", 'Here'), ("'When", 'When')] PUR19140101-V13-22-page5.txt: [("'The", 'The')] PUR19140108-V13-23-page2.txt: [("'make", 'make')] PUR19140108-V13-23-page3.txt: [("'double", 'double')] PUR19140108-V13-23-page6.txt: [("'black", 'black'), ("'H.", 'H.')] PUR19140108-V13-23-page7.txt: [("'ORNIA", 'ORNIA'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Best", 'Best')] PUR19140115-V13-24-page1.txt: [("'witness", 'witness'), ("'Word's", 'Words')] PUR19140115-V13-24-page3.txt: [("'I", 'I'), ("'and", 'and')] PUR19140115-V13-24-page4.txt: [('\'people."', 'people."')] PUR19140115-V13-24-page5.txt: [("'schools", 'schools'), ("'present.", 'present.')] PUR19140115-V13-24-page8.txt: [("'neath", 'neath'), ("'Be", 'Be')] PUR19140122-V13-25-page1.txt: [("'Let", 'Let'), ("'te'i", 'tei'), ("'begsOf", 'begsOf'), ("'Were", 'Were'), ("'The", 'The'), ("'the", 'the')] PUR19140122-V13-25-page3.txt: [("'.", '.')] PUR19140122-V13-25-page5.txt: [("'What", 'What'), ("'d", 'd')] PUR19140122-V13-25-page7.txt: [("'I", 'I'), ("'I", 'I'), ("'Desire", 'Desire'), ("'Steps", 'Steps'), ("'Jesus", 'Jesus'), ("'noble", 'noble'), ("'nitiCh", 'nitiCh'), ("'be", 'be'), ("'ha's", 'has'), ("'it", 'it')] PUR19140122-V13-25-page8.txt: [("'church", 'church'), ("'this", 'this')] PUR19140129-V13-26-page1.txt: [("'our", 'our')] PUR19140129-V13-26-page11.txt: [("'your", 'your')] PUR19140129-V13-26-page3.txt: [("'recognised", 'recognised')] PUR19140129-V13-26-page7.txt: [("'different", 'different')] PUR19140129-V13-26-page8.txt: [("'practically", 'practically')] PUR19140129-V13-26-page9.txt: [("''Steps", 'Steps')] PUR19140205-V13-27-page1.txt: [("'church", 'church')] PUR19140205-V13-27-page3.txt: [("'of", 'of')] PUR19140205-V13-27-page5.txt: [("'This", 'This')] PUR19140205-V13-27-page6.txt: [("'white", 'white'), ("'Daniel", 'Daniel')] PUR19140212-V13-28-page1.txt: [("'desperate", 'desperate')] PUR19140212-V13-28-page3.txt: [("'Every", 'Every')] PUR19140219-V13-29-page6.txt: [("'no", 'no')] PUR19140226-V13-30-page3.txt: [("'this", 'this')] PUR19140305-V13-31-page1.txt: [("'on", 'on'), ("'the", 'the')] PUR19140305-V13-31-page2.txt: [("'The", 'The'), ("'Apples", 'Apples'), ("'The", 'The')] PUR19140305-V13-31-page3.txt: [("'By.", 'By.'), ("'By", 'By'), ("'the", 'the')] PUR19140305-V13-31-page8.txt: [("'other", 'other')] PUR19140312-V13-32-page1.txt: [("'Not", 'Not')] PUR19140312-V13-32-page3.txt: [("'and", 'and')] PUR19140312-V13-32-page5.txt: [("'The", 'The')] PUR19140319-V13-33-page2.txt: [("'penny", 'penny')] PUR19140319-V13-33-page3.txt: [('\'"Yott', '"Yott')] PUR19140326-V13-34-page1.txt: [("'MCCord", 'MCCord'), ("'Sr", 'Sr')] PUR19140326-V13-34-page11.txt: [("'the", 'the'), ("'was", 'was')] PUR19140326-V13-34-page12.txt: [("'UNION", 'UNION')] PUR19140326-V13-34-page13.txt: [("'We", 'We')] PUR19140326-V13-34-page14.txt: [("'great", 'great')] PUR19140326-V13-34-page15.txt: [("'heart", 'heart'), ("'the", 'the'), ("'in", 'in'), ("'wdrk", 'wdrk')] PUR19140326-V13-34-page17.txt: [("'to", 'to'), ("'homes", 'homes')] PUR19140326-V13-34-page18.txt: [("'P", 'P'), ("'after", 'after'), ("'imp", 'imp'), ("'displeasiile", 'displeasiile'), ("'ilit", 'ilit')] PUR19140326-V13-34-page19.txt: [("'Sabbath", 'Sabbath'), ("'outline", 'outline'), ("'r", 'r')] PUR19140326-V13-34-page2.txt: [("'Co", 'Co')] PUR19140326-V13-34-page21.txt: [("'in", 'in')] PUR19140326-V13-34-page22.txt: [("'of", 'of')] PUR19140326-V13-34-page23.txt: [("'f", 'f'), ("'of", 'of'), ("'the", 'the'), ("'and", 'and'), ("'WhoAall", 'WhoAall'), ("'Sikh", 'Sikh')] PUR19140326-V13-34-page3.txt: [("'plete", 'plete'), ("'at", 'at'), ("'the.", 'the.'), ("'adVancing", 'adVancing'), ('\'have"', 'have"')] PUR19140326-V13-34-page5.txt: [("'servants", 'servants')] PUR19140326-V13-34-page6.txt: [("'including", 'including'), ("'the", 'the')] PUR19140326-V13-34-page7.txt: [("'ehris", 'ehris')] PUR19140326-V13-34-page9.txt: [('\'\'CO"', 'CO"'), ("'Harvest", 'Harvest'), ("'Midsummer", 'Midsummer')] PUR19140402-V13-35-page5.txt: [("'Camp", 'Camp')] PUR19140409-V13-36-page2.txt: [("'Bible", 'Bible'), ("'Daniel", 'Daniel')] PUR19140409-V13-36-page3.txt: [("'It", 'It')] PUR19140416-V13-37-page4.txt: [("'Synopsis", 'Synopsis')] PUR19140416-V13-37-page6.txt: [("'For", 'For')] PUR19140430-V13-39-page6.txt: [("'And", 'And'), ("'Lord", 'Lord'), ("'Except", 'Except')] PUR19140507-V13-40-page3.txt: [("'Great", 'Great')] PUR19140507-V13-40-page5.txt: [("'rather", 'rather')] PUR19140514-V13-41-page11.txt: [("'.", '.')] PUR19140514-V13-41-page2.txt: [("'relief", 'relief'), ("'endeavor", 'endeavor'), ("'Upon", 'Upon'), ("'I.", 'I.'), ("'unto", 'unto'), ("'Interest", 'Interest'), ("'The", 'The'), ("'Name", 'Name'), ("'St.", 'St.')] PUR19140514-V13-41-page3.txt: [("'Recommend", 'Recommend'), ("'quarter", 'quarter')] PUR19140514-V13-41-page5.txt: [("'rse", 'rse')] PUR19140521-V13-42-page2.txt: [("'more", 'more')] PUR19140521-V13-42-page3.txt: [("'RECORDER", 'RECORDER')] PUR19140528-V13-43-page4.txt: [("'weep", 'weep'), ("'the", 'the'), ("'little", 'little')] PUR19140611-V13-45-page4.txt: [("'i", 'i')] PUR19140618-V13-46-page5.txt: [("'It", 'It'), ("'The", 'The')] PUR19140625-V13-47-page7.txt: [("'Arizona", 'Arizona')] PUR19140625-V13-47-page8.txt: [("'offerings", 'offerings')] PUR19140702-V13-48-page2.txt: [("'view", 'view')] PUR19140702-V13-48-page5.txt: [("'unto", 'unto')] PUR19140702-V13-48-page7.txt: [("'summit", 'summit')] PUR19140709-V13-49-page3.txt: [("'let", 'let')] PUR19140716-V13-50-page10.txt: [("'the", 'the'), ("'American", 'American')] PUR19140716-V13-50-page11.txt: [("'PA", 'PA')] PUR19140716-V13-50-page5.txt: [("'View", 'View')] PUR19140716-V13-50-page6.txt: [("'I", 'I')] PUR19140716-V13-50-page7.txt: [("'barriers", 'barriers')] PUR19140716-V13-50-page9.txt: [("'unto", 'unto'), ("'relief", 'relief')] PUR19140723-V13-51-page1.txt: [("'fact", 'fact')] PUR19140723-V13-51-page2.txt: [("''Stand", 'Stand')] PUR19140723-V13-51-page3.txt: [("'It", 'It'), ("'UNION", 'UNION')] PUR19140723-V13-51-page5.txt: [("'UNTO", 'UNTO')] PUR19140723-V13-51-page7.txt: [("'w--", 'w--')] PUR19140730-V13-52-page5.txt: [("'dry", 'dry'), ("'dry", 'dry')] PUR19140806-V14-01-page3.txt: [("'Em", 'Em'), ("'em", 'em'), ("'em", 'em')] PUR19140806-V14-01-page5.txt: [("'springing", 'springing')] PUR19140813-V14-02-page1.txt: [("'an", 'an'), ("'field", 'field')] PUR19140813-V14-02-page6.txt: [("'well", 'well')] PUR19140813-V14-02-page8.txt: [("'new", 'new')] PUR19140820-V14-03-page8.txt: [("'Mark", 'Mark')] PUR19140827-V14-04-page2.txt: [("'RECORDER", 'RECORDER'), ("'light", 'light')] PUR19140827-V14-04-page3.txt: [("'easy", 'easy')] PUR19140827-V14-04-page4.txt: [("'Tis", 'Tis'), ("'Tis", 'Tis')] PUR19140827-V14-04-page5.txt: [("''this", 'this'), ('\'WOrld"reatilts', 'WOrld"reatilts'), ("'.among", '.among'), ("'If", 'If'), ("'I", 'I')] PUR19140827-V14-04-page7.txt: [("'It", 'It'), ("'Spare", 'Spare'), ("'The", 'The'), ("'the", 'the')] PUR19140903-V14-05-page1.txt: [("'tithe", 'tithe'), ("'and", 'and'), ("'Who", 'Who'), ("'A", 'A')] PUR19140903-V14-05-page5.txt: [("'Is", 'Is')] PUR19140903-V14-05-page7.txt: [("'go", 'go')] PUR19140910-V14-06-page10.txt: [("'neath", 'neath')] PUR19140910-V14-06-page13.txt: [("'unto", 'unto'), ("'relief", 'relief')] PUR19140910-V14-06-page14.txt: [("'come", 'come')] PUR19140910-V14-06-page5.txt: [("'to", 'to')] PUR19140910-V14-06-page7.txt: [("'Nevertheless", 'Nevertheless')] PUR19140910-V14-06-page8.txt: [("'Father", 'Father')] PUR19140917-V14-07-page3.txt: [("'two", 'two')] PUR19140917-V14-07-page5.txt: [("'continuing", 'continuing')] PUR19140917-V14-07-page8.txt: [("'exhibited", 'exhibited')] PUR19140924-V14-08-page2.txt: [("'When", 'When')] PUR19140924-V14-08-page4.txt: [("'Turkey", 'Turkey'), ("'Past", 'Past')] PUR19140924-V14-08-page6.txt: [("'Great", 'Great'), ("'Best", 'Best'), ("'Practical", 'Practical')] PUR19140924-V14-08-page7.txt: [("'us", 'us'), ("'MS", 'MS'), ("'PACIFIC", 'PACIFIC')] PUR19141001-V14-09-page3.txt: [("'California", 'California'), ("'RECORDER", 'RECORDER'), ("'red", 'red')] PUR19141001-V14-09-page6.txt: [("'Daniel", 'Daniel')] PUR19141001-V14-09-page7.txt: [("'The", 'The')] PUR19141001-V14-09-page8.txt: [("'Practical", 'Practical'), ("'Have", 'Have'), ("'The", 'The'), ("'Turned", 'Turned')] PUR19141008-V14-10-page4.txt: [("'slaves", 'slaves'), ("'bitters", 'bitters'), ("'Woe", 'Woe'), ("'Woe", 'Woe')] PUR19141008-V14-10-page5.txt: [("'in", 'in'), ("'The", 'The'), ("'UNION", 'UNION'), ("'Story", 'Story')] PUR19141008-V14-10-page7.txt: [("'The", 'The')] PUR19141022-V14-12-page3.txt: [("'great", 'great')] PUR19141022-V14-12-page4.txt: [("'Counsels", 'Counsels'), ("'beginning", 'beginning')] PUR19141022-V14-12-page8.txt: [("'subscription", 'subscription')] PUR19141029-V14-13-page2.txt: [("'Williams", 'Williams'), ("'thirty", 'thirty')] PUR19141029-V14-13-page5.txt: [("'a-week", 'a-week')] PUR19141105-V14-14-page2.txt: [("'Tis", 'Tis')] PUR19141105-V14-14-page5.txt: [("'They", 'They')] PUR19141105-V14-14-page7.txt: [("'Under", 'Under')] PUR19141112-V14-15-page6.txt: [("'this", 'this')] PUR19141112-V14-15-page7.txt: [("'and", 'and')] PUR19141119-V14-16-page3.txt: [("'Let", 'Let'), ("'save", 'save')] PUR19141119-V14-16-page6.txt: [("'this", 'this')] PUR19141119-V14-16-page7.txt: [("'P.O.", 'P.O.')] PUR19141119-V14-16-page8.txt: [("'Stories", 'Stories'), ("'Stories", 'Stories')] PUR19141126-V14-17-page6.txt: [("'Making", 'Making'), ("'Making", 'Making'), ("'Elo", 'Elo')] PUR19141203-V14-18-page2.txt: [("'To", 'To'), ("'You", 'You')] PUR19141203-V14-18-page4.txt: [("'experiences.", 'experiences.')] PUR19141203-V14-18-page7.txt: [("'Bible", 'Bible')] PUR19141210-V14-19-page1.txt: [("'W", 'W'), ("'Come", 'Come')] PUR19141210-V14-19-page6.txt: [("'Those", 'Those'), ("'Our", 'Our'), ("'New", 'New')] PUR19141224-V14-21-page2.txt: [("'A", 'A')] PUR19141231-V14-22-page2.txt: [("'Oh", 'Oh')] PUR19141231-V14-22-page3.txt: [("'I", 'I'), ("'I", 'I'), ("'walking", 'walking'), ("'I", 'I')] PUR19141231-V14-22-page7.txt: [("'The", 'The'), ("'Committing", 'Committing'), ("'UNTON", 'UNTON')] PUR19150107-V14-23-page1.txt: [("'Through.", 'Through.'), ("'every", 'every')] PUR19150107-V14-23-page4.txt: [("'from", 'from'), ("'goodly", 'goodly')] PUR19150107-V14-23-page6.txt: [("'the", 'the')] PUR19150114-V14-24-page4.txt: [("'Why", 'Why'), ("'If", 'If'), ("'The", 'The')] PUR19150114-V14-24-page7.txt: [("'Say", 'Say'), ("'He", 'He'), ("'Brother", 'Brother'), ("'I", 'I'), ("'What", 'What'), ("'Well", 'Well')] PUR19150121-V14-25-page5.txt: [("'a", 'a'), ("'and", 'and'), ("'he", 'he')] PUR19150121-V14-25-page7.txt: [("'kept", 'kept')] PUR19150128-V14-26-page1.txt: [("'held", 'held')] PUR19150128-V14-26-page4.txt: [("'Let", 'Let'), ("'nce", 'nce')] PUR19150128-V14-26-page6.txt: [("'Maria", 'Maria'), ("'Maria", 'Maria')] PUR19150128-V14-26-page7.txt: [("'Land", 'Land')] PUR19150204-V14-27-page4.txt: [("'My", 'My'), ("'Be", 'Be'), ("'No", 'No')] PUR19150204-V14-27-page6.txt: [("'The", 'The')] PUR19150204-V14-27-page7.txt: [("'the", 'the'), ("'Conference", 'Conference'), ("'February", 'February'), ("'I", 'I')] PUR19150211-V14-28-page2.txt: [("'Follow", 'Follow')] PUR19150211-V14-28-page3.txt: [("'I", 'I'), ("'I", 'I'), ("'i", 'i')] PUR19150211-V14-28-page5.txt: [("'ties", 'ties')] PUR19150211-V14-28-page6.txt: [("'World's", 'Worlds')] PUR19150218-V14-29-page4.txt: [("'outcome", 'outcome')] PUR19150218-V14-29-page5.txt: [("'Bring", 'Bring')] PUR19150218-V14-29-page6.txt: [("'Lord", 'Lord')] PUR19150225-V14-30-page1.txt: [("'My", 'My')] PUR19150225-V14-30-page2.txt: [("'close", 'close')] PUR19150225-V14-30-page4.txt: [("'Morning", 'Morning'), ("'with", 'with'), ("'It", 'It')] PUR19150225-V14-30-page7.txt: [("'Market", 'Market')] PUR19150225-V14-30-page8.txt: [("'were", 'were')] PUR19150304-V14-31-page1.txt: [("'Gospel", 'Gospel'), ("'Facts", 'Facts'), ("'Testimonies", 'Testimonies'), ("'Patriarchs", 'Patriarchs'), ("'led", 'led'), ("'Great", 'Great'), ("'Acts", 'Acts')] PUR19150304-V14-31-page7.txt: [("'Food", 'Food')] PUR19150304-V14-31-page8.txt: [("'Of", 'Of')] PUR19150311-V14-32-page1.txt: [("'of", 'of')] PUR19150311-V14-32-page13.txt: [("''The", 'The')] PUR19150311-V14-32-page16.txt: [("'To", 'To')] PUR19150311-V14-32-page17.txt: [("'officers", 'officers'), ("'the", 'the'), ("'a", 'a')] PUR19150311-V14-32-page19.txt: [("'I'Verrnont", 'IVerrnont')] PUR19150311-V14-32-page2.txt: [("'north", 'north')] PUR19150311-V14-32-page21.txt: [("'PACIFIC", 'PACIFIC'), ("'presented", 'presented')] PUR19150311-V14-32-page5.txt: [("'Ffc", 'Ffc')] PUR19150311-V14-32-page9.txt: [("'PACIFIC", 'PACIFIC')] PUR19150325-V14-33-page3.txt: [("'Rogers", 'Rogers'), ("'F.", 'F.')] PUR19150325-V14-33-page6.txt: [("'for", 'for'), ("'for", 'for')] PUR19150325-V14-33-page7.txt: [("'Sunny", 'Sunny'), ("'eventh", 'eventh')] PUR19150401-V14-34-page1.txt: [("'praise", 'praise')] PUR19150401-V14-34-page3.txt: [("'house", 'house')] PUR19150401-V14-34-page5.txt: [("'Sehdol", 'Sehdol'), ("'hence", 'hence'), ("'gt-e", 'gt-e')] PUR19150401-V14-34-page6.txt: [("'By", 'By'), ("'Steps", 'Steps')] PUR19150401-V14-34-page7.txt: [("'printed", 'printed')] PUR19150401-V14-34-page9.txt: [("'St.", 'St.'), ("'Sabbath", 'Sabbath')] PUR19150408-V14-35-page1.txt: [("'mangy", 'mangy'), ("'with", 'with')] PUR19150408-V14-35-page3.txt: [("'that", 'that')] PUR19150408-V14-35-page7.txt: [("'And", 'And')] PUR19150415-V14-36-page1.txt: [("'Lord.", 'Lord.')] PUR19150415-V14-36-page7.txt: [("'OtieLthird", 'OtieLthird'), ("'fibtir", 'fibtir'), ("'the", 'the')] PUR19150415-V14-36-page8.txt: [("'your", 'your')] PUR19150422-V14-37-page1.txt: [("'The", 'The'), ("'Yes", 'Yes'), ("'he", 'he')] PUR19150422-V14-37-page2.txt: [("'We", 'We'), ("'Your", 'Your'), ("'but", 'but'), ("'What", 'What')] PUR19150422-V14-37-page3.txt: [("'writer", 'writer')] PUR19150422-V14-37-page5.txt: [("'visit", 'visit'), ("'the", 'the')] PUR19150422-V14-37-page7.txt: [('\'"\'comfort', '"comfort')] PUR19150422-V14-37-page8.txt: [("'Intered", 'Intered')] PUR19150429-V14-38-page3.txt: [("'supply", 'supply'), ("'Moses", 'Moses'), ("'dear", 'dear'), ("'bretlireii", 'bretlireii'), ("'glorious", 'glorious')] PUR19150429-V14-38-page5.txt: [("'tract", 'tract')] PUR19150429-V14-38-page7.txt: [("'from", 'from')] PUR19150506-V14-39-page1.txt: [("'March", 'March')] PUR19150506-V14-39-page5.txt: [("'meetings", 'meetings')] PUR19150506-V14-39-page7.txt: [("'Eye", 'Eye')] PUR19150513-V14-40-page3.txt: [("'Wiley", 'Wiley'), ("'Two", 'Two'), ("'of", 'of'), ("'York", 'York'), ("'PACIF", 'PACIF')] PUR19150520-V14-41-page1.txt: [("'ailir", 'ailir'), ("'behalf", 'behalf'), ("'and", 'and')] PUR19150520-V14-41-page5.txt: [("'filled", 'filled')] PUR19150520-V14-41-page6.txt: [("'and", 'and')] PUR19150520-V14-41-page8.txt: [("'came", 'came'), ("'on", 'on')] PUR19150527-V14-42-page1.txt: [("'encouraging", 'encouraging')] PUR19150527-V14-42-page3.txt: [("'give", 'give'), ("'there", 'there')] PUR19150527-V14-42-page5.txt: [('\'Ur".new', 'Ur".new'), ("'ONION", 'ONION')] PUR19150603-V14-43-page1.txt: [("'Rosa", 'Rosa')] PUR19150603-V14-43-page5.txt: [("'Occupied.", 'Occupied.')] PUR19150603-V14-43-page7.txt: [("'Yes", 'Yes'), ("'I", 'I'), ("'I", 'I'), ("'Well", 'Well'), ("'papers", 'papers'), ("'z", 'z')] PUR19150610-V14-44-page1.txt: [("'abo", 'abo')] PUR19150610-V14-44-page3.txt: [("'unite", 'unite'), ("'very", 'very'), ("'at", 'at')] PUR19150617-V14-45-page1.txt: [("'the'SeVentli", 'theSeVentli'), ("'know", 'know'), ("'the", 'the'), ("'the", 'the')] PUR19150617-V14-45-page3.txt: [("'of", 'of')] PUR19150617-V14-45-page6.txt: [("'ias", 'ias')] PUR19150624-V14-46-page1.txt: [("'how", 'how'), ("'Your", 'Your')] PUR19150624-V14-46-page2.txt: [("'of", 'of')] PUR19150624-V14-46-page4.txt: [("'workers", 'workers')] PUR19150624-V14-46-page5.txt: [("'Go", 'Go'), ("'We", 'We'), ("'see", 'see')] PUR19150624-V14-46-page6.txt: [("'After", 'After')] PUR19150624-V14-46-page7.txt: [("'noted", 'noted')] PUR19150701-V14-47-page1.txt: [("''.isgter", '.isgter')] PUR19150701-V14-47-page3.txt: [("'iAZ", 'iAZ')] PUR19150708-V14-48-page2.txt: [("'No", 'No')] PUR19150708-V14-48-page3.txt: [("'young", 'young'), ("'entirely", 'entirely'), ("'RECORDE'R", 'RECORDER')] PUR19150708-V14-48-page5.txt: [("'rent", 'rent')] PUR19150708-V14-48-page8.txt: [("'and", 'and')] PUR19150715-V14-49-page2.txt: [("'It", 'It'), ("'All", 'All'), ("'Exercise", 'Exercise'), ("'Gatherings", 'Gatherings'), ("'to", 'to')] PUR19150715-V14-49-page3.txt: [("'t", 't')] PUR19150722-V14-50-page1.txt: [("'rerson", 'rerson'), ("'and", 'and'), ("'My", 'My'), ("'come", 'come')] PUR19150722-V14-50-page2.txt: [("'My", 'My')] PUR19150729-V14-51-page1.txt: [("'His", 'His'), ("'nieSserigeraof", 'nieSserigeraof')] PUR19150729-V14-51-page3.txt: [("'in", 'in'), ("'Mrs.", 'Mrs.')] PUR19150729-V14-51-page6.txt: [("'Tell", 'Tell'), ("'Why", 'Why'), ("'make", 'make'), ("'Agents", 'Agents')] PUR19150805-V14-52-page1.txt: [("'I", 'I'), ("'My", 'My'), ("'like", 'like')] PUR19150805-V14-52-page2.txt: [("'the", 'the'), ("'blessed", 'blessed'), ("'Yea", 'Yea'), ("'I", 'I'), ("'I", 'I'), ("'Behold", 'Behold'), ("'Thy", 'Thy'), ("'Thy", 'Thy')] PUR19150805-V14-52-page3.txt: [("'I", 'I'), ("'The", 'The'), ("'follow", 'follow')] PUR19150805-V14-52-page6.txt: [("'World's", 'Worlds')] PUR19150805-V14-52-page7.txt: [("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'Practical", 'Practical'), ("'Practical", 'Practical')] PUR19150812-V15-01-page2.txt: [("'It", 'It')] PUR19150812-V15-01-page3.txt: [("'point", 'point'), ("'.Current", '.Current')] PUR19150812-V15-01-page5.txt: [("'tranSpOrtatidfi", 'tranSpOrtatidfi')] PUR19150812-V15-01-page7.txt: [("'aul", 'aul'), ("'Practical", 'Practical')] PUR19150819-V15-02-page2.txt: [("'Be", 'Be'), ("'Homeward", 'Homeward'), ("'What", 'What'), ("'the", 'the')] PUR19150819-V15-02-page4.txt: [("'I", 'I'), ("'visit", 'visit'), ("'Come", 'Come')] PUR19150819-V15-02-page7.txt: [("'Pa", 'Pa')] PUR19150819-V15-02-page8.txt: [("'Nothing", 'Nothing'), ("'thefields", 'thefields')] PUR19150826-V15-03-page1.txt: [("'should", 'should'), ("'be", 'be')] PUR19150826-V15-03-page3.txt: [("'e", 'e'), ("'the", 'the')] PUR19150826-V15-03-page5.txt: [('\'"', '"')] PUR19150826-V15-03-page7.txt: [("'was", 'was')] PUR19150902-V15-04-page1.txt: [('\'Woke"', 'Woke"'), ("'to", 'to'), ("'and", 'and'), ("''them", 'them')] PUR19150902-V15-04-page2.txt: [("'rich", 'rich'), ("'Mr.", 'Mr.'), ("'Ministry", 'Ministry'), ("'Ministry", 'Ministry'), ("'were.", 'were.'), ("'union", 'union'), ("'I", 'I'), ("'I", 'I'), ("'earth", 'earth'), ("'I", 'I')] PUR19150902-V15-04-page4.txt: [("'What", 'What')] PUR19150902-V15-04-page5.txt: [("'Practical", 'Practical'), ("'Bring", 'Bring')] PUR19150902-V15-04-page7.txt: [("'give", 'give')] PUR19150909-V15-05-page1.txt: [("'Whom", 'Whom'), ("'Here", 'Here'), ("'be", 'be')] PUR19150909-V15-05-page2.txt: [("'Bible", 'Bible'), ("'Life", 'Life'), ("'Guide", 'Guide'), ("'Bible", 'Bible')] PUR19150909-V15-05-page3.txt: [("'When", 'When')] PUR19150909-V15-05-page4.txt: [("'in", 'in'), ("'so", 'so'), ("'poor", 'poor'), ("'live", 'live'), ("'ra", 'ra'), ("'to", 'to'), ("'We", 'We'), ("'last", 'last')] PUR19150909-V15-05-page8.txt: [("'what", 'what')] PUR19150916-V15-06-page1.txt: [("'vocal", 'vocal'), ("'theheart", 'theheart')] PUR19150916-V15-06-page2.txt: [("'altogether", 'altogether')] PUR19150916-V15-06-page3.txt: [("'In", 'In'), ("'hind", 'hind'), ("'of", 'of')] PUR19150923-V15-07-page1.txt: [("'ether", 'ether'), ("'the", 'the'), ("'When", 'When')] PUR19150923-V15-07-page2.txt: [("'considerably", 'considerably'), ("'been", 'been'), ("'quota", 'quota')] PUR19150923-V15-07-page3.txt: [("'state", 'state')] PUR19150923-V15-07-page5.txt: [("'The", 'The'), ("'Restore", 'Restore'), ("'The", 'The')] PUR19150923-V15-07-page7.txt: [("'Farnsworth", 'Farnsworth'), ("'t", 't'), ("'Harris", 'Harris')] PUR19150923-V15-07-page8.txt: [("'the", 'the')] PUR19150930-V15-08-page1.txt: [("'generally", 'generally'), ("'on", 'on'), ("'''priVifeke", 'priVifeke'), ("'the", 'the')] PUR19150930-V15-08-page2.txt: [("'Their", 'Their'), ("'twasn't", 'twasnt'), ("'Lizabeth's", 'Lizabeths'), ("'The", 'The')] PUR19150930-V15-08-page3.txt: [("'resist", 'resist'), ("'Then", 'Then')] PUR19150930-V15-08-page5.txt: [('\'"The', '"The')] PUR19150930-V15-08-page6.txt: [("'are", 'are')] PUR19150930-V15-08-page7.txt: [("'s", 's'), ("'tci", 'tci'), ("'at", 'at'), ("'Mine", 'Mine')] PUR19151007-V15-09-page3.txt: [("'Come", 'Come')] PUR19151007-V15-09-page5.txt: [("'of", 'of'), ("'has", 'has'), ("'efficient", 'efficient'), ("'C.", 'C.'), ('\'"', '"'), ("'also", 'also'), ("'hold", 'hold'), ("'Phoenix", 'Phoenix')] PUR19151007-V15-09-page6.txt: [("'It", 'It')] PUR19151007-V15-09-page7.txt: [('\'Wbilf."', 'Wbilf."')] PUR19151014-V15-10-page1.txt: [("'Whom", 'Whom'), ("'Here", 'Here')] PUR19151014-V15-10-page4.txt: [("'nce", 'nce')] PUR19151014-V15-10-page5.txt: [("'Northern", 'Northern')] PUR19151014-V15-10-page7.txt: [("'a", 'a'), ("'have", 'have')] PUR19151014-V15-10-page8.txt: [("'A.", 'A.'), ("'The", 'The'), ("'fight", 'fight'), ("'AuStralasiai", 'AuStralasiai')] PUR19151021-V15-11-page3.txt: [("'with", 'with')] PUR19151021-V15-11-page4.txt: [("'of", 'of')] PUR19151021-V15-11-page5.txt: [("'unique", 'unique')] PUR19151021-V15-11-page7.txt: [("'Fresno", 'Fresno'), ("'iSr", 'iSr'), ("'Adventist", 'Adventist')] PUR19151021-V15-11-page8.txt: [("'We", 'We'), ("'The", 'The')] PUR19151028-V15-12-page2.txt: [("'for", 'for'), ("'The", 'The')] PUR19151028-V15-12-page3.txt: [("'in", 'in'), ("'et", 'et')] PUR19151028-V15-12-page5.txt: [("'N", 'N'), ("'Fund", 'Fund'), ("'Pt", 'Pt'), ("'rP", 'rP')] PUR19151028-V15-12-page7.txt: [("'I", 'I')] PUR19151104-V15-13-page2.txt: [("'s", 's'), ("'The", 'The')] PUR19151104-V15-13-page3.txt: [("'divided", 'divided')] PUR19151104-V15-13-page7.txt: [("'the", 'the'), ("'Of", 'Of')] PUR19151104-V15-13-page8.txt: [("'This", 'This')] PUR19151111-V15-14-page1.txt: [("'of", 'of')] PUR19151111-V15-14-page2.txt: [("'as", 'as')] PUR19151111-V15-14-page4.txt: [("'and", 'and'), ("'Bible", 'Bible')] PUR19151111-V15-14-page5.txt: [("'It", 'It')] PUR19151118-V15-15-page1.txt: [("'the", 'the'), ("'to", 'to'), ("'Adams", 'Adams'), ("'Clarence", 'Clarence')] PUR19151118-V15-15-page7.txt: [("'Tis", 'Tis')] PUR19151125-V15-16-page5.txt: [("'Thou", 'Thou')] PUR19151125-V15-16-page7.txt: [("'UNTO.NAIR", 'UNTO.NAIR')] PUR19151202-V15-17-page10.txt: [("'that", 'that')] PUR19151202-V15-17-page11.txt: [("'books.", 'books.'), ("'person", 'person')] PUR19151202-V15-17-page12.txt: [("'The", 'The')] PUR19151202-V15-17-page3.txt: [("'secretary", 'secretary'), ("'without", 'without')] PUR19151202-V15-17-page7.txt: [("'Worthy", 'Worthy'), ("'Worthy", 'Worthy')] PUR19151202-V15-17-page8.txt: [("'teachers", 'teachers')] PUR19151209-V15-18-page10.txt: [("'of", 'of'), ("'For", 'For')] PUR19151209-V15-18-page2.txt: [("'Combined", 'Combined')] PUR19151209-V15-18-page3.txt: [("'know", 'know')] PUR19151209-V15-18-page4.txt: [("'editorial", 'editorial'), ("'Armageddon", 'Armageddon')] PUR19151209-V15-18-page6.txt: [("'It", 'It')] PUR19151209-V15-18-page7.txt: [("'the", 'the'), ("'befOre", 'befOre'), ("'churches", 'churches')] PUR19151209-V15-18-page9.txt: [("'PA", 'PA'), ("'UNION", 'UNION')] PUR19151216-V15-19-page4.txt: [("'Great", 'Great')] PUR19151216-V15-19-page6.txt: [("'shown", 'shown'), ("'I", 'I'), ("'For", 'For'), ("'At", 'At'), ("'The", 'The')] PUR19151223-V15-20-page2.txt: [("'is", 'is'), ("'of", 'of'), ("'Condition", 'Condition'), ("'keep", 'keep'), ("'Yea", 'Yea'), ("'the", 'the'), ("'Olives", 'Olives')] PUR19151223-V15-20-page7.txt: [("'to", 'to'), ("'CI", 'CI')] PUR19151230-V15-21-page1.txt: [("'gone", 'gone')] PUR19151230-V15-21-page2.txt: [("'our", 'our'), ("'Now", 'Now'), ("'Coming", 'Coming'), ("'Great", 'Great'), ("'Desire", 'Desire'), ("'While", 'While')] PUR19151230-V15-21-page6.txt: [("'We", 'We')] PUR19151230-V15-21-page7.txt: [("'The", 'The')] PUR19160106-V15-22-page4.txt: [("'Pima", 'Pima')] PUR19160106-V15-22-page7.txt: [("'Adventists", 'Adventists')] PUR19160113-V15-23-page5.txt: [("'P.M.", 'P.M.')] PUR19160120-V15-24-page2.txt: [("'Of", 'Of')] PUR19160120-V15-24-page3.txt: [("'Watchman", 'Watchman')] PUR19160127-V15-25-page2.txt: [("'having", 'having'), ("'Babylon", 'Babylon'), ("'saying", 'saying')] PUR19160127-V15-25-page8.txt: [("'gospel", 'gospel')] PUR19160203-V15-26-page8.txt: [("'Homeward", 'Homeward'), ("'Survivors", 'Survivors')] PUR19160210-V15-27-page4.txt: [("'How", 'How'), ("'ENDING", 'ENDING')] PUR19160210-V15-27-page5.txt: [("'The", 'The')] PUR19160217-V15-28-page1.txt: [("'and", 'and')] PUR19160217-V15-28-page2.txt: [("'the", 'the'), ("'the", 'the'), ("'the", 'the')] PUR19160217-V15-28-page6.txt: [("'to", 'to'), ("'hereby", 'hereby')] PUR19160217-V15-28-page7.txt: [("'work", 'work'), ("'MAGOON", 'MAGOON')] PUR19160224-V15-29-page7.txt: [("'selling", 'selling')] PUR19160302-V15-30-page1.txt: [("'quite", 'quite'), ("'Serve", 'Serve'), ("'county", 'county'), ("'the", 'the')] PUR19160302-V15-30-page8.txt: [("'civic", 'civic'), ("'be", 'be')] PUR19160309-V15-31-page1.txt: [("'I", 'I')] PUR19160309-V15-31-page3.txt: [("'Sabbath.", 'Sabbath.'), ("'but", 'but')] PUR19160309-V15-31-page4.txt: [("'fine", 'fine')] PUR19160309-V15-31-page5.txt: [("'constantly.", 'constantly.'), ("'Brother", 'Brother')] PUR19160309-V15-31-page6.txt: [("'Bible", 'Bible')] PUR19160309-V15-31-page7.txt: [("'Great", 'Great'), ("'head", 'head')] PUR19160316-V15-32-page12.txt: [("'Read", 'Read')] PUR19160316-V15-32-page3.txt: [("'now", 'now'), ("'understand", 'understand'), ("'The", 'The')] PUR19160316-V15-32-page7.txt: [("'world", 'world'), ("'It", 'It'), ("'S.", 'S.'), ("'that", 'that'), ("'member.", 'member.')] PUR19160323-V15-33-page1.txt: [("'up", 'up'), ("'times", 'times')] PUR19160323-V15-33-page2.txt: [("'will", 'will'), ("'themselves", 'themselves')] PUR19160323-V15-33-page5.txt: [("'war", 'war')] PUR19160323-V15-33-page6.txt: [("'Callender", 'Callender')] PUR19160330-V15-34-page1.txt: [("'for", 'for')] PUR19160330-V15-34-page3.txt: [("'having", 'having')] PUR19160330-V15-34-page4.txt: [("'soling", 'soling'), ("'the", 'the')] PUR19160330-V15-34-page5.txt: [("'which", 'which')] PUR19160330-V15-34-page7.txt: [("'et", 'et'), ("'followjug", 'followjug')] PUR19160330-V15-34-page8.txt: [("'of", 'of')] PUR19160406-V15-35-page1.txt: [("'this-report", 'this-report'), ("'a", 'a')] PUR19160406-V15-35-page2.txt: [("'It", 'It')] PUR19160406-V15-35-page3.txt: [("'a", 'a'), ("'.", '.')] PUR19160406-V15-35-page5.txt: [("'College", 'College'), ("'building", 'building')] PUR19160406-V15-35-page6.txt: [("'Bible", 'Bible'), ("'Great", 'Great'), ("'Great", 'Great'), ("'Daniel", 'Daniel'), ("'Bible", 'Bible')] PUR19160406-V15-35-page7.txt: [("'this", 'this')] PUR19160406-V15-35-page8.txt: [("'Free", 'Free')] PUR19160413-V15-36-page1.txt: [("'half", 'half'), ("'tient", 'tient')] PUR19160413-V15-36-page5.txt: [("'.", '.')] PUR19160413-V15-36-page7.txt: [("'house", 'house'), ("'promptly", 'promptly')] PUR19160420-V15-37-page6.txt: [("'unseen", 'unseen'), ("'and", 'and')] PUR19160427-V15-38-page2.txt: [("'The", 'The')] PUR19160427-V15-38-page3.txt: [("'res.", 'res.')] PUR19160427-V15-38-page8.txt: [("'voice", 'voice')] PUR19160504-V15-39-page2.txt: [("'Shelter", 'Shelter'), ("'turned", 'turned')] PUR19160504-V15-39-page5.txt: [("'Pretty", 'Pretty'), ("'Of", 'Of')] PUR19160504-V15-39-page6.txt: [("'OF", 'OF'), ("'Practical", 'Practical')] PUR19160504-V15-39-page7.txt: [("'During", 'During'), ("'the", 'the'), ("'of", 'of')] PUR19160504-V15-39-page8.txt: [("'to", 'to'), ("'Changing", 'Changing'), ("'Colcord", 'Colcord')] PUR19160511-V15-40-page2.txt: [("'I", 'I')] PUR19160511-V15-40-page3.txt: [("'us", 'us')] PUR19160511-V15-40-page5.txt: [("'book", 'book')] PUR19160511-V15-40-page7.txt: [("'the", 'the')] PUR19160511-V15-40-page8.txt: [("'The", 'The')] PUR19160518-V15-41-page2.txt: [("'public", 'public')] PUR19160518-V15-41-page3.txt: [("'course", 'course')] PUR19160525-V15-42-page1.txt: [("'Be", 'Be')] PUR19160525-V15-42-page2.txt: [("'Homeward", 'Homeward')] PUR19160525-V15-42-page5.txt: [("'growing", 'growing')] PUR19160601-V15-43-page1.txt: [("'PERFECTION", 'PERFECTION'), ("'generations", 'generations'), ("'and", 'and'), ("'pointed", 'pointed')] PUR19160601-V15-43-page12.txt: [("'IC", 'IC'), ("'ONION", 'ONION')] PUR19160601-V15-43-page13.txt: [("'twill", 'twill'), ("'Union", 'Union')] PUR19160601-V15-43-page15.txt: [("'the", 'the'), ("'training", 'training')] PUR19160601-V15-43-page3.txt: [("'Povertyi", 'Povertyi'), ("'and", 'and')] PUR19160601-V15-43-page5.txt: [("'in", 'in'), ("'Miring", 'Miring')] PUR19160601-V15-43-page6.txt: [("'given", 'given'), ("'the", 'the')] PUR19160601-V15-43-page7.txt: [("'largest", 'largest')] PUR19160608-V15-44-page8.txt: [("'very", 'very')] PUR19160615-V15-45-page1.txt: [("'.", '.')] PUR19160622-V15-46-page2.txt: [("'Things", 'Things'), ("'Mention", 'Mention'), ("'It", 'It')] PUR19160622-V15-46-page3.txt: [("'of", 'of')] PUR19160629-V15-47-page4.txt: [("'thank", 'thank')] PUR19160629-V15-47-page7.txt: [("'There", 'There')] PUR19160629-V15-47-page8.txt: [("'what", 'what'), ('\'"', '"')] PUR19160706-V15-48-page3.txt: [("'is", 'is')] PUR19160713-V15-49-page1.txt: [("'Review", 'Review'), ("'Pacific", 'Pacific')] PUR19160713-V15-49-page2.txt: [("'made", 'made')] PUR19160713-V15-49-page3.txt: [("'Treasurer.", 'Treasurer.')] PUR19160713-V15-49-page8.txt: [("'weirs", 'weirs'), ("'Be", 'Be')] PUR19160720-V15-50-page1.txt: [("'s", 's')] PUR19160720-V15-50-page3.txt: [("'the", 'the'), ("'It", 'It')] PUR19160727-V15-51-page1.txt: [("'The", 'The')] PUR19160727-V15-51-page8.txt: [("'RECORDER", 'RECORDER'), ("'inns.", 'inns.'), ("'is", 'is'), ("'.", '.')] PUR19160803-V15-52-page3.txt: [("'the", 'the')] PUR19160803-V15-52-page6.txt: [("'Davenport", 'Davenport')] PUR19160803-V15-52-page8.txt: [("'Review", 'Review')] PUR19160810-V16-01-page8.txt: [('\'"I"t', '"I"t')] PUR19160817-V16-02-page2.txt: [("'our", 'our'), ("'five", 'five')] PUR19160817-V16-02-page5.txt: [("'true", 'true')] PUR19160817-V16-02-page6.txt: [("'Bible", 'Bible')] PUR19160817-V16-02-page7.txt: [("'reading", 'reading'), ("'people", 'people'), ("'for", 'for'), ("'a", 'a'), ("'the", 'the'), ("'Other", 'Other'), ("'Heel.", 'Heel.'), ("'which", 'which'), ("'the", 'the'), ("'Organized", 'Organized')] PUR19160817-V16-02-page8.txt: [("'RECORDER", 'RECORDER')] PUR19160824-V16-03-page3.txt: [("'the", 'the'), ("'Present", 'Present')] PUR19160824-V16-03-page4.txt: [("'was", 'was'), ("'of", 'of'), ("'Board", 'Board')] PUR19160824-V16-03-page5.txt: [("'Sabbath-keepers", 'Sabbath-keepers')] PUR19160824-V16-03-page6.txt: [("'Bible", 'Bible')] PUR19160831-V16-04-page1.txt: [("'Park", 'Park'), ("'crucifixion", 'crucifixion')] PUR19160831-V16-04-page2.txt: [("'standing", 'standing'), ("'fit", 'fit'), ("'Attention", 'Attention'), ("'You", 'You'), ("'bargaining", 'bargaining'), ("'Now", 'Now'), ("'We", 'We'), ("'Now.", 'Now.')] PUR19160831-V16-04-page3.txt: [("'tis", 'tis')] PUR19160831-V16-04-page4.txt: [("'books.", 'books.')] PUR19160831-V16-04-page7.txt: [("'nearly", 'nearly'), ("'UNION", 'UNION')] PUR19160831-V16-04-page8.txt: [("'Among", 'Among'), ("'Practical", 'Practical'), ("'Daniel", 'Daniel'), ("'Heralds", 'Heralds'), ("'Ministry", 'Ministry'), ("'I", 'I')] PUR19160907-V16-05-page3.txt: [("'to", 'to')] PUR19160907-V16-05-page6.txt: [("'the", 'the')] PUR19160907-V16-05-page8.txt: [("'Campaign", 'Campaign'), ("'the", 'the')] PUR19160914-V16-06-page3.txt: [("'To", 'To')] PUR19160914-V16-06-page5.txt: [("'in", 'in')] PUR19160914-V16-06-page6.txt: [("'Union", 'Union')] PUR19160921-V16-07-page1.txt: [("'delicious", 'delicious')] PUR19160921-V16-07-page4.txt: [('\'\'Signs"', 'Signs"'), ("'Bible", 'Bible')] PUR19160921-V16-07-page6.txt: [("'for", 'for')] PUR19160928-V16-08-page2.txt: [("'Is", 'Is')] PUR19160928-V16-08-page3.txt: [("'write", 'write'), ("'were", 'were'), ("'the", 'the')] PUR19160928-V16-08-page4.txt: [("'in", 'in')] PUR19160928-V16-08-page6.txt: [("'have", 'have'), ("'to", 'to'), ("'of", 'of'), ("'do", 'do'), ("'country", 'country'), ("'to", 'to'), ("'would", 'would')] PUR19161005-V16-09-page1.txt: [("'Coming", 'Coming')] PUR19161005-V16-09-page3.txt: [("'IC", 'IC'), ("'We", 'We')] PUR19161005-V16-09-page6.txt: [("'Great", 'Great'), ("'Best", 'Best'), ("'ail", 'ail'), ("'remarkfor", 'remarkfor'), ("'Great", 'Great')] PUR19161005-V16-09-page7.txt: [("'Our", 'Our'), ("'Youth's", 'Youths'), ("'poultry.", 'poultry.'), ("'You", 'You'), ("'Great", 'Great')] PUR19161005-V16-09-page8.txt: [("'Why", 'Why'), ("'I", 'I')] PUR19161012-V16-10-page1.txt: [("'is", 'is'), ("'It", 'It')] PUR19161012-V16-10-page2.txt: [("'devoted", 'devoted'), ("'filled", 'filled')] PUR19161012-V16-10-page3.txt: [("'Signs", 'Signs')] PUR19161012-V16-10-page5.txt: [("'the", 'the'), ("'church", 'church'), ("'hereafter", 'hereafter')] PUR19161012-V16-10-page6.txt: [("'McCord", 'McCord')] PUR19161012-V16-10-page8.txt: [("'take", 'take')] PUR19161019-V16-11-page2.txt: [("'summer", 'summer'), ("'Daniel", 'Daniel'), ("'word", 'word')] PUR19161019-V16-11-page3.txt: [("'Park", 'Park'), ("'though", 'though')] PUR19161019-V16-11-page5.txt: [("'No", 'No')] PUR19161019-V16-11-page6.txt: [("'work.", 'work.'), ("'present", 'present')] PUR19161019-V16-11-page8.txt: [("'the", 'the'), ("'the", 'the')] PUR19161026-V16-12-page1.txt: [("'The", 'The'), ("'exOnse.", 'exOnse.')] PUR19161026-V16-12-page5.txt: [("'making", 'making')] PUR19161026-V16-12-page6.txt: [("'did", 'did')] PUR19161102-V16-13-page6.txt: [("'and", 'and')] PUR19161102-V16-13-page7.txt: [("'RECORDER", 'RECORDER'), ("'NiveelcS.", 'NiveelcS.')] PUR19161102-V16-13-page8.txt: [("'mind", 'mind'), ("'TjA", 'TjA')] PUR19161109-V16-14-page4.txt: [("'San", 'San')] PUR19161109-V16-14-page5.txt: [("'PACIFIC", 'PACIFIC'), ("'their", 'their'), ("'have", 'have'), ("'boOks", 'boOks')] PUR19161109-V16-14-page6.txt: [("'conscientious", 'conscientious')] PUR19161109-V16-14-page7.txt: [("'his", 'his')] PUR19161116-V16-15-page6.txt: [("'Witbin", 'Witbin'), ("'v", 'v')] PUR19161116-V16-15-page7.txt: [("'Lomb", 'Lomb')] PUR19161123-V16-16-page3.txt: [("'School", 'School')] PUR19161123-V16-16-page5.txt: [("'conference", 'conference')] PUR19161130-V16-17-page1.txt: [("'show", 'show'), ("'The", 'The'), ("'the", 'the')] PUR19161130-V16-17-page3.txt: [("'Coiirity", 'Coiirity'), ("'Membershas", 'Membershas'), ("'for", 'for')] PUR19161130-V16-17-page6.txt: [("'paid", 'paid')] PUR19161130-V16-17-page7.txt: [("'Shall", 'Shall')] PUR19161207-V16-18-page1.txt: [("'My", 'My')] PUR19161207-V16-18-page6.txt: [("'Science", 'Science')] PUR19161207-V16-18-page7.txt: [("'the", 'the')] PUR19161214-V16-19-page1.txt: [("'dedicated", 'dedicated')] PUR19161214-V16-19-page7.txt: [("'f", 'f'), ("'.Suriday", '.Suriday'), ("'teachers.", 'teachers.'), ("'Bible", 'Bible'), ("'tittle", 'tittle'), ("'Luke's", 'Lukes'), ("'forget", 'forget'), ("'he", 'he'), ("'I", 'I'), ("'in", 'in'), ("'Arma", 'Arma'), ("'Bible", 'Bible'), ("'Bible", 'Bible'), ("'of", 'of')] PUR19161214-V16-19-page8.txt: [("'ADVENTISTS", 'ADVENTISTS'), ("'to", 'to')] PUR19161221-V16-20-page1.txt: [("'misread", 'misread')] PUR19161221-V16-20-page2.txt: [("'Are", 'Are')] PUR19161221-V16-20-page3.txt: [("'the", 'the')] PUR19161221-V16-20-page6.txt: [("'Life", 'Life')] PUR19161228-V16-21-page2.txt: [("'the", 'the'), ("'quarter", 'quarter'), ("'time", 'time'), ("'him", 'him'), ("'the", 'the'), ("'traveler", 'traveler')] PUR19161228-V16-21-page4.txt: [("'books", 'books'), ("'View", 'View')] PUR19161228-V16-21-page5.txt: [("'the", 'the'), ("'textbooks", 'textbooks')] PUR19161228-V16-21-page6.txt: [("'have", 'have')] PUR19161228-V16-21-page7.txt: [("'Sings", 'Sings'), ("'Signs", 'Signs'), ("'the", 'the')] PUR19170104-V16-22-page2.txt: [("'hope", 'hope'), ("'Iucal", 'Iucal')] PUR19170104-V16-22-page3.txt: [("'beginning", 'beginning')] PUR19170104-V16-22-page6.txt: [("'Checking", 'Checking')] PUR19170111-V16-23-page2.txt: [("'both", 'both'), ("'the", 'the'), ("'like", 'like'), ("'God", 'God'), ("'Sell", 'Sell')] PUR19170111-V16-23-page3.txt: [("'sacrifices", 'sacrifices'), ("''bUt", 'bUt'), ("'Constant", 'Constant'), ("'when", 'when'), ("'wide", 'wide'), ("'The", 'The'), ("'and", 'and')] PUR19170111-V16-23-page4.txt: [("'poor", 'poor'), ("'wholly", 'wholly')] PUR19170118-V16-24-page1.txt: [("'any", 'any'), ("'cents", 'cents'), ("'of", 'of')] PUR19170118-V16-24-page2.txt: [("'Christian", 'Christian'), ("'the", 'the')] PUR19170118-V16-24-page6.txt: [("'heals", 'heals')] PUR19170125-V16-25-page2.txt: [("'in", 'in'), ("'suggest", 'suggest')] PUR19170125-V16-25-page4.txt: [("'A", 'A')] PUR19170125-V16-25-page5.txt: [("'Agents", 'Agents')] PUR19170125-V16-25-page6.txt: [("'by", 'by')] PUR19170201-V16-26-page2.txt: [("'Sister", 'Sister')] PUR19170201-V16-26-page3.txt: [("'Santa", 'Santa')] PUR19170201-V16-26-page4.txt: [("'Signs", 'Signs')] PUR19170208-V16-27-page1.txt: [("'Co'Itiorit", 'CoItiorit')] PUR19170208-V16-27-page2.txt: [("'treatment", 'treatment')] PUR19170208-V16-27-page4.txt: [("''Sanitarium", 'Sanitarium'), ("'sanitary.", 'sanitary.')] PUR19170215-V16-28-page1.txt: [("'leaser", 'leaser')] PUR19170215-V16-28-page2.txt: [("'RECORDER", 'RECORDER')] PUR19170215-V16-28-page3.txt: [("'had", 'had'), ("'on", 'on')] PUR19170215-V16-28-page4.txt: [("'and", 'and')] PUR19170215-V16-28-page5.txt: [("'Reference", 'Reference')] PUR19170215-V16-28-page6.txt: [("'Thoughts", 'Thoughts'), ("'Great", 'Great')] PUR19170222-V16-29-page1.txt: [("'With", 'With')] PUR19170222-V16-29-page2.txt: [("'tis", 'tis'), ("'the", 'the')] PUR19170222-V16-29-page4.txt: [("'It", 'It')] PUR19170222-V16-29-page6.txt: [("'and", 'and'), ("'I", 'I')] PUR19170301-V16-30-page2.txt: [("'Be", 'Be'), ("'one", 'one')] PUR19170301-V16-30-page3.txt: [("'hope", 'hope'), ("'respects", 'respects')] PUR19170308-V16-31-page1.txt: [("'Evans", 'Evans')] PUR19170308-V16-31-page10.txt: [("'far", 'far'), ("'have", 'have'), ("'or", 'or')] PUR19170308-V16-31-page11.txt: [("'appealing", 'appealing')] PUR19170308-V16-31-page14.txt: [("'ttC", 'ttC'), ("'of", 'of'), ("'Washington", 'Washington'), ("'could", 'could'), ("'lave", 'lave'), ("'at", 'at'), ("'books", 'books')] PUR19170308-V16-31-page19.txt: [("'with", 'with')] PUR19170308-V16-31-page20.txt: [("'grippe", 'grippe')] PUR19170308-V16-31-page7.txt: [("'by", 'by')] PUR19170308-V16-31-page9.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'in", 'in')] PUR19170315-V16-32-page5.txt: [("'than", 'than')] PUR19170322-V16-33-page2.txt: [("'board", 'board'), ("'San", 'San')] PUR19170322-V16-33-page3.txt: [("'IC", 'IC')] PUR19170322-V16-33-page5.txt: [("'Training", 'Training'), ("'This", 'This')] PUR19170322-V16-33-page7.txt: [("'dual", 'dual')] PUR19170322-V16-33-page8.txt: [("'little", 'little')] PUR19170329-V16-34-page8.txt: [("'Signs", 'Signs')] PUR19170405-V16-35-page4.txt: [("'last", 'last'), ("'Sabbath", 'Sabbath'), ("'boy", 'boy')] PUR19170405-V16-35-page6.txt: [("'have", 'have')] PUR19170405-V16-35-page7.txt: [("'Beane", 'Beane')] PUR19170405-V16-35-page8.txt: [("'hearts", 'hearts'), ("'Hygienic", 'Hygienic')] PUR19170412-V16-36-page1.txt: [("'Girding", 'Girding')] PUR19170412-V16-36-page5.txt: [("'sent", 'sent')] PUR19170412-V16-36-page6.txt: [("'city", 'city')] PUR19170419-V16-37-page2.txt: [("'the", 'the'), ("'Universal", 'Universal'), ("'summoning", 'summoning'), ("'Universal", 'Universal'), ("'Church", 'Church'), ("'Church", 'Church'), ("'everything", 'everything')] PUR19170419-V16-37-page3.txt: [("'All", 'All')] PUR19170419-V16-37-page5.txt: [("'worth", 'worth')] PUR19170419-V16-37-page7.txt: [("'I", 'I'), ("'enjoyed", 'enjoyed')] PUR19170426-V16-38-page5.txt: [("'name", 'name')] PUR19170426-V16-38-page6.txt: [("'have", 'have')] PUR19170503-V16-39-page3.txt: [("'The", 'The'), ("'Meditations", 'Meditations'), ("'Good", 'Good'), ("'Suite", 'Suite'), ("'Boat", 'Boat'), ("'The", 'The')] PUR19170503-V16-39-page4.txt: [("'A", 'A'), ("'remain", 'remain'), ("'Loyalty", 'Loyalty')] PUR19170503-V16-39-page5.txt: [("'is", 'is')] PUR19170503-V16-39-page6.txt: [("'Thoughts", 'Thoughts'), ("'Patriarchs", 'Patriarchs')] PUR19170510-V16-40-page1.txt: [("'dressed", 'dressed'), ("'had", 'had')] PUR19170510-V16-40-page2.txt: [("'Be", 'Be'), ("'How", 'How'), ("'Signs", 'Signs')] PUR19170510-V16-40-page3.txt: [("'will", 'will')] PUR19170510-V16-40-page4.txt: [("'Retrospect", 'Retrospect'), ("'were", 'were'), ("'Desire", 'Desire'), ("'Ann", 'Ann')] PUR19170510-V16-40-page5.txt: [("'Universal", 'Universal'), ("'There", 'There'), ("'commodious", 'commodious'), ("'membership", 'membership'), ("'the", 'the')] PUR19170510-V16-40-page6.txt: [("'Signs", 'Signs'), ("'hearts", 'hearts'), ("'Universal.", 'Universal.')] PUR19170510-V16-40-page8.txt: [("'Signs", 'Signs'), ("'city", 'city')] PUR19170517-V16-41-page1.txt: [("'We", 'We'), ("'No", 'No'), ("'Congress", 'Congress'), ('\'"', '"'), ("'a", 'a')] PUR19170517-V16-41-page3.txt: [("'That", 'That'), ("'Conference", 'Conference')] PUR19170517-V16-41-page5.txt: [("'grounds", 'grounds'), ("'subscriptions", 'subscriptions'), ("'The", 'The'), ("'church", 'church')] PUR19170517-V16-41-page6.txt: [("'readings", 'readings')] PUR19170517-V16-41-page7.txt: [("'in", 'in')] PUR19170517-V16-41-page8.txt: [("'home.", 'home.')] PUR19170524-V16-42-page1.txt: [("'etre", 'etre'), ('\'honorable."', 'honorable."')] PUR19170524-V16-42-page2.txt: [("'and", 'and')] PUR19170524-V16-42-page3.txt: [("'battle", 'battle'), ('\'prayer."', 'prayer."'), ("'considering", 'considering'), ("'It", 'It'), ("'of", 'of'), ("'granted.", 'granted.'), ("'your", 'your')] PUR19170524-V16-42-page4.txt: [("'as", 'as'), ("'health", 'health'), ("'our", 'our')] PUR19170524-V16-42-page5.txt: [("'by", 'by')] PUR19170524-V16-42-page7.txt: [("'Plan", 'Plan'), ("'Take", 'Take')] PUR19170524-V16-42-page8.txt: [("'It", 'It'), ("'No", 'No'), ("'I", 'I'), ("'Yes", 'Yes'), ("'I", 'I'), ("'P", 'P')] PUR19170531-V16-43-page4.txt: [("'Review", 'Review'), ("'brings", 'brings')] PUR19170531-V16-43-page5.txt: [("'had", 'had')] PUR19170531-V16-43-page6.txt: [("'Westcott.", 'Westcott.')] PUR19170607-V16-44-page16.txt: [("'round", 'round')] PUR19170607-V16-44-page20.txt: [("'..", '..'), ("'schooL", 'schooL'), ("'irib", 'irib'), ("'except", 'except'), ("'pass", 'pass')] PUR19170607-V16-44-page25.txt: [("'Page", 'Page')] PUR19170607-V16-44-page28.txt: [("'.", '.')] PUR19170607-V16-44-page29.txt: [("'.obi", '.obi')] PUR19170607-V16-44-page3.txt: [("'Page", 'Page')] PUR19170607-V16-44-page30.txt: [("'hird", 'hird')] PUR19170607-V16-44-page31.txt: [("'ll", 'll')] PUR19170607-V16-44-page32.txt: [("'an", 'an')] PUR19170607-V16-44-page7.txt: [("'Page", 'Page')] PUR19170607-V16-44-page9.txt: [("'neath", 'neath')] PUR19170614-V16-45-page1.txt: [("'N", 'N'), ("'Loughborough", 'Loughborough')] PUR19170614-V16-45-page3.txt: [("'Bring", 'Bring')] PUR19170614-V16-45-page4.txt: [("'lesson", 'lesson')] PUR19170614-V16-45-page8.txt: [("'acific", 'acific')] PUR19170621-V16-46-page1.txt: [("'here", 'here')] PUR19170621-V16-46-page3.txt: [("'trades", 'trades')] PUR19170621-V16-46-page5.txt: [("'hope", 'hope'), ("'think", 'think'), ('\'tithe."', 'tithe."'), ("'believers", 'believers'), ("'Covina", 'Covina'), ("'think", 'think'), ("'behalf", 'behalf'), ("'enter", 'enter'), ("'out", 'out'), ("'other", 'other'), ("'What", 'What')] PUR19170621-V16-46-page6.txt: [("'The", 'The')] PUR19170621-V16-46-page8.txt: [("'people", 'people')] PUR19170628-V16-47-page3.txt: [("'rider", 'rider'), ("'closed", 'closed')] PUR19170628-V16-47-page4.txt: [("'be.a", 'be.a')] PUR19170628-V16-47-page7.txt: [("'annual", 'annual')] PUR19170705-V16-48-page3.txt: [("'It", 'It')] PUR19170705-V16-48-page4.txt: [("'us", 'us')] PUR19170705-V16-48-page5.txt: [("'he", 'he'), ("'their", 'their')] PUR19170705-V16-48-page8.txt: [("'that", 'that')] PUR19170712-V16-49-page2.txt: [("'connection", 'connection'), ("'The", 'The'), ("'beings", 'beings')] PUR19170712-V16-49-page3.txt: [("'taking", 'taking'), ("'Euhappen", 'Euhappen')] PUR19170712-V16-49-page4.txt: [("'have", 'have')] PUR19170719-V16-50-page1.txt: [("'Seek", 'Seek'), ("'David", 'David')] PUR19170719-V16-50-page4.txt: [("'sented", 'sented')] PUR19170719-V16-50-page5.txt: [("'I", 'I'), ("'issue", 'issue')] PUR19170719-V16-50-page8.txt: [("'Persons", 'Persons')] PUR19170726-V16-51-page2.txt: [("'and", 'and')] PUR19170726-V16-51-page6.txt: [("'took", 'took')] PUR19170726-V16-51-page7.txt: [("'And", 'And')] PUR19170726-V16-51-page8.txt: [("'ihington", 'ihington'), ("'Thompson", 'Thompson')] PUR19170802-V16-52-page1.txt: [("'a", 'a')] PUR19170802-V16-52-page2.txt: [("'remnant", 'remnant')] PUR19170802-V16-52-page5.txt: [("'and", 'and')] PUR19170802-V16-52-page6.txt: [("'World", 'World'), ("'Coming", 'Coming')] PUR19170809-V17-01-page2.txt: [("'the", 'the')] PUR19170809-V17-01-page3.txt: [("'Spiritual", 'Spiritual')] PUR19170809-V17-01-page4.txt: [("'intermediate", 'intermediate')] PUR19170809-V17-01-page6.txt: [("'to", 'to'), ("'something", 'something'), ("'Watchman", 'Watchman'), ("'World", 'World'), ("'sufficient", 'sufficient')] PUR19170809-V17-01-page7.txt: [("'Bible", 'Bible'), ("'Signs", 'Signs'), ("'J.", 'J.')] PUR19170809-V17-01-page8.txt: [("'Signs", 'Signs')] PUR19170816-V17-02-page3.txt: [("'When", 'When'), ("'has", 'has'), ("'In", 'In'), ("'the", 'the')] PUR19170816-V17-02-page4.txt: [("'minds", 'minds')] PUR19170816-V17-02-page5.txt: [("'reeord", 'reeord')] PUR19170816-V17-02-page6.txt: [("'How", 'How'), ("'my", 'my')] PUR19170816-V17-02-page7.txt: [("'benefit", 'benefit')] PUR19170816-V17-02-page8.txt: [("'World", 'World'), ("'World", 'World'), ("'f", 'f')] PUR19170823-V17-03-page1.txt: [("'Review", 'Review'), ("'new", 'new'), ("'their", 'their'), ("'darlinginEm", 'darlinginEm'), ("'riot", 'riot'), ("'Rine", 'Rine'), ("'this", 'this'), ("'are", 'are')] PUR19170823-V17-03-page2.txt: [('\'\'"', '"')] PUR19170823-V17-03-page6.txt: [("'Very", 'Very')] PUR19170823-V17-03-page7.txt: [("'RECORDER", 'RECORDER'), ("'of", 'of'), ("'She", 'She')] PUR19170830-V17-04-page1.txt: [("'W.", 'W.')] PUR19170830-V17-04-page4.txt: [("'Review", 'Review'), ("'My", 'My')] PUR19170830-V17-04-page5.txt: [("'world", 'world'), ("'Review", 'Review'), ("'were", 'were')] PUR19170830-V17-04-page7.txt: [("'Breckenridge", 'Breckenridge')] PUR19170906-V17-05-page1.txt: [("'Oh", 'Oh')] PUR19170906-V17-05-page2.txt: [("'He", 'He')] PUR19170906-V17-05-page3.txt: [("'letter", 'letter')] PUR19170906-V17-05-page4.txt: [("'Come", 'Come')] PUR19170906-V17-05-page5.txt: [("'example", 'example')] PUR19170906-V17-05-page6.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'Signs", 'Signs')] PUR19170906-V17-05-page7.txt: [("'came", 'came'), ("'She", 'She')] PUR19170913-V17-06-page1.txt: [("'Marvel", 'Marvel')] PUR19170913-V17-06-page2.txt: [("'He", 'He'), ("'Leaser", 'Leaser'), ("'He", 'He'), ("'God", 'God')] PUR19170913-V17-06-page4.txt: [("'of", 'of')] PUR19170913-V17-06-page6.txt: [("'may", 'may'), ("'I", 'I'), ("'Liberty", 'Liberty'), ("'Where", 'Where'), ("'Well", 'Well'), ("'Life", 'Life'), ("'here's", 'heres'), ("'Signs", 'Signs')] PUR19170913-V17-06-page7.txt: [("'No", 'No'), ("'some", 'some'), ("'St.", 'St.')] PUR19170913-V17-06-page8.txt: [("'Bible", 'Bible'), ("'The", 'The'), ("'Lord", 'Lord')] PUR19170920-V17-07-page1.txt: [("'glorious", 'glorious'), ("'strength", 'strength')] PUR19170920-V17-07-page2.txt: [("'He", 'He')] PUR19170920-V17-07-page3.txt: [("'The", 'The'), ("'I", 'I'), ("'If", 'If'), ("'Review", 'Review')] PUR19170920-V17-07-page4.txt: [("'bout", 'bout')] PUR19170920-V17-07-page5.txt: [("'ho", 'ho'), ("'Shryock", 'Shryock')] PUR19170920-V17-07-page8.txt: [("'this", 'this')] PUR19170927-V17-08-page1.txt: [("'interest", 'interest'), ("'The", 'The')] PUR19170927-V17-08-page2.txt: [("'of", 'of')] PUR19170927-V17-08-page3.txt: [("'at", 'at')] PUR19170927-V17-08-page5.txt: [("'I", 'I')] PUR19170927-V17-08-page7.txt: [("'last", 'last'), ("'is", 'is'), ("'Services", 'Services'), ("'ten", 'ten')] PUR19171004-V17-09-page2.txt: [("'sent", 'sent')] PUR19171004-V17-09-page3.txt: [("'an", 'an')] PUR19171004-V17-09-page8.txt: [("'neath", 'neath')] PUR19171011-V17-10-page1.txt: [("'troth", 'troth'), ("'world", 'world'), ("'God", 'God'), ("'Neither", 'Neither')] PUR19171011-V17-10-page3.txt: [("'evangelistic", 'evangelistic')] PUR19171011-V17-10-page6.txt: [("'Secretary.", 'Secretary.')] PUR19171011-V17-10-page7.txt: [("'the", 'the')] PUR19171018-V17-11-page1.txt: [("'Harvest", 'Harvest'), ("'Who", 'Who'), ("'Verifying.", 'Verifying.')] PUR19171018-V17-11-page2.txt: [("'arise", 'arise'), ("'Watchman", 'Watchman'), ("'The", 'The')] PUR19171018-V17-11-page3.txt: [("'I", 'I'), ("'Never", 'Never'), ("'at", 'at'), ("'of.", 'of.')] PUR19171018-V17-11-page4.txt: [("'Twenty", 'Twenty')] PUR19171018-V17-11-page7.txt: [("'ti", 'ti'), ("'me", 'me'), ("'Did", 'Did'), ("'Have", 'Have'), ("'Yes", 'Yes'), ("'Book", 'Book')] PUR19171018-V17-11-page8.txt: [("'times", 'times')] PUR19171025-V17-12-page4.txt: [("'and", 'and')] PUR19171101-V17-13-page1.txt: [("'interests.", 'interests.')] PUR19171101-V17-13-page2.txt: [("'we", 'we'), ("'Of", 'Of'), ('\'"Review', '"Review')] PUR19171101-V17-13-page3.txt: [('\'"Review"', '"Review"')] PUR19171101-V17-13-page4.txt: [("'rapidly", 'rapidly')] PUR19171101-V17-13-page5.txt: [("'not", 'not'), ("'PACIFIC", 'PACIFIC'), ("'There", 'There')] PUR19171101-V17-13-page6.txt: [("'through", 'through'), ("'along", 'along'), ("'Cedaredge", 'Cedaredge'), ("'Treasurer.", 'Treasurer.'), ("'the", 'the'), ("'the", 'the')] PUR19171101-V17-13-page7.txt: [("'Milan", 'Milan'), ("'address.", 'address.'), ("'Loa", 'Loa')] PUR19171108-V17-14-page1.txt: [("'in", 'in')] PUR19171108-V17-14-page3.txt: [("'Review", 'Review'), ("'Watchprops.", 'Watchprops.'), ("'or", 'or')] PUR19171108-V17-14-page5.txt: [("'especially", 'especially')] PUR19171108-V17-14-page7.txt: [("'with", 'with')] PUR19171108-V17-14-page8.txt: [("'Bible", 'Bible'), ("'freemay", 'freemay'), ("'of", 'of')] PUR19171115-V17-15-page1.txt: [("'Saviour", 'Saviour'), ("'its", 'its')] PUR19171115-V17-15-page2.txt: [("'Chickens", 'Chickens')] PUR19171115-V17-15-page4.txt: [("'promise", 'promise'), ("'L.", 'L.'), ("'the", 'the'), ("'Reaser", 'Reaser')] PUR19171115-V17-15-page5.txt: [("'PACIFIC.'UNIO", 'PACIFIC.UNIO'), ("'stand", 'stand'), ("'CA", 'CA'), ("'has", 'has'), ("'we", 'we'), ("'Vein", 'Vein')] PUR19171115-V17-15-page6.txt: [("'of", 'of')] PUR19171115-V17-15-page7.txt: [("'dress", 'dress')] PUR19171115-V17-15-page8.txt: [('\'\'"a', '"a'), ("'not", 'not'), ("'we", 'we'), ("'we", 'we')] PUR19171122-V17-16-page1.txt: [("'the", 'the')] PUR19171122-V17-16-page3.txt: [("'Ukiah", 'Ukiah'), ("'Review", 'Review')] PUR19171122-V17-16-page5.txt: [("'country", 'country')] PUR19171129-V17-17-page2.txt: [("'will", 'will'), ("'Present", 'Present')] PUR19171129-V17-17-page3.txt: [("'missionary", 'missionary')] PUR19171129-V17-17-page5.txt: [("'Horne", 'Horne'), ("'that", 'that'), ("'necessary", 'necessary')] PUR19171129-V17-17-page7.txt: [("''RhYMea", 'RhYMea'), ("'of", 'of')] PUR19171129-V17-17-page8.txt: [("'Enlarge", 'Enlarge')] PUR19171206-V17-18-page1.txt: [("'come", 'come')] PUR19171206-V17-18-page3.txt: [("'Are", 'Are'), ("'for", 'for'), ("'that", 'that')] PUR19171213-V17-19-page1.txt: [("'Extracts", 'Extracts')] PUR19171213-V17-19-page3.txt: [("'on", 'on'), ("'the", 'the')] PUR19171213-V17-19-page5.txt: [("'and", 'and'), ('\'Bretber"L\'E.\'HeSseitine', 'Bretber"LE.HeSseitine'), ("'Vrtt's", 'Vrtts')] PUR19171213-V17-19-page6.txt: [("'Here", 'Here'), ("'When", 'When'), ("'La", 'La'), ("'United", 'United')] PUR19171213-V17-19-page7.txt: [("'address", 'address')] PUR19171220-V17-20-page1.txt: [("'to", 'to')] PUR19171220-V17-20-page3.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'Watch", 'Watch')] PUR19171220-V17-20-page5.txt: [("'in", 'in')] PUR19171220-V17-20-page6.txt: [("'all.", 'all.')] PUR19171220-V17-20-page7.txt: [("'California", 'California')] PUR19171227-V17-21-page1.txt: [("'the", 'the'), ("'latter", 'latter'), ("'to", 'to'), ("'the", 'the'), ("'Thy", 'Thy'), ("'view", 'view')] PUR19171227-V17-21-page2.txt: [("'.p", '.p')] PUR19171227-V17-21-page3.txt: [("'we", 'we'), ("'Bra", 'Bra'), ("'Fortuna", 'Fortuna')] PUR19171227-V17-21-page4.txt: [("'Review", 'Review')] PUR19171227-V17-21-page5.txt: [("'Brother", 'Brother'), ("'he", 'he')] PUR19171227-V17-21-page7.txt: [("'I", 'I')] PUR19171227-V17-21-page8.txt: [("'printing", 'printing')] PUR19180103-V17-22-page1.txt: [("'vVASHINGTON.", 'vVASHINGTON.')] PUR19180103-V17-22-page3.txt: [("'were", 'were')] PUR19180103-V17-22-page5.txt: [("'I", 'I')] PUR19180110-V17-23-page1.txt: [("'They", 'They')] PUR19180110-V17-23-page2.txt: [("'to", 'to'), ("'own", 'own'), ("'the", 'the'), ("'was", 'was'), ("'It", 'It'), ("'declared", 'declared'), ("'sent", 'sent'), ("'Past", 'Past'), ("'transformed", 'transformed'), ("'granted", 'granted'), ("'Conference", 'Conference')] PUR19180110-V17-23-page3.txt: [("'Smith", 'Smith')] PUR19180110-V17-23-page5.txt: [("'Seho", 'Seho')] PUR19180110-V17-23-page6.txt: [("'Signs", 'Signs'), ('\'Recorder"', 'Recorder"')] PUR19180110-V17-23-page7.txt: [("'ICJ", 'ICJ'), ("'RECORDER", 'RECORDER'), ("'better", 'better'), ("'see", 'see'), ("'HcanU", 'HcanU'), ("'he", 'he'), ("'AMong", 'AMong'), ("'the", 'the'), ("'nationaliti", 'nationaliti'), ("'moo", 'moo'), ("'dosing", 'dosing'), ("'ranki", 'ranki'), ("'the", 'the'), ("'members", 'members'), ("'deeper", 'deeper'), ("'ASsaciation", 'ASsaciation'), ("'now", 'now'), ("'in", 'in'), ("'to", 'to'), ("'features", 'features'), ("'Mile", 'Mile'), ("'Misc.", 'Misc.'), ("'Farmer", 'Farmer')] PUR19180117-V17-24-page1.txt: [("'Thy", 'Thy'), ("'Homeward", 'Homeward')] PUR19180117-V17-24-page3.txt: [("'orremember", 'orremember')] PUR19180117-V17-24-page5.txt: [("'men", 'men'), ("'The", 'The')] PUR19180117-V17-24-page8.txt: [("'The", 'The'), ("'The", 'The')] PUR19180124-V17-25-page1.txt: [("'that", 'that'), ("'so", 'so'), ("'by", 'by')] PUR19180124-V17-25-page2.txt: [("'examinations", 'examinations'), ("'keep", 'keep')] PUR19180124-V17-25-page6.txt: [("'to", 'to'), ("'large", 'large'), ("'small", 'small'), ("'wheatless", 'wheatless')] PUR19180124-V17-25-page7.txt: [("'Or", 'Or')] PUR19180131-V17-26-page1.txt: [("'California", 'California'), ("'the", 'the'), ("'solicit", 'solicit')] PUR19180131-V17-26-page4.txt: [("'M.", 'M.'), ("'Lord", 'Lord')] PUR19180131-V17-26-page6.txt: [("'call", 'call')] PUR19180131-V17-26-page7.txt: [("'Come", 'Come')] PUR19180131-V17-26-page8.txt: [("'Just", 'Just')] PUR19180207-V17-27-page2.txt: [("'the", 'the')] PUR19180207-V17-27-page5.txt: [("'Present", 'Present')] PUR19180221-V17-29-page1.txt: [("'lord", 'lord'), ("'Years", 'Years'), ("'dent", 'dent'), ("'ideet", 'ideet')] PUR19180221-V17-29-page11.txt: [("'There", 'There')] PUR19180221-V17-29-page12.txt: [("'of", 'of')] PUR19180221-V17-29-page14.txt: [("'the", 'the')] PUR19180221-V17-29-page3.txt: [("'it", 'it'), ("'saleS", 'saleS'), ("'English", 'English'), ("'has", 'has')] PUR19180221-V17-29-page6.txt: [("'glad", 'glad'), ("'were", 'were'), ("'more", 'more')] PUR19180221-V17-29-page8.txt: [("'as", 'as')] PUR19180221-V17-29-page9.txt: [("'by", 'by')] PUR19180228-V17-30-page5.txt: [("'Morning", 'Morning')] PUR19180307-V17-31-page1.txt: [("'old", 'old')] PUR19180307-V17-31-page5.txt: [("'go", 'go'), ("'Work", 'Work'), ("'thrills", 'thrills'), ("'AO", 'AO')] PUR19180307-V17-31-page7.txt: [("'tis", 'tis'), ("'Tis", 'Tis')] PUR19180307-V17-31-page8.txt: [("'to", 'to')] PUR19180314-V17-32-page1.txt: [("'give", 'give')] PUR19180314-V17-32-page3.txt: [("'RECORDER", 'RECORDER'), ("'Elder", 'Elder')] PUR19180314-V17-32-page4.txt: [("'Conference", 'Conference'), ("'down", 'down'), ("'help", 'help'), ("'com", 'com')] PUR19180314-V17-32-page5.txt: [("'City", 'City'), ("'again.", 'again.'), ("'thank", 'thank'), ("'increase", 'increase'), ("'be", 'be')] PUR19180314-V17-32-page7.txt: [("'run", 'run'), ('\'Recorder"', 'Recorder"'), ("'to", 'to')] PUR19180314-V17-32-page8.txt: [("'welcome", 'welcome')] PUR19180321-V17-33-page2.txt: [("'M", 'M'), ("'start.", 'start.'), ("'this", 'this'), ("'that", 'that'), ("'this", 'this'), ("'free", 'free'), ("'the", 'the'), ("'this", 'this'), ("'there", 'there')] PUR19180321-V17-33-page3.txt: [("'spirituality.", 'spirituality.'), ("'re", 're')] PUR19180321-V17-33-page4.txt: [("'from", 'from'), ("'What", 'What'), ("'Ho", 'Ho')] PUR19180321-V17-33-page6.txt: [("'The", 'The')] PUR19180321-V17-33-page7.txt: [("'purpose", 'purpose'), ("'prices", 'prices'), ("'at", 'at')] PUR19180328-V17-34-page1.txt: [("'expect", 'expect'), ("'attend", 'attend'), ("'tlie'hOS", 'tliehOS'), ("'Rome", 'Rome')] PUR19180328-V17-34-page2.txt: [("'Salt", 'Salt'), ("'Present", 'Present')] PUR19180328-V17-34-page3.txt: [("'Present", 'Present'), ("'vipers", 'vipers'), ("'elvesto", 'elvesto'), ("'is", 'is'), ("'the", 'the')] PUR19180328-V17-34-page5.txt: [("'Whether", 'Whether'), ("'in", 'in')] PUR19180328-V17-34-page6.txt: [("'on", 'on'), ("'The", 'The'), ("'work", 'work')] PUR19180328-V17-34-page7.txt: [("'hope", 'hope')] PUR19180328-V17-34-page8.txt: [("'your", 'your'), ("'of", 'of'), ("'to", 'to')] PUR19180404-V17-35-page4.txt: [("'volunteer", 'volunteer')] PUR19180404-V17-35-page5.txt: [("'heard", 'heard'), ("'it", 'it'), ("'Voices", 'Voices'), ("'one", 'one')] PUR19180404-V17-35-page6.txt: [("'UNION", 'UNION'), ("'Hausfreund", 'Hausfreund'), ("'Hausfre", 'Hausfre')] PUR19180411-V17-36-page1.txt: [("'of", 'of')] PUR19180411-V17-36-page3.txt: [("'superintenpublishing", 'superintenpublishing'), ("'is", 'is')] PUR19180411-V17-36-page4.txt: [("'of", 'of')] PUR19180411-V17-36-page5.txt: [("'Lord", 'Lord')] PUR19180411-V17-36-page6.txt: [("'early", 'early'), ("'On", 'On'), ("'Over", 'Over'), ("'Year", 'Year'), ("'and", 'and')] PUR19180418-V17-37-page3.txt: [("'it", 'it'), ("'the", 'the'), ("'a", 'a'), ("'state", 'state')] PUR19180418-V17-37-page8.txt: [("'The", 'The')] PUR19180425-V17-38-page1.txt: [("'Spirit", 'Spirit'), ("'leaser", 'leaser'), ("'Sunday", 'Sunday'), ("'Christian", 'Christian'), ("'sect.", 'sect.'), ("'.a-.", '.a-.')] PUR19180425-V17-38-page2.txt: [("'While", 'While')] PUR19180425-V17-38-page6.txt: [("'Cast", 'Cast')] PUR19180502-V17-39-page1.txt: [("'We", 'We')] PUR19180502-V17-39-page2.txt: [("'I", 'I'), ("'Then", 'Then'), ("'No", 'No'), ("'You", 'You'), ("'The", 'The'), ("'Armageddon", 'Armageddon'), ("'I", 'I'), ("'Come", 'Come')] PUR19180502-V17-39-page6.txt: [("'The", 'The')] PUR19180502-V17-39-page8.txt: [("'Signs", 'Signs'), ("'home", 'home'), ("'Signs.", 'Signs.')] PUR19180509-V17-40-page1.txt: [("'It", 'It')] PUR19180509-V17-40-page6.txt: [("'with", 'with'), ("'REVIEW", 'REVIEW'), ("'Elder", 'Elder'), ("'Review", 'Review')] PUR19180509-V17-40-page7.txt: [('\'\'Recorder"', 'Recorder"'), ("'he", 'he')] PUR19180516-V17-41-page5.txt: [("'getting", 'getting')] PUR19180516-V17-41-page8.txt: [("'Bibles", 'Bibles')] PUR19180523-V17-42-page1.txt: [("'Educational", 'Educational'), ("'money", 'money'), ("'That", 'That')] PUR19180523-V17-42-page2.txt: [("'days", 'days')] PUR19180523-V17-42-page5.txt: [("'with", 'with')] PUR19180523-V17-42-page7.txt: [("'Vollmer", 'Vollmer'), ("'ill", 'ill')] PUR19180530-V17-43-page1.txt: [("'An", 'An'), ("'to", 'to'), ("'And", 'And'), ("'to", 'to'), ("'Thy", 'Thy')] PUR19180530-V17-43-page3.txt: [("'Present", 'Present'), ("'Signs", 'Signs'), ("'Present", 'Present')] PUR19180530-V17-43-page6.txt: [("'secretary", 'secretary')] PUR19180530-V17-43-page8.txt: [("'Daily", 'Daily'), ("'thoroughly", 'thoroughly'), ("'You", 'You')] PUR19180606-V17-44-page1.txt: [("'Return", 'Return'), ("'The", 'The'), ("'like", 'like'), ("'Controindicating", 'Controindicating'), ("'Practical", 'Practical')] PUR19180606-V17-44-page3.txt: [("'It", 'It')] PUR19180606-V17-44-page4.txt: [("'Review", 'Review'), ('\'Recorder."', 'Recorder."')] PUR19180606-V17-44-page7.txt: [("'vices", 'vices'), ("'Leave", 'Leave')] PUR19180606-V17-44-page8.txt: [("'thus", 'thus'), ("'super", 'super')] PUR19180613-V17-45-page1.txt: [("'ege", 'ege')] PUR19180613-V17-45-page2.txt: [("'The", 'The')] PUR19180613-V17-45-page3.txt: [("'and", 'and')] PUR19180613-V17-45-page5.txt: [("'The", 'The')] PUR19180613-V17-45-page6.txt: [("'to", 'to')] PUR19180620-V17-46-page1.txt: [("'Educational", 'Educational'), ("'Executive", 'Executive')] PUR19180620-V17-46-page4.txt: [("'us", 'us')] PUR19180620-V17-46-page6.txt: [("'Ring", 'Ring'), ("'Spirit", 'Spirit'), ("'Sabbath", 'Sabbath')] PUR19180620-V17-46-page7.txt: [("'formation", 'formation')] PUR19180620-V17-46-page8.txt: [("'Frederick", 'Frederick'), ("'at", 'at'), ("'.", '.'), ("'Salt", 'Salt')] PUR19180627-V17-47-page1.txt: [('\'"I\'\'\'\'.."', '"I.."')] PUR19180627-V17-47-page2.txt: [("'centers", 'centers')] PUR19180627-V17-47-page3.txt: [("'nave", 'nave'), ("'in", 'in'), ("'the", 'the'), ("'ife", 'ife'), ("'eneed.", 'eneed.'), ("'and", 'and')] PUR19180704-V17-48-page2.txt: [("'neath", 'neath'), ("'Twas", 'Twas'), ("'One", 'One')] PUR19180704-V17-48-page6.txt: [("'afternoon", 'afternoon')] PUR19180704-V17-48-page8.txt: [("'Los", 'Los')] PUR19180711-V17-49-page1.txt: [("'Signs", 'Signs')] PUR19180711-V17-49-page6.txt: [("'It", 'It')] PUR19180711-V17-49-page7.txt: [("'Duration", 'Duration')] PUR19180711-V17-49-page8.txt: [("'Twas", 'Twas')] PUR19180718-V17-50-page1.txt: [("'to", 'to')] PUR19180718-V17-50-page3.txt: [("'entered", 'entered')] PUR19180725-V17-51-page2.txt: [("'Christian", 'Christian'), ("'We", 'We')] PUR19180801-V17-52-page3.txt: [("'the", 'the'), ("'time", 'time')] PUR19180801-V17-52-page6.txt: [("'been", 'been')] PUR19180801-V17-52-page7.txt: [('\'\'Recorder"', 'Recorder"')] PUR19180801-V17-52-page8.txt: [("'co", 'co')] PUR19180808-V18-01-page1.txt: [("'Office", 'Office')] PUR19180808-V18-01-page3.txt: [("'God", 'God')] PUR19180808-V18-01-page8.txt: [("'Tis", 'Tis')] PUR19180815-V18-02-page1.txt: [("'VOL.", 'VOL.'), ("'we", 'we')] PUR19180815-V18-02-page2.txt: [("'thus", 'thus')] PUR19180815-V18-02-page5.txt: [("'Boys", 'Boys')] PUR19180815-V18-02-page8.txt: [("'Signs", 'Signs'), ("'ong", 'ong')] PUR19180822-V18-03-page3.txt: [("'till", 'till')] PUR19180822-V18-03-page5.txt: [("'Duration", 'Duration')] PUR19180829-V18-04-page2.txt: [("'Son", 'Son'), ("'I", 'I'), ("'be", 'be')] PUR19180829-V18-04-page3.txt: [("'Watchman", 'Watchman'), ("'Go", 'Go')] PUR19180829-V18-04-page5.txt: [("'changes", 'changes')] PUR19180829-V18-04-page8.txt: [("'Signs", 'Signs')] PUR19180905-V18-05-page1.txt: [("'office", 'office'), ("'mp-meeting", 'mp-meeting')] PUR19180905-V18-05-page2.txt: [("'A", 'A')] PUR19180905-V18-05-page3.txt: [("'canvassing", 'canvassing'), ("'unanimous", 'unanimous')] PUR19180905-V18-05-page6.txt: [("'section", 'section'), ("'twill", 'twill')] PUR19180905-V18-05-page8.txt: [("'Twenty", 'Twenty')] PUR19180912-V18-06-page1.txt: [("'to", 'to')] PUR19180912-V18-06-page3.txt: [("'c", 'c'), ("'s", 's'), ("'me.", 'me.')] PUR19180912-V18-06-page5.txt: [("'East", 'East')] PUR19180912-V18-06-page7.txt: [("'be", 'be')] PUR19180919-V18-07-page2.txt: [("'be", 'be')] PUR19180919-V18-07-page4.txt: [("'laborers", 'laborers')] PUR19180919-V18-07-page5.txt: [("'You", 'You'), ("'till", 'till'), ("'cause", 'cause'), ("'My", 'My'), ("'till", 'till'), ("'till", 'till')] PUR19180919-V18-07-page8.txt: [("'educational", 'educational')] PUR19180926-V18-08-page1.txt: [("'I'm", 'Im')] PUR19180926-V18-08-page2.txt: [("'along", 'along')] PUR19180926-V18-08-page3.txt: [("'Over", 'Over')] PUR19180926-V18-08-page7.txt: [("'au", 'au')] PUR19181003-V18-09-page4.txt: [("'Review", 'Review')] PUR19181003-V18-09-page5.txt: [("'Tinally", 'Tinally'), ("'Be", 'Be'), ("'have", 'have'), ("'Present", 'Present'), ("'Present", 'Present'), ("'Present", 'Present')] PUR19181003-V18-09-page8.txt: [("'are", 'are')] PUR19181010-V18-10-page2.txt: [("'If", 'If')] PUR19181010-V18-10-page3.txt: [("'Here", 'Here'), ("'Go", 'Go'), ("'btilletlit", 'btilletlit')] PUR19181010-V18-10-page8.txt: [("'The", 'The'), ("'present", 'present'), ("'The", 'The'), ("'Who", 'Who')] PUR19181017-V18-11-page1.txt: [("'General", 'General'), ("'The", 'The')] PUR19181017-V18-11-page2.txt: [("'Every", 'Every')] PUR19181017-V18-11-page3.txt: [("'Academy", 'Academy'), ("'our", 'our')] PUR19181017-V18-11-page4.txt: [("'tis", 'tis')] PUR19181017-V18-11-page5.txt: [("'s", 's')] PUR19181017-V18-11-page7.txt: [("'The", 'The')] PUR19181017-V18-11-page8.txt: [("'this", 'this'), ("'by", 'by')] PUR19181024-V18-12-page1.txt: [("'Young", 'Young'), ("'Executive", 'Executive'), ("'secure", 'secure'), ("'conferred", 'conferred'), ('\'"Opportunity', '"Opportunity')] PUR19181024-V18-12-page5.txt: [("'trip", 'trip')] PUR19181024-V18-12-page7.txt: [("'Southern", 'Southern')] PUR19181024-V18-12-page8.txt: [("'Sick", 'Sick')] PUR19181031-V18-13-page1.txt: [("'by", 'by'), ("'the", 'the')] PUR19181031-V18-13-page3.txt: [("'Let", 'Let'), ("'The", 'The'), ("'line.", 'line.')] PUR19181031-V18-13-page4.txt: [("'the", 'the')] PUR19181031-V18-13-page5.txt: [("'the", 'the')] PUR19181031-V18-13-page6.txt: [("'profitably", 'profitably')] PUR19181031-V18-13-page7.txt: [("'Honey", 'Honey'), ("'Jesus", 'Jesus'), ("'Thoughts", 'Thoughts'), ("'lug", 'lug')] PUR19181031-V18-13-page8.txt: [("'old", 'old'), ("'I", 'I'), ("'Oakland", 'Oakland'), ("'Well", 'Well')] PUR19181107-V18-14-page1.txt: [("'teaser", 'teaser'), ("'I", 'I')] PUR19181107-V18-14-page2.txt: [("'a", 'a'), ("'Object", 'Object')] PUR19181107-V18-14-page5.txt: [("'hoped", 'hoped')] PUR19181107-V18-14-page6.txt: [("'Oh", 'Oh'), ("'that", 'that'), ("'I", 'I'), ("'not", 'not'), ("'forgood", 'forgood'), ("'Work.", 'Work.'), ("'I", 'I'), ("'in", 'in'), ("'Search", 'Search')] PUR19181107-V18-14-page7.txt: [("'and", 'and'), ("'apple", 'apple'), ("'Roney", 'Roney'), ("'two", 'two'), ("'.", '.'), ("'Burrows", 'Burrows')] PUR19181107-V18-14-page8.txt: [("'Conference", 'Conference'), ("'influence", 'influence')] PUR19181114-V18-15-page1.txt: [("'VOL.", 'VOL.'), ("'WV", 'WV'), ("'Secretary", 'Secretary'), ("'Young", 'Young')] PUR19181114-V18-15-page2.txt: [("'spoken", 'spoken')] PUR19181114-V18-15-page4.txt: [("'the", 'the')] PUR19181114-V18-15-page5.txt: [("'TIDINGS", 'TIDINGS'), ("'being", 'being')] PUR19181114-V18-15-page7.txt: [('\'\'Recorder"', 'Recorder"')] PUR19181121-V18-16-page1.txt: [("'Office", 'Office'), ("'Secretary", 'Secretary'), ("'Now", 'Now')] PUR19181121-V18-16-page5.txt: [("'brother", 'brother')] PUR19181121-V18-16-page6.txt: [("'Never", 'Never'), ("'of", 'of'), ("'Where", 'Where'), ("'Pardon", 'Pardon'), ("'I", 'I')] PUR19181121-V18-16-page7.txt: [("'work", 'work'), ("'at", 'at'), ('\'Recorder"', 'Recorder"')] PUR19181121-V18-16-page8.txt: [("'Present", 'Present')] PUR19181128-V18-17-page1.txt: [("'dren.", 'dren.'), ("'page", 'page')] PUR19181128-V18-17-page2.txt: [("'of", 'of'), ("'yet", 'yet'), ("'long", 'long'), ("'be", 'be'), ("'liberally", 'liberally')] PUR19181128-V18-17-page4.txt: [("'to", 'to'), ("'adobe", 'adobe'), ("'Best", 'Best'), ("'Bible", 'Bible'), ("'Best", 'Best'), ("'Best", 'Best'), ("'lufies", 'lufies')] PUR19181128-V18-17-page5.txt: [("'give", 'give'), ("'touch", 'touch')] PUR19181128-V18-17-page7.txt: [("'insurinformation", 'insurinformation')] PUR19181205-V18-18-page1.txt: [("'little", 'little'), ("'past", 'past')] PUR19181205-V18-18-page2.txt: [("'The", 'The')] PUR19181205-V18-18-page3.txt: [("'of", 'of'), ("'and", 'and')] PUR19181205-V18-18-page5.txt: [("'s", 's'), ("'expense.", 'expense.'), ("'my", 'my'), ("'faithas", 'faithas')] PUR19181212-V18-19-page2.txt: [("'ire", 'ire')] PUR19181212-V18-19-page4.txt: [("'however", 'however'), ("'Angeles", 'Angeles')] PUR19181212-V18-19-page5.txt: [("'Wallace", 'Wallace'), ("'WE", 'WE'), ("'Heights", 'Heights')] PUR19181212-V18-19-page6.txt: [("'Advance", 'Advance'), ("'Elo", 'Elo')] PUR19181212-V18-19-page7.txt: [('\'Recorder"', 'Recorder"')] PUR19181212-V18-19-page8.txt: [("'Would", 'Would')] PUR19181219-V18-20-page1.txt: [("'One", 'One'), ("'Therefore", 'Therefore')] PUR19181219-V18-20-page3.txt: [("'but", 'but')] PUR19181219-V18-20-page6.txt: [("'The", 'The')] PUR19181219-V18-20-page7.txt: [('\'\'Recorder"', 'Recorder"'), ("'Santa", 'Santa')] PUR19181219-V18-20-page8.txt: [("'Cal.", 'Cal.')] PUR19181226-V18-21-page1.txt: [("'Secretary", 'Secretary'), ("'General", 'General'), ("'Upon", 'Upon')] PUR19181226-V18-21-page2.txt: [("'I", 'I')] PUR19181226-V18-21-page3.txt: [("'Signs", 'Signs'), ("'That", 'That')] PUR19181226-V18-21-page4.txt: [('\'Review.\'"', 'Review."')] PUR19181226-V18-21-page5.txt: [("'from", 'from'), ("'other", 'other')] PUR19181226-V18-21-page6.txt: [("'The", 'The'), ("'help", 'help')] PUR19181226-V18-21-page7.txt: [("'Two", 'Two'), ("'Elder", 'Elder'), ("'our", 'our'), ("'born", 'born')] PUR19181226-V18-21-page8.txt: [("'apostle", 'apostle'), ("'tis", 'tis'), ("'our", 'our'), ("'Abbas", 'Abbas'), ("'ablier.", 'ablier.'), ("'Our", 'Our'), ("'they", 'they')] PUR19190102-V18-22-page1.txt: [("'So", 'So'), ("'To", 'To')] PUR19190102-V18-22-page2.txt: [("'lents", 'lents')] PUR19190102-V18-22-page3.txt: [("'I", 'I'), ("'sever", 'sever'), ("'of", 'of'), ("'The", 'The')] PUR19190102-V18-22-page4.txt: [("'Just", 'Just')] PUR19190102-V18-22-page5.txt: [("'lope.", 'lope.'), ("'sorot", 'sorot')] PUR19190102-V18-22-page6.txt: [("'near", 'near')] PUR19190102-V18-22-page7.txt: [("'periodical", 'periodical'), ("'catch", 'catch'), ("'take", 'take'), ("'to", 'to')] PUR19190109-V18-23-page3.txt: [("'school.", 'school.')] PUR19190109-V18-23-page4.txt: [("'other", 'other')] PUR19190109-V18-23-page5.txt: [("'the", 'the'), ("'Shanghai", 'Shanghai'), ("'began", 'began')] PUR19190116-V18-24-page1.txt: [("'General", 'General'), ("'Young", 'Young'), ("'Publicity", 'Publicity'), ("'God.", 'God.'), ("'the", 'the'), ("'further", 'further')] PUR19190116-V18-24-page3.txt: [("'Should", 'Should'), ("'greater", 'greater'), ("'added", 'added')] PUR19190116-V18-24-page5.txt: [("'of", 'of'), ("'We", 'We'), ("'Surely", 'Surely'), ("'books.", 'books.'), ("'a", 'a'), ("'meats", 'meats')] PUR19190116-V18-24-page6.txt: [("'now", 'now'), ("'finish", 'finish')] PUR19190116-V18-24-page8.txt: [("'be", 'be')] PUR19190123-V18-25-page3.txt: [("'Gates", 'Gates')] PUR19190123-V18-25-page4.txt: [("'Angeles", 'Angeles')] PUR19190123-V18-25-page5.txt: [("'Go", 'Go'), ("'Why", 'Why')] PUR19190123-V18-25-page7.txt: [("'of", 'of')] PUR19190123-V18-25-page8.txt: [("'printed", 'printed'), ("'w.es", 'w.es')] PUR19190130-V18-26-page1.txt: [("'On", 'On'), ("'Though", 'Though'), ("'He", 'He'), ("'and", 'and')] PUR19190130-V18-26-page3.txt: [("'We", 'We'), ("'Well", 'Well'), ("'Conf.", 'Conf.'), ("'still", 'still'), ("'a", 'a'), ("'Personal", 'Personal'), ("'by", 'by')] PUR19190130-V18-26-page4.txt: [("'Impossible", 'Impossible'), ("'Genthat", 'Genthat'), ("'.", '.'), ("'Why", 'Why'), ("'Ammunition", 'Ammunition')] PUR19190130-V18-26-page5.txt: [("'of", 'of')] PUR19190130-V18-26-page6.txt: [("'His", 'His'), ("'and", 'and'), ("'near", 'near'), ("'and", 'and'), ("'front", 'front'), ("'of", 'of'), ("'he", 'he')] PUR19190130-V18-26-page7.txt: [("'RE'CORDER", 'RECORDER'), ("'to", 'to'), ("'Sunday", 'Sunday')] PUR19190130-V18-26-page8.txt: [("'Co", 'Co')] PUR19190206-V18-27-page1.txt: [("'But", 'But')] PUR19190206-V18-27-page2.txt: [("'nurses", 'nurses')] PUR19190206-V18-27-page4.txt: [("'flagrant", 'flagrant')] PUR19190206-V18-27-page5.txt: [("'I", 'I'), ("'Yes", 'Yes')] PUR19190206-V18-27-page6.txt: [("'Great", 'Great'), ("'God", 'God'), ("'Thy", 'Thy'), ("'Sister", 'Sister')] PUR19190206-V18-27-page7.txt: [("'ller", 'ller')] PUR19190213-V18-28-page1.txt: [("'General", 'General')] PUR19190213-V18-28-page3.txt: [("'these", 'these'), ("'Signs", 'Signs')] PUR19190213-V18-28-page5.txt: [("'for", 'for'), ("'joyfully", 'joyfully'), ("'ye", 'ye'), ("'third", 'third'), ("'old", 'old'), ("'Rejoice", 'Rejoice'), ("'for", 'for'), ("'a", 'a'), ("'In", 'In'), ("'no", 'no')] PUR19190213-V18-28-page6.txt: [("'May", 'May')] PUR19190213-V18-28-page7.txt: [("'leaves", 'leaves'), ("'in", 'in')] PUR19190220-V18-29-page1.txt: [("'the", 'the'), ("'to", 'to'), ("'voted", 'voted'), ("'page", 'page'), ("'Xou", 'Xou'), ("'both", 'both')] PUR19190220-V18-29-page2.txt: [("'signatures", 'signatures'), ("'than", 'than')] PUR19190220-V18-29-page4.txt: [("'visited", 'visited'), ("'to", 'to'), ("'peonle", 'peonle'), ("'door", 'door'), ("'than", 'than')] PUR19190220-V18-29-page5.txt: [("'conditions", 'conditions'), ("'the", 'the')] PUR19190220-V18-29-page6.txt: [("'The", 'The'), ("'intensely", 'intensely'), ("'The", 'The')] PUR19190220-V18-29-page7.txt: [("'come.", 'come.')] PUR19190220-V18-29-page8.txt: [("'ft", 'ft'), ("'stalwart", 'stalwart'), ("'United", 'United'), ("'a", 'a')] PUR19190227-V18-30-page1.txt: [("'office", 'office')] PUR19190227-V18-30-page2.txt: [("'and", 'and'), ("'of", 'of'), ("'are", 'are')] PUR19190227-V18-30-page4.txt: [("'it", 'it'), ("'to", 'to'), ("'the", 'the'), ("'of", 'of'), ("'sight", 'sight'), ("'work", 'work'), ("'people", 'people')] PUR19190227-V18-30-page5.txt: [("'have", 'have')] PUR19190227-V18-30-page6.txt: [("'Open", 'Open')] PUR19190227-V18-30-page7.txt: [("'insertion", 'insertion'), ("'al.", 'al.')] PUR19190227-V18-30-page8.txt: [("'become", 'become'), ("'the", 'the'), ("'and", 'and'), ("'be", 'be'), ("'not", 'not')] PUR19190306-V18-31-page1.txt: [("'and", 'and')] PUR19190306-V18-31-page2.txt: [("'two", 'two')] PUR19190306-V18-31-page5.txt: [("'condition", 'condition'), ("'Sane", 'Sane')] PUR19190306-V18-31-page6.txt: [("'only", 'only')] PUR19190306-V18-31-page7.txt: [("'Portland", 'Portland')] PUR19190306-V18-31-page8.txt: [("'themost", 'themost'), ("'being", 'being'), ("'taken.", 'taken.'), ("'been", 'been'), ("'the", 'the')] PUR19190313-V18-32-page2.txt: [("'Let", 'Let')] PUR19190313-V18-32-page3.txt: [("'licelast", 'licelast'), ("'greatest", 'greatest')] PUR19190313-V18-32-page4.txt: [('\'Signs"', 'Signs"')] PUR19190313-V18-32-page5.txt: [("'work", 'work'), ('\'Recorder.\'"', 'Recorder."')] PUR19190313-V18-32-page6.txt: [("'Present", 'Present')] PUR19190313-V18-32-page7.txt: [("'Lawrence", 'Lawrence'), ("'More", 'More')] PUR19190313-V18-32-page8.txt: [("'secured.", 'secured.'), ("'opportunity", 'opportunity'), ("'on", 'on')] PUR19190320-V18-33-page3.txt: [("'unless", 'unless'), ("'God", 'God')] PUR19190320-V18-33-page4.txt: [("'exercises.", 'exercises.'), ("'Missions", 'Missions')] PUR19190320-V18-33-page5.txt: [("'were", 'were')] PUR19190320-V18-33-page6.txt: [("'of", 'of'), ("'our", 'our'), ("'true", 'true')] PUR19190320-V18-33-page7.txt: [("'.g", '.g')] PUR19190327-V18-34-page1.txt: [("'school", 'school'), ("'Tehachapi", 'Tehachapi')] PUR19190327-V18-34-page2.txt: [("'brothers", 'brothers'), ("'blessings", 'blessings'), ("'liberality", 'liberality'), ("'before", 'before'), ("'through", 'through'), ("'icingdoila", 'icingdoila'), ("'cc", 'cc'), ("'I", 'I'), ("'the", 'the')] PUR19190327-V18-34-page3.txt: [("'these", 'these'), ("'Study", 'Study'), ("'has", 'has'), ("'offerings", 'offerings'), ("'possible", 'possible')] PUR19190327-V18-34-page5.txt: [("'werk", 'werk'), ("''CallifOrnia.", 'CallifOrnia.'), ("'good", 'good')] PUR19190327-V18-34-page6.txt: [("'March", 'March')] PUR19190327-V18-34-page7.txt: [("'the", 'the')] PUR19190327-V18-34-page8.txt: [("'Go", 'Go'), ("'world", 'world')] PUR19190403-V18-35-page2.txt: [("'the", 'the'), ("'during", 'during')] PUR19190403-V18-35-page3.txt: [("'bill", 'bill')] PUR19190410-V18-36-page1.txt: [("'VOL.", 'VOL.'), ("'Hen.", 'Hen.')] PUR19190410-V18-36-page3.txt: [("'societies", 'societies'), ("'in", 'in'), ("'our", 'our')] PUR19190410-V18-36-page7.txt: [("'Lovestedt", 'Lovestedt')] PUR19190410-V18-36-page8.txt: [("'are", 'are')] PUR19190417-V18-37-page2.txt: [("'s", 's'), ("'I", 'I'), ('\'God."', 'God."'), ("'I", 'I'), ("'Upon", 'Upon')] PUR19190417-V18-37-page4.txt: [("'as", 'as')] PUR19190417-V18-37-page5.txt: [("'suresage", 'suresage'), ("'end", 'end')] PUR19190417-V18-37-page7.txt: [("'address.", 'address.'), ("'PACIFI'C", 'PACIFIC'), ("'Office", 'Office'), ("'M.", 'M.')] PUR19190424-V18-38-page1.txt: [("'east", 'east'), ("'should", 'should'), ("'of", 'of')] PUR19190424-V18-38-page2.txt: [('\'neighbOring"', 'neighbOring"'), ("'idea.", 'idea.'), ("'will", 'will'), ("'have", 'have'), ("'that", 'that'), ("'left", 'left'), ('\'"SigriS', '"SigriS')] PUR19190424-V18-38-page3.txt: [("'We", 'We'), ("'The", 'The'), ("'by", 'by'), ("'a", 'a')] PUR19190424-V18-38-page5.txt: [("'UNION", 'UNION'), ("'the", 'the')] PUR19190424-V18-38-page7.txt: [("'blessing", 'blessing'), ("'Church", 'Church'), ("'esteemed", 'esteemed')] PUR19190424-V18-38-page8.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs'), ("'the", 'the')] PUR19190501-V18-39-page1.txt: [("'more", 'more'), ("'throne", 'throne'), ("'deaths", 'deaths'), ("'doing", 'doing'), ("'with", 'with'), ("'Vain", 'Vain'), ("'souls", 'souls')] PUR19190501-V18-39-page2.txt: [("'Several", 'Several'), ("'outside", 'outside')] PUR19190501-V18-39-page3.txt: [("'fail", 'fail')] PUR19190501-V18-39-page4.txt: [("'Utah", 'Utah'), ("'also", 'also')] PUR19190501-V18-39-page5.txt: [("'Several", 'Several'), ("'better", 'better')] PUR19190501-V18-39-page6.txt: [("'the", 'the'), ("'the", 'the')] PUR19190501-V18-39-page7.txt: [("'Fernando", 'Fernando')] PUR19190501-V18-39-page8.txt: [("'.", '.'), ("'walls", 'walls'), ("'ISP", 'ISP')] PUR19190508-V18-40-page1.txt: [("'to", 'to'), ("'character", 'character')] PUR19190508-V18-40-page3.txt: [("'body", 'body'), ("'by", 'by'), ("'be", 'be'), ("'by", 'by')] PUR19190508-V18-40-page5.txt: [("'may", 'may')] PUR19190508-V18-40-page6.txt: [("'Uncle", 'Uncle')] PUR19190508-V18-40-page7.txt: [("'Cal.", 'Cal.'), ("'the", 'the')] PUR19190515-V18-41-page1.txt: [("'the", 'the'), ("'be", 'be')] PUR19190515-V18-41-page3.txt: [("'Iv", 'Iv'), ("'Notes", 'Notes')] PUR19190515-V18-41-page4.txt: [("'Practical", 'Practical')] PUR19190515-V18-41-page5.txt: [("'Oakland", 'Oakland'), ("'reform", 'reform')] PUR19190515-V18-41-page6.txt: [("'by", 'by')] PUR19190522-V18-42-page1.txt: [("'due", 'due')] PUR19190522-V18-42-page2.txt: [("'almost", 'almost')] PUR19190522-V18-42-page3.txt: [("'is", 'is'), ("'saving", 'saving')] PUR19190522-V18-42-page6.txt: [("'rages", 'rages')] PUR19190522-V18-42-page8.txt: [("'Interests", 'Interests')] PUR19190529-V18-43-page1.txt: [("'Present", 'Present'), ("'The", 'The'), ("'Present", 'Present'), ("'The", 'The'), ("'Will", 'Will'), ("'Present", 'Present'), ("'Present", 'Present'), ("'Present", 'Present')] PUR19190529-V18-43-page2.txt: [("'past", 'past'), ("'year", 'year')] PUR19190529-V18-43-page3.txt: [("'rich", 'rich')] PUR19190529-V18-43-page6.txt: [("'sent", 'sent'), ("'Bible", 'Bible'), ("'but", 'but'), ("'because", 'because'), ("'while", 'while')] PUR19190529-V18-43-page8.txt: [("'Ye", 'Ye'), ("'But", 'But'), ("'their.", 'their.')] PUR19190605-V18-44-page2.txt: [("'These", 'These')] PUR19190605-V18-44-page3.txt: [("'behalf", 'behalf')] PUR19190605-V18-44-page5.txt: [("'pray", 'pray')] PUR19190605-V18-44-page8.txt: [("'Tis", 'Tis'), ("'but", 'but'), ("'Visalia", 'Visalia')] PUR19190612-V18-45-page2.txt: [("'Nehemiah", 'Nehemiah')] PUR19190612-V18-45-page5.txt: [("'Brother", 'Brother'), ("'D.", 'D.'), ("'Royer", 'Royer')] PUR19190612-V18-45-page7.txt: [("'uncomplainingly", 'uncomplainingly'), ("'Steward", 'Steward')] PUR19190612-V18-45-page8.txt: [("'Practical", 'Practical')] PUR19190619-V18-46-page1.txt: [("'visited", 'visited')] PUR19190619-V18-46-page2.txt: [("'the", 'the'), ("'al.", 'al.')] PUR19190619-V18-46-page3.txt: [("'to", 'to')] PUR19190619-V18-46-page5.txt: [("'Urquhart", 'Urquhart')] PUR19190619-V18-46-page7.txt: [("'On", 'On')] PUR19190626-V18-47-page1.txt: [("'Prepared", 'Prepared')] PUR19190626-V18-47-page3.txt: [("'Well", 'Well'), ("'Bear", 'Bear')] PUR19190626-V18-47-page5.txt: [("'people", 'people')] PUR19190626-V18-47-page7.txt: [("'sound", 'sound'), ("'Schafer", 'Schafer')] PUR19190703-V18-48-page1.txt: [("'e", 'e')] PUR19190703-V18-48-page2.txt: [("'Are", 'Are'), ("'Yes", 'Yes'), ("'this", 'this')] PUR19190703-V18-48-page4.txt: [("'that", 'that')] PUR19190703-V18-48-page5.txt: [("'Twixt", 'Twixt'), ("'tis", 'tis')] PUR19190703-V18-48-page7.txt: [("'Farnsworth", 'Farnsworth'), ("'mile", 'mile')] PUR19190703-V18-48-page8.txt: [("'Watchman", 'Watchman'), ("'immigrants", 'immigrants')] PUR19190710-V18-49-page1.txt: [("'Review", 'Review')] PUR19190710-V18-49-page2.txt: [("'proclamation", 'proclamation'), ("'this", 'this')] PUR19190710-V18-49-page3.txt: [("'until", 'until'), ("'ottr", 'ottr')] PUR19190710-V18-49-page5.txt: [("'to", 'to'), ("'Literary", 'Literary'), ("'is", 'is')] PUR19190710-V18-49-page7.txt: [("'Presno", 'Presno')] PUR19190710-V18-49-page8.txt: [("'reported", 'reported')] PUR19190717-V18-50-page2.txt: [("'Santa", 'Santa'), ("'Trans", 'Trans'), ("'the", 'the'), ("'to", 'to')] PUR19190717-V18-50-page3.txt: [("'looking", 'looking'), ("'raged", 'raged')] PUR19190717-V18-50-page8.txt: [("'Weekly", 'Weekly')] PUR19190724-V18-51-page2.txt: [("'to", 'to'), ("'Present", 'Present')] PUR19190724-V18-51-page3.txt: [("'benefited", 'benefited')] PUR19190724-V18-51-page5.txt: [("'Present", 'Present')] PUR19190724-V18-51-page6.txt: [("'whether", 'whether')] PUR19190724-V18-51-page7.txt: [("'Valley", 'Valley')] PUR19190731-V18-52-page3.txt: [("'industrial", 'industrial'), ("'associates", 'associates'), ("'becomeS", 'becomeS')] PUR19190731-V18-52-page5.txt: [("'S.", 'S.')] PUR19190731-V18-52-page7.txt: [("'between.", 'between.'), ("''The", 'The')] PUR19190807-V19-01-page1.txt: [("'At", 'At'), ("'Whatsoever", 'Whatsoever')] PUR19190807-V19-01-page2.txt: [("'trig", 'trig')] PUR19190807-V19-01-page3.txt: [("'hills", 'hills'), ("'Who", 'Who'), ("'Present", 'Present'), ("'I", 'I'), ("'for", 'for'), ("'Great", 'Great')] PUR19190807-V19-01-page5.txt: [("'Washington", 'Washington'), ("'neighbors", 'neighbors'), ("'Portuguese", 'Portuguese')] PUR19190807-V19-01-page6.txt: [("'as", 'as'), ("'this", 'this'), ("'that", 'that'), ("'a", 'a')] PUR19190807-V19-01-page7.txt: [("'transaction", 'transaction'), ("'Six", 'Six')] PUR19190814-V19-02-page3.txt: [("'the", 'the')] PUR19190814-V19-02-page4.txt: [("'No.", 'No.')] PUR19190814-V19-02-page5.txt: [("'and", 'and'), ("'eaCh", 'eaCh'), ("'so", 'so'), ("'Ilan.", 'Ilan.')] PUR19190814-V19-02-page7.txt: [("'RA", 'RA'), ("'one", 'one'), ("'Cal.", 'Cal.'), ("'further", 'further')] PUR19190814-V19-02-page8.txt: [("'SPECIAL", 'SPECIAL'), ("'be", 'be')] PUR19190821-V19-03-page2.txt: [('\'burneth."', 'burneth."'), ("'Sat", 'Sat'), ("'liberally", 'liberally')] PUR19190821-V19-03-page3.txt: [("'Signs", 'Signs'), ("'acquainted", 'acquainted'), ("'over", 'over'), ("'anxiouS", 'anxiouS')] PUR19190821-V19-03-page4.txt: [("'candy", 'candy')] PUR19190821-V19-03-page6.txt: [('\'Liberty.\'"', 'Liberty."'), ("'threefold", 'threefold')] PUR19190821-V19-03-page7.txt: [("'Review", 'Review'), ("'also", 'also'), ("'Wanted.-Home", 'Wanted.-Home'), ("'Sebasfripol", 'Sebasfripol')] PUR19190904-V19-04-page1.txt: [("'As", 'As'), ("'One", 'One')] PUR19190904-V19-04-page5.txt: [("'a", 'a')] PUR19190904-V19-04-page6.txt: [("'Present", 'Present')] PUR19190911-V19-05-page1.txt: [("'If", 'If'), ("'the", 'the'), ("'Tell", 'Tell'), ("'Fruit", 'Fruit'), ("'On", 'On')] PUR19190911-V19-05-page8.txt: [("'Poe.", 'Poe.')] PUR19190918-V19-06-page2.txt: [("'this", 'this'), ("'to", 'to'), ("'that", 'that'), ("'with", 'with'), ("'twelve", 'twelve'), ("'twenty", 'twenty')] PUR19190918-V19-06-page5.txt: [("'a", 'a')] PUR19190918-V19-06-page6.txt: [("'this", 'this'), ("'Appeal", 'Appeal')] PUR19190918-V19-06-page7.txt: [("'College", 'College'), ("'chard", 'chard'), ("'Bennett", 'Bennett')] PUR19190918-V19-06-page8.txt: [("'SEPTEMBER", 'SEPTEMBER'), ("'they", 'they')] PUR19190925-V19-07-page2.txt: [("'in", 'in'), ("'now", 'now')] PUR19190925-V19-07-page5.txt: [("'by", 'by'), ("'Twas", 'Twas'), ("'Twas", 'Twas'), ("'twas", 'twas')] PUR19190925-V19-07-page8.txt: [("'enters", 'enters')] PUR19191002-V19-08-page1.txt: [("'Missions", 'Missions'), ("'Tune", 'Tune'), ("'The", 'The'), ("'The", 'The'), ("'That", 'That'), ("'The", 'The'), ("'seeing", 'seeing'), ("'have", 'have')] PUR19191002-V19-08-page2.txt: [("'it", 'it'), ("'maybe", 'maybe'), ("'til", 'til'), ("'quit", 'quit')] PUR19191002-V19-08-page3.txt: [("'the", 'the'), ("'be", 'be'), ("'of", 'of')] PUR19191002-V19-08-page5.txt: [("'Onward", 'Onward'), ("'overwhelms", 'overwhelms'), ("'on", 'on'), ("'Twas", 'Twas')] PUR19191002-V19-08-page6.txt: [("'everywhere.", 'everywhere.'), ("'be", 'be'), ("'Tis", 'Tis'), ("'in", 'in')] PUR19191002-V19-08-page8.txt: [("'Weekly", 'Weekly'), ("'town", 'town'), ("'Conference.", 'Conference.')] PUR19191009-V19-09-page1.txt: [("'His", 'His')] PUR19191009-V19-09-page3.txt: [("'constant", 'constant'), ("'twixt", 'twixt')] PUR19191009-V19-09-page4.txt: [("'the", 'the')] PUR19191009-V19-09-page6.txt: [("'Man", 'Man'), ("'be", 'be'), ("'Signs", 'Signs')] PUR19191016-V19-10-page1.txt: [("'asalude..", 'asalude..'), ("'work", 'work')] PUR19191016-V19-10-page3.txt: [("'Banos", 'Banos')] PUR19191016-V19-10-page4.txt: [("'The", 'The'), ("'everlasting", 'everlasting')] PUR19191016-V19-10-page5.txt: [("'.", '.'), ("'Signs", 'Signs')] PUR19191016-V19-10-page6.txt: [("'children", 'children'), ("'of", 'of')] PUR19191016-V19-10-page8.txt: [("'Box", 'Box'), ("'We", 'We')] PUR19191023-V19-11-page1.txt: [("'Advance", 'Advance')] PUR19191023-V19-11-page2.txt: [("'The", 'The'), ('\'"', '"')] PUR19191023-V19-11-page7.txt: [("'Week", 'Week')] PUR19191030-V19-12-page2.txt: [("'The", 'The'), ("'This", 'This')] PUR19191030-V19-12-page5.txt: [("'MCCREADY", 'MCCREADY'), ("'HI", 'HI'), ("'folks", 'folks')] PUR19191030-V19-12-page6.txt: [("'shield", 'shield'), ("'wherewith", 'wherewith')] PUR19191030-V19-12-page7.txt: [("'Woe", 'Woe')] PUR19191106-V19-13-page6.txt: [("'Watchman", 'Watchman'), ("'the", 'the')] PUR19191106-V19-13-page8.txt: [("'who", 'who')] PUR19191113-V19-14-page1.txt: [("'raver", 'raver')] PUR19191113-V19-14-page3.txt: [("'Tis", 'Tis')] PUR19191113-V19-14-page7.txt: [("'reorganization", 'reorganization')] PUR19191120-V19-15-page2.txt: [("'plan", 'plan')] PUR19191120-V19-15-page3.txt: [("'Signs", 'Signs'), ("'Signs", 'Signs')] PUR19191120-V19-15-page4.txt: [("'Signs", 'Signs')] PUR19191120-V19-15-page5.txt: [("'Shafter", 'Shafter'), ("'we", 'we'), ("'will", 'will')] PUR19191120-V19-15-page6.txt: [("'Let", 'Let'), ("'All", 'All')] PUR19191120-V19-15-page7.txt: [("'especiards", 'especiards')] PUR19191120-V19-15-page8.txt: [("'W.", 'W.')] PUR19191127-V19-16-page1.txt: [("'Tis", 'Tis')] PUR19191127-V19-16-page3.txt: [("'wrrwv", 'wrrwv'), ("'father", 'father'), ("'through", 'through'), ("'these", 'these')] PUR19191127-V19-16-page6.txt: [("'cellos", 'cellos')] PUR19191127-V19-16-page8.txt: [("'Are", 'Are'), ("'church", 'church'), ("'preached", 'preached'), ("'M.", 'M.')] PUR19191204-V19-17-page1.txt: [("'Tell", 'Tell'), ("'work", 'work')] PUR19191204-V19-17-page2.txt: [("'twould", 'twould'), ("'Me", 'Me'), ("'the", 'the'), ("'holier", 'holier'), ("'Blue", 'Blue')] PUR19191204-V19-17-page3.txt: [("'be", 'be')] PUR19191204-V19-17-page6.txt: [("'More", 'More')] PUR19191204-V19-17-page7.txt: [("'revelation", 'revelation')] PUR19191204-V19-17-page8.txt: [("'president", 'president')] PUR19191211-V19-18-page3.txt: [("'to", 'to'), ("'features", 'features')] PUR19191211-V19-18-page5.txt: [("'Christian", 'Christian')] PUR19191211-V19-18-page6.txt: [("'take", 'take')] PUR19191218-V19-19-page1.txt: [("'felt", 'felt')] PUR19191218-V19-19-page2.txt: [("''some", 'some'), ("'swering", 'swering'), ("'Faith", 'Faith'), ("'Presence", 'Presence'), ("'Mit", 'Mit'), ("'Wanted", 'Wanted')] PUR19191218-V19-19-page3.txt: [("'I", 'I'), ("'Derbanee", 'Derbanee')] PUR19191218-V19-19-page4.txt: [("'dollar", 'dollar')] PUR19191218-V19-19-page6.txt: [("'the", 'the'), ("'subscriber", 'subscriber'), ("'the", 'the')] PUR19191225-V19-20-page1.txt: [("'May", 'May')] PUR19191225-V19-20-page2.txt: [("'with", 'with'), ("'of", 'of')] PUR19191225-V19-20-page4.txt: [("'Tis", 'Tis')] PUR19191225-V19-20-page5.txt: [("'timely", 'timely')] PUR19191225-V19-20-page6.txt: [("'It", 'It')] PUR19191225-V19-20-page7.txt: [("'Preferred", 'Preferred')] PUR19200101-V19-21-page2.txt: [("'street", 'street'), ("'ministers", 'ministers'), ("'the", 'the'), ("'Merchants", 'Merchants')] PUR19200101-V19-21-page4.txt: [("'assisted", 'assisted')] PUR19200101-V19-21-page5.txt: [("'Present", 'Present'), ("'Present", 'Present'), ("'Present", 'Present')] PUR19200101-V19-21-page7.txt: [("'and", 'and'), ("'dale", 'dale'), ("'Dins", 'Dins'), ("'assisting", 'assisting')] PUR19200108-V19-22-page1.txt: [("'union", 'union')] PUR19200108-V19-22-page2.txt: [("'the", 'the'), ("'nfetnbership", 'nfetnbership'), ("'directors", 'directors'), ("'.k.sgo", '.k.sgo')] PUR19200108-V19-22-page5.txt: [("'giving", 'giving')] PUR19200108-V19-22-page6.txt: [("'Duty", 'Duty')] PUR19200108-V19-22-page8.txt: [("'their", 'their'), ("'the", 'the')] PUR19200115-V19-23-page3.txt: [("'Id", 'Id')] PUR19200115-V19-23-page5.txt: [("'very", 'very')] PUR19200115-V19-23-page7.txt: [("'long", 'long')] PUR19200122-V19-24-page1.txt: [("'ilal.i.", 'ilal.i.')] PUR19200122-V19-24-page3.txt: [("'It", 'It')] PUR19200122-V19-24-page5.txt: [("'bound", 'bound')] PUR19200122-V19-24-page7.txt: [("'Nova", 'Nova'), ("'cepted", 'cepted')] PUR19200122-V19-24-page8.txt: [("'will", 'will')] PUR19200129-V19-25-page5.txt: [("'Great", 'Great')] PUR19200205-V19-26-page1.txt: [("'people", 'people'), ("'beaches", 'beaches')] PUR19200205-V19-26-page2.txt: [("'That", 'That')] PUR19200205-V19-26-page5.txt: [("'Miss", 'Miss')] PUR19200205-V19-26-page8.txt: [("'Pacific", 'Pacific'), ("'thoughts", 'thoughts'), ("'years.", 'years.')] PUR19200212-V19-27-page2.txt: [("'Pacific", 'Pacific'), ("'less", 'less')] PUR19200212-V19-27-page3.txt: [("'and", 'and'), ("'at", 'at'), ("'drives", 'drives')] PUR19200212-V19-27-page4.txt: [("'Let", 'Let'), ("'Two", 'Two'), ("'This", 'This')] PUR19200212-V19-27-page6.txt: [("'Wednesday", 'Wednesday')] PUR19200212-V19-27-page7.txt: [("'.", '.')] PUR19200226-V19-28-page1.txt: [("'x", 'x')] PUR19200226-V19-28-page10.txt: [("'withlief", 'withlief')] PUR19200226-V19-28-page3.txt: [("'el", 'el')] PUR19200304-V19-29-page10.txt: [("'FEBRUARY", 'FEBRUARY')] PUR19200304-V19-29-page9.txt: [("'and", 'and')] PUR19200311-V19-30-page4.txt: [("'Wwv", 'Wwv'), ("'be", 'be'), ("'would", 'would')] PUR19200311-V19-30-page5.txt: [("'afternoon", 'afternoon')] PUR19200311-V19-30-page7.txt: [("'Lawless", 'Lawless')] PUR19200318-V19-31-page2.txt: [("'require", 'require')] PUR19200318-V19-31-page5.txt: [("'an", 'an')] PUR19200318-V19-31-page8.txt: [("'to", 'to')] PUR19200325-V19-32-page3.txt: [("'Twas", 'Twas'), ("'effort", 'effort')] PUR19200325-V19-32-page4.txt: [("'wwi", 'wwi'), ("'family", 'family')] PUR19200325-V19-32-page8.txt: [("'Brother", 'Brother')] PUR19200401-V19-33-page2.txt: [("'NUMBER", 'NUMBER')] PUR19200401-V19-33-page3.txt: [("'Arise", 'Arise'), ("'The", 'The'), ("'How", 'How')] PUR19200401-V19-33-page8.txt: [("'Review", 'Review')] PUR19200408-V19-34-page1.txt: [("'Twill", 'Twill'), ("'a", 'a'), ("''J", 'J'), ("'Twill", 'Twill')] PUR19200408-V19-34-page6.txt: [("'Our", 'Our'), ("'The", 'The'), ("'Spiritualism", 'Spiritualism')] PUR19200415-V19-35-page1.txt: [("'round", 'round'), ("'The", 'The')] PUR19200415-V19-35-page2.txt: [("'I", 'I'), ("'The", 'The'), ("'it", 'it')] PUR19200415-V19-35-page4.txt: [("'F.", 'F.')] PUR19200415-V19-35-page5.txt: [("'only", 'only'), ("'J.", 'J.'), ("'Phis", 'Phis')] PUR19200415-V19-35-page8.txt: [("'President.", 'President.')] PUR19200422-V19-36-page2.txt: [("'Are", 'Are'), ("'I", 'I')] PUR19200422-V19-36-page8.txt: [("'Nevada", 'Nevada')] PUR19200429-V19-37-page3.txt: [("'who", 'who')] PUR19200429-V19-37-page4.txt: [("'Thy", 'Thy')] PUR19200429-V19-37-page5.txt: [("'Monday", 'Monday')] PUR19200429-V19-37-page7.txt: [("'all", 'all'), ("'Weeks", 'Weeks')] PUR19200506-V19-38-page3.txt: [("'Signs", 'Signs'), ("'filled", 'filled')] PUR19200506-V19-38-page4.txt: [('\'v"', 'v"')] PUR19200506-V19-38-page5.txt: [("'to", 'to')] PUR19200506-V19-38-page7.txt: [("'Northern", 'Northern')] PUR19200513-V19-39-page1.txt: [("'Mid", 'Mid'), ("'Mid", 'Mid'), ("'Mid", 'Mid'), ("'Mid", 'Mid')] PUR19200513-V19-39-page4.txt: [("'Present", 'Present'), ("'Present", 'Present'), ("'Present", 'Present'), ("'World's", 'Worlds'), ("'Bible", 'Bible')] PUR19200513-V19-39-page6.txt: [("'plans", 'plans')] PUR19200520-V19-40-page2.txt: [("'Coffin", 'Coffin')] PUR19200520-V19-40-page4.txt: [("'provide", 'provide'), ("'take", 'take')] PUR19200520-V19-40-page5.txt: [("'of", 'of'), ("'Present", 'Present')] PUR19200520-V19-40-page7.txt: [("'April", 'April')] PUR19200520-V19-40-page8.txt: [("'yellow", 'yellow')] PUR19200527-V19-41-page1.txt: [("'nd", 'nd')] PUR19200527-V19-41-page5.txt: [("'Seal", 'Seal')] PUR19200603-V19-42-page3.txt: [("'.l", '.l')] PUR19200603-V19-42-page4.txt: [("'Here", 'Here')] PUR19200603-V19-42-page5.txt: [("'V", 'V'), ("'VIt.", 'VIt.')] PUR19200603-V19-42-page7.txt: [("'Sabbath", 'Sabbath')] PUR19200603-V19-42-page8.txt: [("'anted.", 'anted.')] PUR19200610-V19-43-page2.txt: [("'Resolved", 'Resolved'), ("'Whereas", 'Whereas'), ("'Whereas", 'Whereas')] PUR19200610-V19-43-page5.txt: [("'to", 'to')] PUR19200624-V19-45-page1.txt: [("'this", 'this')] PUR19200624-V19-45-page5.txt: [("'It", 'It')] PUR19200624-V19-45-page6.txt: [("'and", 'and')] PUR19200624-V19-45-page8.txt: [("'for", 'for'), ("'superfluities", 'superfluities'), ("'Go", 'Go')] PUR19200708-V19-47-page4.txt: [("'President", 'President')] PUR19200708-V19-47-page6.txt: [("'The", 'The')] PUR19200708-V19-47-page8.txt: [("'Guide", 'Guide')] PUR19200715-V19-48-page2.txt: [("'An", 'An')] PUR19200715-V19-48-page8.txt: [("'speedy", 'speedy'), ("'this", 'this')] PUR19200722-V19-49-page2.txt: [("'without", 'without'), ("'What", 'What'), ("'There", 'There')] PUR19200722-V19-49-page3.txt: [("'Church", 'Church')] PUR19200722-V19-49-page4.txt: [("'Which", 'Which')] PUR19200722-V19-49-page8.txt: [("'Present", 'Present'), ("'Min", 'Min'), ("'.R", '.R')] PUR19200729-V19-50-page3.txt: [("'the", 'the')] PUR19200729-V19-50-page5.txt: [("'C.", 'C.')] PUR19200805-V19-51-page1.txt: [("'Make", 'Make')] PUR19200805-V19-51-page2.txt: [("'Forbid", 'Forbid'), ("'After", 'After')] PUR19200805-V19-51-page3.txt: [("'Wilt", 'Wilt'), ("'Ye", 'Ye'), ("'This", 'This'), ("'went", 'went'), ("'And", 'And')] PUR19200805-V19-51-page5.txt: [("'the", 'the')] PUR19200805-V19-51-page7.txt: [("'dish", 'dish'), ("'basemt", 'basemt')] PUR19200805-V19-51-page8.txt: [("'place", 'place')] PUR19200812-V19-52-page1.txt: [("'en", 'en')] PUR19200812-V19-52-page2.txt: [("'arise", 'arise'), ("'Hold", 'Hold'), ("'Why", 'Why'), ("'If", 'If'), ("'My", 'My'), ("'Ordinarily", 'Ordinarily'), ("'Hindenburg", 'Hindenburg'), ("'Well", 'Well'), ("'I", 'I'), ("'May", 'May'), ("'I", 'I'), ("'If", 'If'), ("'Well", 'Well'), ("'Hindenburg", 'Hindenburg'), ("'we", 'we'), ("'You", 'You'), ("'Don't", 'Dont'), ("'Do", 'Do'), ("'And", 'And'), ("'Yes", 'Yes'), ("'Yes", 'Yes'), ("'You", 'You')] PUR19200812-V19-52-page3.txt: [("'Far", 'Far'), ("'Let", 'Let'), ("'terrible", 'terrible'), ("'By", 'By'), ("'Father", 'Father'), ("'Were", 'Were'), ("'Somehow", 'Somehow'), ("'Son", 'Son'), ("'Hindenharps", 'Hindenharps')] PUR19200812-V19-52-page4.txt: [("'Giver", 'Giver')] PUR19200812-V19-52-page5.txt: [("'They", 'They'), ("'Now", 'Now')] PUR19200812-V19-52-page6.txt: [("'Breitigam", 'Breitigam')] PUR19200812-V19-52-page8.txt: [("'Big", 'Big'), ("'Big", 'Big')] PUR19200819-V20-01-page2.txt: [("'had", 'had')] PUR19200819-V20-01-page3.txt: [("'farther", 'farther'), ("'characterbuilding", 'characterbuilding')] PUR19200819-V20-01-page5.txt: [("'age", 'age'), ("'of", 'of')] PUR19200819-V20-01-page6.txt: [("'arms", 'arms'), ("'sixteen", 'sixteen'), ("'SIGNS", 'SIGNS')] PUR19200819-V20-01-page7.txt: [("'opportunity", 'opportunity')] PUR19200819-V20-01-page8.txt: [("'Pitcairn", 'Pitcairn'), ("'We", 'We'), ("'and", 'and'), ("'The", 'The'), ("'fiY", 'fiY')] PUR19200826-V20-02-page1.txt: [("'Signs", 'Signs'), ("'taking", 'taking'), ("'The", 'The'), ("'Just", 'Just'), ("'going", 'going')] PUR19200826-V20-02-page2.txt: [("'carried", 'carried')] PUR19200826-V20-02-page5.txt: [("'settlements", 'settlements')] PUR19200826-V20-02-page6.txt: [("'a", 'a')] PUR19200902-V20-03-page1.txt: [("'On", 'On'), ("'In", 'In')] PUR19200902-V20-03-page2.txt: [("'Last", 'Last'), ("'When", 'When'), ("'I", 'I')] PUR19200902-V20-03-page3.txt: [("'Messenger", 'Messenger'), ("'Messenger", 'Messenger')] PUR19200902-V20-03-page4.txt: [("'every", 'every')] PUR19200902-V20-03-page6.txt: [("'Signs", 'Signs')] PUR19200902-V20-03-page8.txt: [("'fiyi'fi", 'fiyifi'), ("'fi", 'fi')] PUR19200909-V20-04-page2.txt: [("'March", 'March')] PUR19200909-V20-04-page3.txt: [("'Why", 'Why'), ("'The", 'The')] PUR19200909-V20-04-page8.txt: [("'In", 'In')] PUR19200916-V20-05-page2.txt: [("'IZECORDek", 'IZECORDek'), ("'necessary", 'necessary')] PUR19200916-V20-05-page3.txt: [("'of", 'of')] PUR19200916-V20-05-page4.txt: [("'Why", 'Why'), ("'Well", 'Well')] PUR19200916-V20-05-page6.txt: [("'poor", 'poor'), ("'The", 'The'), ("'Our", 'Our')] PUR19200916-V20-05-page7.txt: [("'Midst", 'Midst'), ("'poured", 'poured')] PUR19200916-V20-05-page8.txt: [("'Raley.", 'Raley.')] PUR19200923-V20-06-page8.txt: [("'Painter", 'Painter'), ("'students", 'students'), ("'Home", 'Home')] PUR19200930-V20-07-page2.txt: [("'Sister", 'Sister'), ("'foreign", 'foreign')] PUR19200930-V20-07-page3.txt: [("'W'V.", 'WV.')] PUR19200930-V20-07-page5.txt: [("'PanY", 'PanY'), ("'will", 'will'), ("'cry", 'cry')] PUR19200930-V20-07-page7.txt: [("'It", 'It'), ("'and", 'and')] PUR19201007-V20-08-page1.txt: [("'Dept", 'Dept')] PUR19201007-V20-08-page2.txt: [("'Fifty", 'Fifty')] PUR19201007-V20-08-page6.txt: [("'Green", 'Green')] PUR19201014-V20-09-page1.txt: [("'derful.", 'derful.')] PUR19201014-V20-09-page2.txt: [("'New", 'New')] PUR19201014-V20-09-page3.txt: [("'w", 'w')] PUR19201014-V20-09-page5.txt: [("'Without", 'Without'), ("'accom", 'accom')] PUR19201014-V20-09-page6.txt: [("'Buenos", 'Buenos'), ("'Medico", 'Medico'), ("'Enfermidad", 'Enfermidad'), ("'their", 'their'), ("'Present", 'Present')] PUR19201014-V20-09-page8.txt: [("'SIGNS", 'SIGNS')] PUR19201021-V20-10-page2.txt: [("'eight", 'eight')] PUR19201021-V20-10-page4.txt: [("'Training", 'Training'), ("'Well", 'Well'), ("'May", 'May'), ("'Then", 'Then')] PUR19201028-V20-11-page2.txt: [("'Go", 'Go'), ("'Stability", 'Stability'), ("'M", 'M')] PUR19201028-V20-11-page4.txt: [("'awes", 'awes')] PUR19201028-V20-11-page5.txt: [("'one", 'one'), ("'zed", 'zed'), ("'Sabbath", 'Sabbath'), ("'for", 'for'), ("'What", 'What'), ("'using", 'using')] PUR19201028-V20-11-page7.txt: [("'Cal", 'Cal')] PUR19201104-V20-12-page1.txt: [("'The", 'The'), ("'While", 'While')] PUR19201104-V20-12-page2.txt: [("'THE", 'THE')] PUR19201104-V20-12-page4.txt: [("'their", 'their'), ("'substitute", 'substitute')] PUR19201104-V20-12-page6.txt: [("'The", 'The'), ("'SIGNS", 'SIGNS')] PUR19201104-V20-12-page7.txt: [("'Sims", 'Sims')] PUR19201104-V20-12-page8.txt: [("'If", 'If'), ("'I", 'I')] PUR19201111-V20-13-page1.txt: [("'We", 'We'), ("'of", 'of')] PUR19201111-V20-13-page2.txt: [("'earnestly", 'earnestly')] PUR19201111-V20-13-page5.txt: [("'partial", 'partial')] PUR19201111-V20-13-page6.txt: [("'all", 'all'), ("'to", 'to')] PUR19201111-V20-13-page7.txt: [("'Dear", 'Dear')] PUR19201118-V20-14-page1.txt: [("'connection", 'connection')] PUR19201118-V20-14-page2.txt: [("'Perfect", 'Perfect'), ("'I", 'I')] PUR19201118-V20-14-page4.txt: [("'Some", 'Some'), ("'Signs", 'Signs'), ("'fold", 'fold'), ("'Signs", 'Signs')] PUR19201118-V20-14-page5.txt: [("'paper", 'paper')] PUR19201118-V20-14-page7.txt: [("'insertion", 'insertion'), ("'Utah", 'Utah')] PUR19201125-V20-15-page2.txt: [("'falling", 'falling'), ("'Verily", 'Verily')] PUR19201125-V20-15-page3.txt: [("'Answer", 'Answer')] PUR19201125-V20-15-page4.txt: [("'meeting", 'meeting')] PUR19201125-V20-15-page8.txt: [("'Dung", 'Dung'), ("'Signs", 'Signs')] PUR19201202-V20-16-page2.txt: [("'See", 'See'), ("'whether", 'whether')] PUR19201202-V20-16-page4.txt: [("'Big", 'Big')] PUR19201209-V20-17-page2.txt: [("'of", 'of')] PUR19201209-V20-17-page3.txt: [("'departments", 'departments')] PUR19201209-V20-17-page5.txt: [("'Tree", 'Tree'), ("'revivalmeetings.", 'revivalmeetings.')] PUR19201209-V20-17-page6.txt: [("'The", 'The')] PUR19201209-V20-17-page7.txt: [("'eXtra", 'eXtra'), ("'ethitairt", 'ethitairt')] PUR19201216-V20-18-page1.txt: [("'latter", 'latter'), ("''The", 'The')] PUR19201216-V20-18-page2.txt: [("'Steps", 'Steps')] PUR19201216-V20-18-page6.txt: [("'Signs", 'Signs'), ("'and", 'and'), ("'Signs", 'Signs')] PUR19201216-V20-18-page7.txt: [("'Referenees", 'Referenees'), ("'information", 'information')] PUR19201223-V20-19-page2.txt: [("'instant", 'instant'), ("'continue", 'continue'), ("'sober", 'sober'), ("'In", 'In'), ("'praying", 'praying')] PUR19201223-V20-19-page3.txt: [("'Try", 'Try'), ("'suffering", 'suffering')] PUR19201230-V20-20-page2.txt: [("'Many", 'Many')] PUR19201230-V20-20-page3.txt: [("'Watch", 'Watch'), ("'a", 'a'), ("'largest", 'largest')] PUR19201230-V20-20-page4.txt: [("'should", 'should')] PUR19201230-V20-20-page5.txt: [("'information", 'information')] PUR19201230-V20-20-page6.txt: [("'Again", 'Again'), ("'And", 'And'), ("'help", 'help'), ("'card", 'card')] PUR19201230-V20-20-page8.txt: [("'Sow", 'Sow')]
Check Correction 4¶
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/PUR/correction4 Average verified rate: 0.9701592452818625 Average of error rates: 0.032458542342874 Total token count: 6526410
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', 16628), ('w', 15069), ('m', 10905), ('g', 10538), ('f', 7305), ('r', 6635), ('d', 6503), ("'", 4848), ('t', 4462), ('n', 3139), ('th', 1483), ('x', 809), ('k', 691), ('re', 677), ('tion', 635), ('co', 596), ('u', 586), ('ords', 406), ('ence', 397), ('seventhday', 345), ('ment', 308), ('ference', 306), ('sabbathschool', 293), ('inter-mountain', 276), ('ex', 260), ('verah', 258), ('wm', 242), ("canvassers'", 229), ('ber', 228), ('ers', 224), ('pepperwood', 223), ('un', 214), ('z', 204), ('lb', 195), ('ple', 195), ('pa', 194), ("the'", 189), ('oo', 186), ('io', 181), ('ly', 170), ('twentyfifth', 168), ("''", 165), ('sionary', 165), ('al', 162), ('mis', 160), ('tions', 154), ('mo', 149), ("bookmen's", 149), ("colporteurs'", 144), ('ft', 144)]
Correction 5 -- Rejoin Split Words¶
In [25]:
# %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()
PUR19010801-V01-01-page10.txt: [('HEALDS', 'BURG'), ('RE', 'CORDER')] PUR19010801-V01-01-page11.txt: [('MIS', 'SIONARY')] PUR19010801-V01-01-page14.txt: [('Wilk', 'eson'), ('Tra', 'ver')] PUR19010801-V01-01-page15.txt: [('Os', 'borne')] PUR19010815-V01-02-page12.txt: [('artifi', 'cial')] PUR19010815-V01-02-page15.txt: [('SU', 'PERINTENDENTS')] PUR19010829-V01-03-page1.txt: [('te', 't')] PUR19010829-V01-03-page7.txt: [('ro', 'C')] PUR19010912-V01-04-page2.txt: [('WOME', 'n')] PUR19010912-V01-04-page3.txt: [('Ex', 'ecutive')] PUR19010912-V01-04-page6.txt: [('ren', 'in')] PUR19010926-V01-05-page1.txt: [('mis', 'takes')] PUR19010926-V01-05-page12.txt: [('fo', 'r')] PUR19011024-V01-07-page12.txt: [('Cre', 'We')] PUR19011024-V01-07-page13.txt: [('ASSOCIA', 'TION')] PUR19011024-V01-07-page14.txt: [('Co', 'D')] PUR19011024-V01-07-page15.txt: [('CORRE', 'SPONDENCE')] PUR19011107-V01-08-page12.txt: [('WI', 'Z'), ('CORRE', 'SPONDENCE'), ('CO', 'in')] PUR19011107-V01-08-page8.txt: [('RECOR', 'DER')] PUR19011121-V01-09-page14.txt: [('CORRE', 'SPONDENCE')] PUR19011121-V01-09-page6.txt: [('accom', 'Modate')] PUR19011121-V01-09-page9.txt: [('invi', 'tation')] PUR19011205-V01-10-page15.txt: [('CORRE', 'SPONDENCE')] PUR19011219-V01-11-page12.txt: [('Bu', 'chanan')] PUR19011219-V01-11-page14.txt: [('ol', 'a')] PUR19011219-V01-11-page16.txt: [('wh', 'ere')] PUR19020102-V01-12-page15.txt: [('CORRE', 'SPONDENCE')] PUR19020102-V01-12-page2.txt: [('re', 'striction')] PUR19020116-V01-13-page1.txt: [('ORGANI', 'ZATION')] PUR19020116-V01-13-page12.txt: [('HEALDS', 'BURG'), ('HONO', 'LULU')] PUR19020116-V01-13-page14.txt: [('CORRE', 'SPONDENCE')] PUR19020116-V01-13-page2.txt: [('re', 'form')] PUR19020116-V01-13-page5.txt: [('PA', 'CIFIC')] PUR19020116-V01-13-page9.txt: [('PRINCI', 'PLES')] PUR19020130-V01-14-page15.txt: [('MIS', 'SIONARIES')] PUR19020130-V01-14-page16.txt: [('Baluchist', 'an'), ('reat', 'a')] PUR19020213-V01-15-page14.txt: [('enj', 'oying')] PUR19020213-V01-15-page7.txt: [('RE', 'PORTS')] PUR19020313-V01-16-page12.txt: [('POR', 'TER')] PUR19020313-V01-16-page13.txt: [('re', 'study'), ('natu', 're')] PUR19020327-V01-17-page20.txt: [('COUN', 'SELORS')] PUR19020327-V01-17-page6.txt: [('SANITA', 'RIUM')] PUR19020327-V01-17-page7.txt: [('al', 'A')] PUR19020410-V01-18-page1.txt: [('conversa', 'tion'), ('RE', 'CORDER')] PUR19020410-V01-18-page14.txt: [('RECOR', 'DER')] PUR19020410-V01-18-page6.txt: [('SCANDINA', 'VIANS')] PUR19020424-V01-19-page13.txt: [('NA', 'RY')] PUR19020424-V01-19-page16.txt: [('HOROLOG', 'ICAL')] PUR19020424-V01-19-page8.txt: [('pr', 'ayers')] PUR19020508-V01-20-page1.txt: [('chil', 'dren'), ('INSTITU', 'TIONS')] PUR19020508-V01-20-page12.txt: [('re', 'Address')] PUR19020508-V01-20-page14.txt: [('HEALDS', 'BURG')] PUR19020508-V01-20-page3.txt: [('th', 'at')] PUR19020508-V01-20-page7.txt: [('op', 'portunities')] PUR19020508-V01-20-page8.txt: [('ARI', 'ZONA')] PUR19020522-V01-21-page12.txt: [('AMBASSA', 'DORS')] PUR19020605-V01-22-page11.txt: [('co', 'operation')] PUR19020605-V01-22-page15.txt: [('ro', 'o')] PUR19020619-V01-23-page9.txt: [('RECOMMENDATI', 'ONS')] PUR19020703-V01-24-page13.txt: [('physici', 'an')] PUR19020703-V01-24-page16.txt: [('MONTAN', 'A')] PUR19020717-V01-25-page10.txt: [('GRADU', 'ATION')] PUR19020717-V01-25-page12.txt: [('manag', 'ers'), ('Asso', 'ciation')] PUR19020731-V01-26-page13.txt: [('al', 'i'), ('MIS', 'SIONARY')] PUR19020731-V01-26-page15.txt: [('th', 'oth')] PUR19020814-V02-01-page13.txt: [('ASSOCIA', 'TION')] PUR19020814-V02-01-page14.txt: [('ro', 'o')] PUR19020828-V02-02-page14.txt: [('Po', 'i'), ('re', 'F')] PUR19020828-V02-02-page15.txt: [('AP', 'PEALS')] PUR19020828-V02-02-page5.txt: [('ASSO', 'CIATION')] PUR19020828-V02-02-page8.txt: [('ASSOCI', 'ATION'), ('PEO', "PLE'S")] PUR19020925-V02-04-page11.txt: [('encou', 'raging')] PUR19020925-V02-04-page4.txt: [('ac', 'He'), ('Al', 'way')] PUR19021023-V02-06-page12.txt: [('mis', 'sionary')] PUR19021106-V02-07-page3.txt: [('Missionar', 'y')] PUR19021120-V02-08-page14.txt: [('dili', 'gence')] PUR19021120-V02-08-page15.txt: [('ADOLES', 'CENCE')] PUR19021218-V02-10-page14.txt: [('sa', 'fe')] PUR19021218-V02-10-page15.txt: [('Fi', 'ne'), ('re', 'train')] PUR19021218-V02-10-page6.txt: [('NOVEM', 'BER')] PUR19030101-V02-11-page11.txt: [('Pa', 'cific')] PUR19030101-V02-11-page15.txt: [('RECOR', 'DER')] PUR19030101-V02-11-page8.txt: [('CH', 'S'), ('Prelu', 'de')] PUR19030115-V02-12-page12.txt: [('Po', 'o')] PUR19030115-V02-12-page5.txt: [('th', 'at')] PUR19030212-V02-14-page11.txt: [('re', 'Marks')] PUR19030212-V02-14-page15.txt: [('IL', 'E')] PUR19030212-V02-14-page7.txt: [('ro', 'Jo')] PUR19030226-V02-15-page1.txt: [('condi', 'tion')] PUR19030226-V02-15-page10.txt: [('RECOR', 'DER')] PUR19030226-V02-15-page11.txt: [('ex', 'periences')] PUR19030226-V02-15-page7.txt: [('fo', 'r')] PUR19030312-V02-16-page4.txt: [('th', 'ough')] PUR19030326-V02-17-page15.txt: [('Co', 'Co'), ('M.', '')] PUR19030326-V02-17-page8.txt: [('contin', 'ue')] PUR19030423-V02-18-page1.txt: [('RE', 'CORDER')] PUR19030423-V02-18-page14.txt: [('encour', 'agement')] PUR19030509-V02-19-page12.txt: [('co', 'per')] PUR19030509-V02-19-page9.txt: [('tal', 'ks')] PUR19030521-V02-20-page10.txt: [('al', 'A')] PUR19030521-V02-20-page15.txt: [('ro', 'o'), ('re', 'E')] PUR19030604-V02-21-page10.txt: [('em', 'ployment')] PUR19030604-V02-21-page11.txt: [('Co', 'to')] PUR19030604-V02-21-page15.txt: [('RECOR', 'DER')] PUR19030604-V02-21-page3.txt: [('Obje', 'ct')] PUR19030604-V02-21-page4.txt: [('pa', 't')] PUR19030604-V02-21-page6.txt: [('re', 'Member')] PUR19030618-V02-22-page11.txt: [('AP', 'PARENT')] PUR19030618-V02-22-page14.txt: [('zo', 'o')] PUR19030618-V02-22-page8.txt: [('preced', 'ing')] PUR19030702-V02-23-page16.txt: [('privi', 'lege')] PUR19030702-V02-23-page9.txt: [('ple', 'ad')] PUR19030813-V03-01-page7.txt: [('ful', 'as')] PUR19030827-V03-02-page16.txt: [('Septem', 'ber')] PUR19030827-V03-02-page5.txt: [('es', 'cape')] PUR19030924-V03-04-page12.txt: [('ac', 'cording')] PUR19031008-V03-05-page3.txt: [('Mc', 'Minnville')] PUR19031008-V03-05-page6.txt: [('Mcf', 'All')] PUR19031008-V03-05-page7.txt: [('Co', 'G'), ('PA', 'TRIARCHS')] PUR19031022-V03-06-page11.txt: [('Syd', 'ney')] PUR19031105-V03-07-page11.txt: [('ASSO', 'CIATION'), ('tri', 'o'), ('PA', 'CIFIC')] PUR19031105-V03-07-page2.txt: [('co', 'laborers')] PUR19031119-V03-08-page10.txt: [('co', 'operation')] PUR19031119-V03-08-page2.txt: [('centraliza', 'tion')] PUR19031119-V03-08-page6.txt: [('co', 'operation')] PUR19031119-V03-08-page7.txt: [('imme', 'diately')] PUR19031203-V03-09-page10.txt: [('co', 'operate')] PUR19031203-V03-09-page2.txt: [('CENTRALIZA', 'TION')] PUR19031203-V03-09-page6.txt: [('co', 'operate')] PUR19031217-V03-10-page10.txt: [('Re', 'view')] PUR19031217-V03-10-page12.txt: [('Thoug', 'h')] PUR19031217-V03-10-page13.txt: [('co', 'operation')] PUR19031217-V03-10-page9.txt: [('Re', 'view')] PUR19040128-V03-13-page12.txt: [('co', 'operation')] PUR19040128-V03-13-page15.txt: [('pre', 'sented')] PUR19040128-V03-13-page5.txt: [('MI', 'NISTERS')] PUR19040211-V03-14-page6.txt: [('PRI', 'MARY')] PUR19040225-V03-15-page10.txt: [('ES', 'TABLISHED')] PUR19040225-V03-15-page11.txt: [('comin', 'g')] PUR19040225-V03-15-page12.txt: [('tem', 'poral')] PUR19040225-V03-15-page15.txt: [('co', 'operate')] PUR19040225-V03-15-page16.txt: [('th', 'at'), ('Da', 'Silva')] PUR19040310-V03-16-page11.txt: [('th', 'at')] PUR19040310-V03-16-page9.txt: [('re', 'Quite'), ('fi', 're')] PUR19040324-V03-17-page10.txt: [('co', 'p')] PUR19040324-V03-17-page14.txt: [('Californ', 'ia')] PUR19040324-V03-17-page15.txt: [('Compan', 'ies'), ('fl', 'A')] PUR19040324-V03-17-page16.txt: [('re', 'creation')] PUR19040324-V03-17-page9.txt: [('RECOR', 'DER')] PUR19040407-V03-18-page13.txt: [('re', 'port'), ('espe', 'cially')] PUR19040407-V03-18-page15.txt: [('co', 'worker')] PUR19040407-V03-18-page16.txt: [('RECOR', 'DER')] PUR19040407-V03-18-page3.txt: [('co', 'operate')] PUR19040407-V03-18-page7.txt: [('co', 'operation')] PUR19040407-V03-18-page8.txt: [('ro', 'per'), ('co', 'operate')] PUR19040421-V03-19-page1.txt: [('teache', 'rs')] PUR19040421-V03-19-page10.txt: [('re', 'Member')] PUR19040421-V03-19-page11.txt: [('RECO', 'RDER')] PUR19040421-V03-19-page12.txt: [('co', 'operate')] PUR19040421-V03-19-page5.txt: [('prerequi', 'site')] PUR19040421-V03-19-page7.txt: [('wo', 'rketh')] PUR19040421-V03-19-page8.txt: [('ABILITI', 'ES')] PUR19040505-V03-20-page11.txt: [('co', 'operation')] PUR19040505-V03-20-page12.txt: [('MI', 'o')] PUR19040505-V03-20-page14.txt: [('prais', 'e')] PUR19040505-V03-20-page6.txt: [('co', 'laborers')] PUR19040519-V03-21-page1.txt: [('hayin', 'g'), ('VO', 'L')] PUR19040519-V03-21-page13.txt: [('ro', 'o')] PUR19040519-V03-21-page8.txt: [('re', 'check')] PUR19040519-V03-21-page9.txt: [('co', 'operation')] PUR19040602-V03-22-page4.txt: [('co', 'operate')] PUR19040616-V03-24-page8.txt: [('co', 'operation')] PUR19040623-V03-25-page2.txt: [('Pacifi', 'c')] PUR19040623-V03-25-page7.txt: [('co', 'o')] PUR19040630-V03-26-page2.txt: [('ENT', 'ICES'), ('co', 'operation')] PUR19040630-V03-26-page7.txt: [('Kellog', 'g')] PUR19040707-V03-27-page5.txt: [('RECOR', 'DER')] PUR19040707-V03-27-page8.txt: [('co', 'workers')] PUR19040714-V03-28-page4.txt: [('co', 'operation'), ('pa', 'ssing')] PUR19040714-V03-28-page6.txt: [('re', 'read'), ('co', 'operate')] PUR19040721-V03-29-page4.txt: [('ti', 'to')] PUR19040728-V03-30-page6.txt: [('co', 'operation')] PUR19040728-V03-30-page7.txt: [('re', 'examination')] PUR19040728-V03-30-page8.txt: [('re', 'member'), ('co', 'operation')] PUR19040804-V04-01-page4.txt: [('se', 'As')] PUR19040804-V04-01-page5.txt: [('tri', 'o')] PUR19040804-V04-01-page7.txt: [('co', 'operative')] PUR19040811-V04-02-page1.txt: [('co', 'laborers')] PUR19040825-V04-04-page1.txt: [('co', 'operation'), ('pand', 'it')] PUR19040825-V04-04-page5.txt: [('co', 'operate')] PUR19040825-V04-04-page6.txt: [('re', 'converted')] PUR19040825-V04-04-page7.txt: [('re', 'member'), ('Conferen', 'ce')] PUR19040901-V04-05-page5.txt: [('re', 'baptized')] PUR19040908-V04-06-page1.txt: [('co', 'operation')] PUR19040915-V04-07-page6.txt: [('co', 'operation')] PUR19040922-V04-08-page5.txt: [('re', 'quested')] PUR19040929-V04-09-page7.txt: [('Ma', 'n')] PUR19041006-V04-10-page4.txt: [('co', 'operating')] PUR19041013-V04-11-page2.txt: [('co', 'partner')] PUR19041013-V04-11-page8.txt: [('co', 'operate')] PUR19041020-V04-12-page2.txt: [('co', 'operate'), ('cl', 'ing')] PUR19041020-V04-12-page7.txt: [('co', 'operate')] PUR19041027-V04-13-page4.txt: [('Re', 'g')] PUR19041027-V04-13-page7.txt: [('OD', 'Our')] PUR19041027-V04-13-page8.txt: [('op', 'portunity')] PUR19041103-V04-14-page4.txt: [('re', 'gularly')] PUR19041103-V04-14-page5.txt: [('RECOR', 'DER')] PUR19041110-V04-15-page2.txt: [('co', 'operation')] PUR19041124-V04-18-page3.txt: [('incon', 'sistent')] PUR19041124-V04-18-page5.txt: [('RECOR', 'DER')] PUR19041208-V04-20-page1.txt: [('SPAK', 'E')] PUR19041208-V04-20-page3.txt: [('representa', 'tive')] PUR19041208-V04-20-page5.txt: [('al', 'ready'), ('co', 'operation')] PUR19041208-V04-20-page8.txt: [('suc', 'cesses')] PUR19050112-V04-25-page1.txt: [('sacrific', 'ing')] PUR19050112-V04-25-page4.txt: [('re', 'quired')] PUR19050119-V04-26-page1.txt: [('mo', 'ment')] PUR19050119-V04-26-page7.txt: [('co', 'operation'), ('Ingrati', 'tude')] PUR19050209-V04-29-page1.txt: [('disposi', 'tion')] PUR19050209-V04-29-page5.txt: [('ac', 'CoMplish')] PUR19050302-V04-32-page1.txt: [('co', 'operate')] PUR19050302-V04-32-page2.txt: [('misfor', 'tune')] PUR19050302-V04-32-page5.txt: [('Hu', 'ghson'), ('co', 'operation')] PUR19050316-V04-34-page3.txt: [('Sarg', 'eant')] PUR19050316-V04-34-page7.txt: [('co', 'operate')] PUR19050316-V04-34-page8.txt: [('co', 'operate')] PUR19050323-V04-35-page6.txt: [('Mc', 'Minnville')] PUR19050323-V04-35-page7.txt: [('Mc', 'Minnville')] PUR19050330-V04-36-page5.txt: [('Knott', 'S')] PUR19050330-V04-36-page8.txt: [('Ang', 'eles')] PUR19050406-V04-37-page4.txt: [('stockhold', 'ers')] PUR19050413-V04-38-page5.txt: [('co', 'operation')] PUR19050413-V04-38-page6.txt: [('co', 'operate')] PUR19050420-V04-39-page2.txt: [('serv', 'ice')] PUR19050427-V04-40-page2.txt: [('pre', 'pared')] PUR19050427-V04-40-page6.txt: [('RECOR', 'DER')] PUR19050427-V04-40-page7.txt: [('re', 'organized'), ('Co', 'W')] PUR19050504-V04-41-page3.txt: [('Sa', 'Viour')] PUR19050504-V04-41-page8.txt: [('co', 'worker')] PUR19050511-V04-42-page3.txt: [('th', 'or')] PUR19071114-V07-16-page3.txt: [('medi', 'cal')] PUR19071128-V07-18-page1.txt: [('indu', 'stry')] PUR19080109-V07-24-page3.txt: [('RE', 'CORDER')] PUR19080109-V07-24-page4.txt: [('arrang', 'ing')] PUR19080206-V07-27-page3.txt: [('ti', 'e')] PUR19080206-V07-27-page5.txt: [('mis', 'sionary')] PUR19080206-V07-27-page6.txt: [('RE', 'CORDER')] PUR19080213-V07-28-page15.txt: [('secretar', 'y')] PUR19080213-V07-28-page16.txt: [('Pa', 'H')] PUR19080213-V07-28-page3.txt: [('pa', 'trons')] PUR19080213-V07-28-page5.txt: [('ea', 'T')] PUR19080213-V07-28-page9.txt: [('ac', 'complish'), ('RE', 'CORDER')] PUR19080227-V07-30-page2.txt: [('Susanvil', 'le')] PUR19080305-V07-31-page3.txt: [('th', 'in')] PUR19080312-V07-32-page2.txt: [('pre', 'aching')] PUR19080319-V07-33-page4.txt: [('appre', 'ciated')] PUR19080416-V07-37-page1.txt: [('Tele', 'grams')] PUR19080416-V07-37-page4.txt: [('messa', 'ge')] PUR19080507-V07-40-page2.txt: [('Tem', 'perance'), ('Healds', 'burg'), ('Wi', 'g'), ('wo', 'k')] PUR19080507-V07-40-page6.txt: [('RE', 'CORDER')] PUR19080521-V07-42-page5.txt: [('th', 'or')] PUR19080521-V07-42-page6.txt: [('thirty-', 'one')] PUR19080604-V07-44-page5.txt: [('M.', '')] PUR19080625-V07-47-page6.txt: [('Ca', 'Mino')] PUR19080730-V07-52-page1.txt: [('Othma', 'n')] PUR19080730-V07-52-page5.txt: [('es', 'sential')] PUR19080806-V08-01-page5.txt: [('wa', 'y')] PUR19080806-V08-01-page8.txt: [('RE', 'CORDER')] PUR19080813-V08-02-page5.txt: [('Guadala', 'jara')] PUR19080820-V08-03-page3.txt: [('themselve', 's')] PUR19080820-V08-03-page4.txt: [('co', 'operative')] PUR19080820-V08-03-page6.txt: [('un', 'der')] PUR19080827-V08-04-page5.txt: [('Chu', 'rches')] PUR19080910-V08-06-page5.txt: [('thre', 'e'), ('prin', 'Cipal')] PUR19080917-V08-07-page1.txt: [('ple', 'a'), ('peo', 'ple')] PUR19080917-V08-07-page6.txt: [('UNIO', 'N')] PUR19080924-V08-08-page2.txt: [('RE', 'CORDER')] PUR19080924-V08-08-page5.txt: [('re', 'Miss')] PUR19081001-V08-09-page5.txt: [('UNIO', 'N'), ('pa', 'P')] PUR19081008-V08-10-page1.txt: [('pa', 'tient')] PUR19081008-V08-10-page5.txt: [('re', 'ferred')] PUR19081008-V08-10-page6.txt: [('un', 'der')] PUR19081015-V08-11-page3.txt: [('Co', 'Vina')] PUR19081015-V08-11-page5.txt: [('th', 'is')] PUR19081015-V08-11-page6.txt: [('EC', 'O'), ('fl', 'owers'), ('wha', 't')] PUR19081029-V08-13-page6.txt: [('PA', 'CIFIC')] PUR19081105-V08-14-page6.txt: [('un', 'der')] PUR19081112-V08-15-page4.txt: [('RECOR', 'DER'), ('ab', 'ut')] PUR19081112-V08-15-page6.txt: [('Pa', 'cific')] PUR19081119-V08-16-page3.txt: [('ren', 'A')] PUR19081119-V08-16-page5.txt: [('ea', 'u')] PUR19081126-V08-17-page5.txt: [('re', 'f')] PUR19081126-V08-17-page6.txt: [('un', 'der')] PUR19081203-V08-18-page1.txt: [('va', 's')] PUR19081203-V08-18-page6.txt: [('un', 'der')] PUR19081210-V08-19-page5.txt: [('Inyo', 'Kern'), ('Si', 'skiyou')] PUR19081210-V08-19-page6.txt: [('un', 'der')] PUR19081217-V08-20-page2.txt: [('re', 'ceivers')] PUR19081217-V08-20-page5.txt: [('ch', 'en')] PUR19081224-V08-21-page3.txt: [('pa', 't')] PUR19081224-V08-21-page4.txt: [('th', 'in')] PUR19081224-V08-21-page6.txt: [('un', 'der')] PUR19081231-V08-22-page4.txt: [('PA', 'CIFIC')] PUR19090107-V08-23-page4.txt: [('RE', 'CORDERS')] PUR19090114-V08-24-page6.txt: [('Moun', 'tain')] PUR19090121-V08-25-page5.txt: [('serv', 'ice')] PUR19090128-V08-26-page1.txt: [('MI', 'a')] PUR19090128-V08-26-page3.txt: [('repub', 'lic')] PUR19090128-V08-26-page5.txt: [('re', 'presented')] PUR19090204-V08-27-page1.txt: [('grea', 't')] PUR19090204-V08-27-page3.txt: [('ener', 'gies')] PUR19090211-V08-28-page1.txt: [('re', 'turned')] PUR19090211-V08-28-page2.txt: [('Febru', 'ary')] PUR19090218-V08-29-page3.txt: [('re', 'ports')] PUR19090218-V08-29-page6.txt: [('PA', 'CIFIC')] PUR19090225-V08-30-page6.txt: [('un', 'der')] PUR19090304-V08-31-page3.txt: [('ex', 'perience')] PUR19090304-V08-31-page6.txt: [('Legi', 'slature'), ('un', 'der')] PUR19090311-V08-32-page4.txt: [('Tay', 'lor'), ('expe', 'l')] PUR19090318-V08-33-page6.txt: [('un', 'der')] PUR19090401-V08-35-page5.txt: [('suc', 'cess')] PUR19090408-V08-36-page1.txt: [('al', 'ready')] PUR19090422-V08-38-page6.txt: [('th', 'en')] PUR19090429-V08-39-page2.txt: [('od', 'is')] PUR19090513-V08-41-page5.txt: [('ag', 'e')] PUR19090513-V08-41-page6.txt: [('informa', 'tion'), ('un', 'der')] PUR19090520-V08-42-page2.txt: [('RE', 'CORDER')] PUR19090520-V08-42-page5.txt: [('re', 'ception')] PUR19090520-V08-42-page6.txt: [('th', 'at')] PUR19090527-V08-43-page4.txt: [('ta', 'kiN')] PUR19090527-V08-43-page6.txt: [('pre', 'scribed')] PUR19090603-V08-44-page6.txt: [('UN', 'ION'), ('fa', 'r'), ('un', 'der')] PUR19090610-V08-45-page5.txt: [('instruc', 'tive')] PUR19090617-V08-46-page3.txt: [('Islan', 'd'), ('re', 'enforcements')] PUR19090624-V08-47-page6.txt: [('Fr', 'ancisco')] PUR19090708-V08-49-page5.txt: [('ca', 't')] PUR19090708-V08-49-page6.txt: [('un', 'der')] PUR19090722-V08-51-page3.txt: [('th', 'at')] PUR19090729-V08-52-page3.txt: [('th', 'at')] PUR19090729-V08-52-page5.txt: [('G.', ''), ('daugh', 'ter')] PUR19090805-V09-01-page1.txt: [('instruc', 'tion')] PUR19090812-V09-02-page5.txt: [('G.', '')] PUR19090819-V09-03-page2.txt: [('AGRI', 'CULTURAL')] PUR19090819-V09-03-page4.txt: [('RECORDE', 'R')] PUR19090826-V09-04-page3.txt: [('ef', 'ficient'), ('fo', 'r')] PUR19090826-V09-04-page5.txt: [('upo', 'n')] PUR19090902-V09-05-page2.txt: [('informa', 'tion')] PUR19090902-V09-05-page4.txt: [('doin', 'g')] PUR19090916-V09-07-page1.txt: [('om', 'an')] PUR19090916-V09-07-page4.txt: [('PA', 'CIFIC')] PUR19090923-V09-08-page2.txt: [('atten', 'tion')] PUR19090923-V09-08-page4.txt: [('Healds', 'burg')] PUR19090923-V09-08-page5.txt: [('re', 'a')] PUR19090923-V09-08-page6.txt: [('insti', 'tutions'), ('un', 'der')] PUR19090930-V09-09-page5.txt: [('se', 't')] PUR19091014-V09-11-page3.txt: [('re', 'baptism')] PUR19091014-V09-11-page6.txt: [('RE', 'CORDER'), ('un', 'der')] PUR19091028-V09-13-page1.txt: [('excellen', 't')] PUR19091104-V09-14-page6.txt: [('un', 'der')] PUR19091111-V09-15-page6.txt: [('ex', 'ception')] PUR19091118-V09-16-page6.txt: [('un', 'der')] PUR19091125-V09-17-page2.txt: [('eX', 'PressionS')] PUR19091209-V09-19-page1.txt: [('re', 'establishing')] PUR19091209-V09-19-page3.txt: [('RI', 'E')] PUR19091216-V09-20-page4.txt: [('limita', 'tion'), ('elec', 'trical')] PUR19091216-V09-20-page6.txt: [('RE', 'C')] PUR19091223-V09-21-page3.txt: [('Li', 'the'), ('Mc', 'Gee')] PUR19091223-V09-21-page6.txt: [('un', 'der')] PUR19091230-V09-22-page2.txt: [('se', 'M'), ('re', 'baptized')] PUR19091230-V09-22-page6.txt: [('th', 'or'), ('RE', 'CORDER')] PUR19100106-V09-23-page2.txt: [('inexpen', 'siVe'), ('pre', 'vious'), ('em', 'it')] PUR19100106-V09-23-page4.txt: [('un', 'der')] PUR19100113-V09-24-page3.txt: [('Mc', 'Clure')] PUR19100120-V09-25-page1.txt: [('Conar', 'd')] PUR19100120-V09-25-page4.txt: [('th', 'e')] PUR19100203-V09-27-page3.txt: [('DENOMINA', 'TIONAL')] PUR19100203-V09-27-page5.txt: [('justic', 'e')] PUR19100203-V09-27-page8.txt: [('ex', 'p')] PUR19100210-V09-28-page11.txt: [('ac', 'cepted')] PUR19100210-V09-28-page13.txt: [('re', 'ported')] PUR19100217-V09-29-page3.txt: [('estab', 'lishment')] PUR19100217-V09-29-page4.txt: [('es', 't'), ('ORDE', 'R')] PUR19100217-V09-29-page8.txt: [('ga', 'in')] PUR19100224-V09-30-page1.txt: [('mein', 'ers')] PUR19100224-V09-30-page15.txt: [('re', 'ferred')] PUR19100224-V09-30-page4.txt: [('re', 'NI')] PUR19100224-V09-30-page5.txt: [('RE', 'CORDER')] PUR19100303-V09-31-page3.txt: [('RE', 'CORDER')] PUR19100324-V09-34-page2.txt: [('se', 'Curing')] PUR19100324-V09-34-page4.txt: [('soci', 'ety')] PUR19100324-V09-34-page6.txt: [('pa', 'I')] PUR19100331-V09-35-page12.txt: [('un', 'der')] PUR19100331-V09-35-page9.txt: [('th', 'at'), ('aV', 'is')] PUR19100407-V09-36-page12.txt: [('th', 'or')] PUR19100428-V09-39-page1.txt: [('re', 'baptized')] PUR19100428-V09-39-page8.txt: [('co', 'workers')] PUR19100505-V09-40-page8.txt: [('cla', 'ms')] PUR19100519-V09-42-page15.txt: [('Wha', 't')] PUR19100519-V09-42-page7.txt: [('noth', 'ing')] PUR19100519-V09-42-page8.txt: [('abun', 'dance')] PUR19100526-V09-43-page2.txt: [('Mc', 'Bain')] PUR19100526-V09-43-page6.txt: [('un', 'der')] PUR19100602-V09-44-page1.txt: [('unpurifi', 'ed')] PUR19100602-V09-44-page3.txt: [('al', 'SO')] PUR19100602-V09-44-page6.txt: [('un', 'der')] PUR19100609-V09-45-page2.txt: [('RE', 'CORDER')] PUR19100609-V09-45-page6.txt: [('un', 'der')] PUR19100616-V09-46-page6.txt: [('un', 'der')] PUR19100623-V09-47-page2.txt: [('Scyth', 'ians')] PUR19100630-V09-48-page6.txt: [('darknes', 's')] PUR19100707-V09-49-page5.txt: [('pa', 'per')] PUR19100721-V09-51-page2.txt: [('RE', 'CORDER')] PUR19100721-V09-51-page6.txt: [('co', 'workers'), ('Mc', 'Cormick')] PUR19100721-V09-51-page8.txt: [('PA', 'CIFIC'), ('accom', 'panied')] PUR19100728-V09-52-page2.txt: [('th', 'a')] PUR19100728-V09-52-page6.txt: [('th', 'at'), ('un', 'der')] PUR19100804-V10-01-page12.txt: [('Pre', 'Medical')] PUR19100804-V10-01-page3.txt: [('expres', 'sions'), ('al', 'lowed')] PUR19100804-V10-01-page5.txt: [('Aca', 'demy')] PUR19100818-V10-03-page1.txt: [('op', 'posed')] PUR19100818-V10-03-page5.txt: [('damag', 'e')] PUR19100825-V10-04-page4.txt: [('RE', 'CORDER'), ('un', 'der')] PUR19100901-V10-05-page3.txt: [('ege', 'St')] PUR19100901-V10-05-page4.txt: [('se', 'lected'), ('re', 'spond')] PUR19100908-V10-06-page3.txt: [('Mah', 'An')] PUR19100915-V10-07-page3.txt: [('RE', 'CORDER')] PUR19100915-V10-07-page7.txt: [('experi', 'ence')] PUR19100922-V10-08-page2.txt: [('RE', 'CORDER')] PUR19100922-V10-08-page8.txt: [('mis', 'sion'), ('un', 'der')] PUR19100929-V10-09-page2.txt: [('Mc', 'Dowell')] PUR19100929-V10-09-page6.txt: [('se', 'Curing')] PUR19100929-V10-09-page8.txt: [('th', 'in')] PUR19101006-V10-10-page4.txt: [('th', 'a')] PUR19101006-V10-10-page6.txt: [('es', 't'), ('ti', 't')] PUR19101013-V10-11-page3.txt: [('Kelse', 'yville')] PUR19101020-V10-12-page7.txt: [('RE', 'CORDER'), ('culti', 'vate')] PUR19101020-V10-12-page8.txt: [('RE', 'CORDER')] PUR19101027-V10-13-page1.txt: [('authoriz', 'e')] PUR19101027-V10-13-page11.txt: [('sixtyf', 'old'), ('thirtyf', 'old')] PUR19101027-V10-13-page12.txt: [('al', 'lowed')] PUR19101027-V10-13-page15.txt: [('RE', 'CORDER')] PUR19101027-V10-13-page2.txt: [('Winnif', 'red'), ('Mc', 'Pherson')] PUR19101027-V10-13-page7.txt: [('RE', 'CORDER')] PUR19101117-V10-16-page4.txt: [('peo', 'ple')] PUR19101117-V10-16-page6.txt: [('yo', 'Ur'), ('suf', 'ficient')] PUR19101117-V10-16-page7.txt: [('re', 'T')] PUR19101117-V10-16-page8.txt: [('th', 'e'), ('co', 'rrespond'), ('Isaia', 's')] PUR19101124-V10-17-page3.txt: [('RE', 'ORDER')] PUR19101124-V10-17-page4.txt: [('fa', 'ulty'), ('ex', 'cellent')] PUR19101124-V10-17-page5.txt: [('Clo', 'sing')] PUR19101201-V10-18-page4.txt: [('accom', 'plish')] PUR19101201-V10-18-page5.txt: [('PA', 'CIFIC')] PUR19101208-V10-19-page7.txt: [('RE', 'CORDER')] PUR19101208-V10-19-page8.txt: [('un', 'der')] PUR19101215-V10-20-page7.txt: [('ro', 'N')] PUR19101215-V10-20-page8.txt: [('un', 'der')] PUR19101222-V10-21-page5.txt: [('Co', 'operation'), ('co', 'operation')] PUR19101222-V10-21-page6.txt: [('RE', 'CORDER')] PUR19101229-V10-22-page8.txt: [('co', 'operate')] PUR19110105-V10-23-page5.txt: [('re', 'enter')] PUR19110112-V10-24-page4.txt: [('co', 'operation')] PUR19110112-V10-24-page5.txt: [('peo', 'ple')] PUR19110119-V10-25-page1.txt: [('ex', 'pedient')] PUR19110119-V10-25-page3.txt: [('tw', 'o')] PUR19110119-V10-25-page4.txt: [('G.', '')] PUR19110126-V10-26-page5.txt: [('Re', 'ceipt'), ('ses', 'sion')] PUR19110126-V10-26-page6.txt: [('UNIO', 'N'), ('RE', 'CORDER')] PUR19110126-V10-26-page7.txt: [('re', 'elected')] PUR19110126-V10-26-page8.txt: [('un', 'der')] PUR19110202-V10-27-page1.txt: [('gi', 'ving')] PUR19110202-V10-27-page3.txt: [('se', 'cured')] PUR19110202-V10-27-page5.txt: [('re', 'port'), ('relig', 'ious'), ('es', 't'), ('ex', 'pense')] PUR19110202-V10-27-page7.txt: [('fre', 'T')] PUR19110209-V10-28-page1.txt: [('procedu', 're')] PUR19110216-V10-29-page4.txt: [('execu', 'tive'), ('Ani', 'mal')] PUR19110216-V10-29-page7.txt: [('un', 'conscious')] PUR19110223-V10-30-page8.txt: [('un', 'der')] PUR19110302-V10-31-page13.txt: [('re', 'act')] PUR19110309-V10-32-page15.txt: [('tem', 'per')] PUR19110316-V10-33-page1.txt: [('thro', 'ugh')] PUR19110316-V10-33-page2.txt: [('Mc', 'Cord')] PUR19110316-V10-33-page5.txt: [('re', 'opened'), ('Sa', 'nta')] PUR19110316-V10-33-page8.txt: [('re', 'elected')] PUR19110323-V10-34-page8.txt: [('co', 'laborers')] PUR19110330-V10-35-page2.txt: [('re', 'open')] PUR19110330-V10-35-page3.txt: [('co', 'Operation'), ('Mc', 'Cracken')] PUR19110330-V10-35-page4.txt: [('re', 'elected')] PUR19110406-V10-36-page5.txt: [('presi', 'dent')] PUR19110406-V10-36-page6.txt: [('pre', 'eminent')] PUR19110413-V10-37-page1.txt: [('Sar', 'gent')] PUR19110413-V10-37-page2.txt: [('expres', 'sion'), ('fi', 'r')] PUR19110413-V10-37-page4.txt: [('ea', 'rnest')] PUR19110413-V10-37-page7.txt: [('ob', 'ject')] PUR19110420-V10-38-page4.txt: [('encoura', 'ging')] PUR19110420-V10-38-page8.txt: [('re', 'cently')] PUR19110427-V10-39-page5.txt: [('Loh', 'engrin')] PUR19110511-V10-41-page1.txt: [('va', 'cant')] PUR19110511-V10-41-page4.txt: [('th', 'at')] PUR19110511-V10-41-page6.txt: [('consti', 'tute')] PUR19110518-V10-42-page5.txt: [('SOUT', 'HERN')] PUR19110525-V10-43-page3.txt: [('ap', 'pointed')] PUR19110525-V10-43-page4.txt: [('maga', 'zine')] PUR19110525-V10-43-page6.txt: [('wa', 's')] PUR19110601-V10-44-page1.txt: [('ex', 'isting')] PUR19110601-V10-44-page8.txt: [('th', 'a')] PUR19110622-V10-47-page1.txt: [('Healdsbur', 'g')] PUR19110622-V10-47-page7.txt: [('th', 'a')] PUR19110629-V10-48-page8.txt: [('th', 'at')] PUR19110706-V10-49-page4.txt: [('th', 'at')] PUR19110706-V10-49-page5.txt: [('th', 'at')] PUR19110706-V10-49-page8.txt: [('re', 'ceived')] PUR19110713-V10-50-page4.txt: [('RE', 'CORDER')] PUR19110713-V10-50-page8.txt: [('th', 'at')] PUR19110803-V11-01-page3.txt: [('su', 'perintendent')] PUR19110810-V11-02-page6.txt: [('RE', 'CORDER')] PUR19110810-V11-02-page8.txt: [('th', 'at')] PUR19110824-V11-04-page1.txt: [('M.', '')] PUR19110824-V11-04-page3.txt: [('pre', 'medical')] PUR19110824-V11-04-page6.txt: [('ac', 'tion')] PUR19110824-V11-04-page8.txt: [('G.', '')] PUR19110831-V11-05-page6.txt: [('RE', 'CORDER')] PUR19110921-V11-08-page2.txt: [('re', 'enforced')] PUR19111019-V11-12-page2.txt: [('purpos', 'es')] PUR19111026-V11-13-page8.txt: [('Loughbor', 'ough')] PUR19111116-V11-16-page2.txt: [('wi', 'I')] PUR19111116-V11-16-page3.txt: [("gi'", 's')] PUR19111116-V11-16-page8.txt: [('fi', 'nishes')] PUR19111130-V11-18-page4.txt: [('Ca', 'listoga'), ('RE', 'CORDER')] PUR19111130-V11-18-page7.txt: [('fi', 'R')] PUR19111207-V11-19-page2.txt: [('re', 'create')] PUR19111214-V11-20-page7.txt: [('wi', 'I')] PUR19120104-V11-23-page3.txt: [('presentatio', 'n')] PUR19120104-V11-23-page5.txt: [('th', 'a')] PUR19120104-V11-23-page6.txt: [('RE', 'CORDER')] PUR19120104-V11-23-page7.txt: [('ge', 'M')] PUR19120118-V11-25-page2.txt: [('th', 'a')] PUR19120118-V11-25-page4.txt: [('th', 'at')] PUR19120125-V11-26-page2.txt: [('ch', 's')] PUR19120125-V11-26-page6.txt: [('G.', '')] PUR19120201-V11-27-page2.txt: [('insti', 'tution')] PUR19120215-V11-29-page11.txt: [('impor', 'tant')] PUR19120215-V11-29-page7.txt: [('DECEM', 'BER')] PUR19120215-V11-29-page8.txt: [('DECEM', 'BER')] PUR19120222-V11-30-page2.txt: [('re', 'elected')] PUR19120229-V11-31-page1.txt: [('PA', 'CIFIC')] PUR19120229-V11-31-page3.txt: [('re', 'main')] PUR19120307-V11-32-page7.txt: [('elec', 'ting')] PUR19120314-V11-33-page8.txt: [('RE', 'CORDER')] PUR19120321-V11-34-page4.txt: [('breth', 'ren')] PUR19120321-V11-34-page7.txt: [('ca', 'n')] PUR19120328-V11-35-page3.txt: [('reputa', 'tion')] PUR19120328-V11-35-page4.txt: [('UNIO', 'N')] PUR19120328-V11-35-page8.txt: [('RECO', 'RDER')] PUR19120404-V11-36-page1.txt: [('ex', 'tent')] PUR19120418-V11-38-page12.txt: [('oc', 'cupied')] PUR19120418-V11-38-page4.txt: [('RE', 'CORDER')] PUR19120425-V11-39-page5.txt: [('mo', 'e')] PUR19120425-V11-39-page7.txt: [('re', 'a')] PUR19120425-V11-39-page8.txt: [('Striplin', 'G')] PUR19120502-V11-40-page1.txt: [('wo', 'of')] PUR19120502-V11-40-page5.txt: [('recom', 'mended')] PUR19120509-V11-41-page3.txt: [('McK', 'inleyville')] PUR19120530-V11-44-page5.txt: [('Mc', 'Dowell')] PUR19120613-V11-46-page8.txt: [('fif', 'teen')] PUR19120620-V11-47-page4.txt: [('re', 'elected')] PUR19120704-V11-49-page11.txt: [('th', 'at')] PUR19120704-V11-49-page8.txt: [('th', 'e')] PUR19120711-V11-50-page4.txt: [('th', 'at')] PUR19120711-V11-50-page5.txt: [('th', 'a')] PUR19120718-V11-51-page6.txt: [('th', 'at')] PUR19120725-V11-52-page4.txt: [('th', 'is')] PUR19120725-V11-52-page8.txt: [('th', 'at'), ('un', 'der')] PUR19120808-V12-02-page7.txt: [('M.', '')] PUR19120815-V12-03-page2.txt: [('mo', 'e')] PUR19120815-V12-03-page7.txt: [('Mc', 'Cord'), ('PA', 'CIFIC')] PUR19120829-V12-05-page6.txt: [('G.', '')] PUR19120905-V12-06-page5.txt: [('ren', 'in'), ('breth', 'ren')] PUR19120905-V12-06-page7.txt: [('re', 'A'), ('G.', '')] PUR19120912-V12-07-page7.txt: [('th', 'at'), ('ti', 'ne')] PUR19120919-V12-08-page3.txt: [('M.', '')] PUR19120919-V12-08-page5.txt: [('th', 'at')] PUR19120919-V12-08-page9.txt: [('G.', '')] PUR19121003-V12-10-page2.txt: [('RE', 'CORDER')] PUR19121003-V12-10-page6.txt: [('Richf', 'ord')] PUR19121017-V12-12-page5.txt: [('Mc', 'Donald')] PUR19121017-V12-12-page6.txt: [('Ma', 'N')] PUR19121024-V12-13-page4.txt: [('tr', 'easurer')] PUR19121024-V12-13-page8.txt: [('G.', '')] PUR19121031-V12-14-page3.txt: [('ea', 'r'), ('labo', 'r')] PUR19121031-V12-14-page5.txt: [('ti', 'a')] PUR19121031-V12-14-page7.txt: [('G.', '')] PUR19121114-V12-16-page2.txt: [('Bomba', 'y')] PUR19121114-V12-16-page4.txt: [('th', 'ee')] PUR19121114-V12-16-page7.txt: [('Por', 'terville'), ('G.', '')] PUR19130102-V12-23-page5.txt: [('G.', '')] PUR19130109-V12-24-page6.txt: [('ol', 'd')] PUR19130116-V12-25-page1.txt: [('lor', 'a')] PUR19130123-V12-26-page4.txt: [('RE', 'CD')] PUR19130130-V12-27-page12.txt: [('Mis', 'souri')] PUR19130130-V12-27-page5.txt: [('G.', ''), ('conven', 'tion')] PUR19130130-V12-27-page8.txt: [('espe', 'Cially')] PUR19130130-V12-27-page9.txt: [('RE', 'ASSEMBLY')] PUR19130206-V12-28-page1.txt: [('effi', 'ciency')] PUR19130227-V12-31-page5.txt: [('Re', 'employs'), ('hac', 'he')] PUR19130306-V12-32-page1.txt: [('pra', 't')] PUR19130306-V12-32-page9.txt: [('th', 'a'), ('Califor', 'nia')] PUR19130313-V12-33-page3.txt: [('EC', 'O')] PUR19130313-V12-33-page5.txt: [('G.', '')] PUR19130313-V12-33-page7.txt: [('PA', 'CIFIC')] PUR19130320-V12-34-page1.txt: [('RE', 'CORDER')] PUR19130320-V12-34-page16.txt: [('RE', 'CORDER'), ('PA', 'CIFIC')] PUR19130320-V12-34-page7.txt: [('RE', 'CORDER')] PUR19130320-V12-34-page9.txt: [('re', 'ceive')] PUR19130424-V12-39-page1.txt: [('RE', 'CORDER')] PUR19130424-V12-39-page5.txt: [('IL', 'E')] PUR19130515-V12-42-page1.txt: [('AL', 'Ly'), ('Li', 'I'), ('Co', 'R'), ('CL', 'ASS')] PUR19130515-V12-42-page2.txt: [('CL', 'ASS')] PUR19130515-V12-42-page5.txt: [('G.', '')] PUR19130529-V12-44-page2.txt: [('Mc', 'Conaughey')] PUR19130529-V12-44-page6.txt: [('Ra', 'il')] PUR19130605-V12-45-page3.txt: [('Elde', 'r')] PUR19130605-V12-45-page5.txt: [('contin', 'ued')] PUR19130605-V12-45-page7.txt: [('balan', 'ce'), ('G.', '')] PUR19130612-V12-46-page5.txt: [('appar', 'ently')] PUR19130612-V12-46-page6.txt: [('M.', '')] PUR19130626-V12-48-page4.txt: [('th', 'at'), ('STOCKTO', 'N')] PUR19130626-V12-48-page6.txt: [('IL', 'E'), ('RE', 'CORDER')] PUR19130626-V12-48-page7.txt: [('G.', '')] PUR19130703-V12-49-page4.txt: [('th', 'at')] PUR19130703-V12-49-page8.txt: [('th', 'in'), ('ta', 'ke')] PUR19130710-V12-50-page1.txt: [('denomina', 'tional')] PUR19130717-V12-51-page2.txt: [('noth', 'ing')] PUR19130717-V12-51-page5.txt: [('un', 'less')] PUR19130717-V12-51-page7.txt: [('RE', 'CORDER')] PUR19130724-V12-52-page5.txt: [('th', 'at')] PUR19130724-V12-52-page7.txt: [('G.', ''), ('PA', 'CIFIC')] PUR19130731-V12-53-page12.txt: [('G.', '')] PUR19130731-V12-53-page2.txt: [('SEV', 'ENTH-DAY')] PUR19130731-V12-53-page9.txt: [('RE', 'CORDER')] PUR19130807-V13-01-page8.txt: [('AL', 'Burg')] PUR19130821-V13-03-page11.txt: [('G.', '')] PUR19130821-V13-03-page5.txt: [('ASSOCIA', 'TION'), ('un', 'selfishly')] PUR19130821-V13-03-page7.txt: [('gi', 'e')] PUR19130828-V13-04-page2.txt: [('por', 'no')] PUR19130828-V13-04-page3.txt: [('re', 'baptized'), ('mi', 'n')] PUR19130828-V13-04-page6.txt: [('G.', '')] PUR19130904-V13-05-page4.txt: [('pre', 'pare')] PUR19130918-V13-07-page5.txt: [('ti', 'a')] PUR19130925-V13-08-page6.txt: [('G.', '')] PUR19131002-V13-09-page2.txt: [('Ta', 'coma')] PUR19131002-V13-09-page4.txt: [('ra', 'the')] PUR19131016-V13-11-page6.txt: [('G.', '')] PUR19131023-V13-12-page2.txt: [('M.', '')] PUR19131106-V13-14-page6.txt: [('nu', 's')] PUR19131113-V13-15-page7.txt: [('G.', '')] PUR19131120-V13-16-page3.txt: [('maga', 'zines')] PUR19131120-V13-16-page7.txt: [('mis', 'sions')] PUR19131127-V13-17-page2.txt: [('determi', 'nation')] PUR19131127-V13-17-page7.txt: [('G.', '')] PUR19131204-V13-18-page2.txt: [('Kalf', 'us')] PUR19131211-V13-19-page4.txt: [('RECORDE', 'R'), ('RE', 'CORDER')] PUR19131218-V13-20-page5.txt: [('bef', 'ore')] PUR19131218-V13-20-page7.txt: [('G.', '')] PUR19140108-V13-23-page6.txt: [('effor', 'ts'), ('G.', '')] PUR19140115-V13-24-page7.txt: [('mo', 'I')] PUR19140122-V13-25-page6.txt: [('G.', '')] PUR19140129-V13-26-page12.txt: [('cl', 'E')] PUR19140129-V13-26-page7.txt: [('PA', 'CIFIC')] PUR19140305-V13-31-page1.txt: [('ac', 'tivity'), ('ex', 'Change')] PUR19140305-V13-31-page7.txt: [('G.', '')] PUR19140326-V13-34-page1.txt: [('Sr', 'A')] PUR19140326-V13-34-page19.txt: [('pa', 'pers')] PUR19140326-V13-34-page2.txt: [('Teha', 'chapi')] PUR19140326-V13-34-page23.txt: [('ap', 'POinted')] PUR19140402-V13-35-page1.txt: [('ex', 'penses')] PUR19140416-V13-37-page6.txt: [('RE', 'CORDER')] PUR19140423-V13-38-page2.txt: [('se', 'A')] PUR19140423-V13-38-page3.txt: [('RE', 'CORDER')] PUR19140430-V13-39-page2.txt: [('re', 'quest')] PUR19140430-V13-39-page4.txt: [('explosiv', 'e')] PUR19140430-V13-39-page5.txt: [('G.', '')] PUR19140507-V13-40-page1.txt: [('beauti', 'ful')] PUR19140507-V13-40-page2.txt: [('ro', 'x')] PUR19140507-V13-40-page6.txt: [('RE', 'CORDER')] PUR19140507-V13-40-page8.txt: [('ro', 'at')] PUR19140514-V13-41-page11.txt: [('G.', '')] PUR19140514-V13-41-page3.txt: [('RE', 'CORDER')] PUR19140514-V13-41-page5.txt: [('co', 'rse')] PUR19140521-V13-42-page7.txt: [('re', 'sided')] PUR19140528-V13-43-page6.txt: [('Mc', 'Kibbin'), ('Beh', 'rens')] PUR19140604-V13-44-page1.txt: [('Li', 'the')] PUR19140604-V13-44-page5.txt: [('G.', '')] PUR19140604-V13-44-page6.txt: [('PA', 'CIFIC')] PUR19140618-V13-46-page6.txt: [('PA', 'CIFIC')] PUR19140625-V13-47-page7.txt: [('G.', '')] PUR19140625-V13-47-page8.txt: [('UN', 'ION'), ('RE', 'CORDER')] PUR19140702-V13-48-page4.txt: [('RE', 'CORDER')] PUR19140702-V13-48-page5.txt: [('RE', 'CORDER')] PUR19140702-V13-48-page8.txt: [('RE', 'CORDER')] PUR19140716-V13-50-page10.txt: [('RE', 'CORDER'), ('PA', 'CIFIC')] PUR19140716-V13-50-page11.txt: [('CI', 'VET')] PUR19140723-V13-51-page6.txt: [('gi', 'E'), ('G.', '')] PUR19140730-V13-52-page1.txt: [('RE', 'CORDER')] PUR19140730-V13-52-page4.txt: [('mo', 'Le')] PUR19140806-V14-01-page7.txt: [('G.', '')] PUR19140813-V14-02-page4.txt: [('Sp', 'a')] PUR19140813-V14-02-page7.txt: [('PA', 'CIFIC')] PUR19140820-V14-03-page2.txt: [('re', 'ad')] PUR19140820-V14-03-page4.txt: [('RE', 'CORDER')] PUR19140820-V14-03-page7.txt: [('G.', '')] PUR19140827-V14-04-page6.txt: [('Instru', 'ctor')] PUR19140827-V14-04-page8.txt: [('PA', 'CIFIC')] PUR19140903-V14-05-page5.txt: [('M.', ''), ('G.', '')] PUR19140903-V14-05-page6.txt: [('wa', 'r')] PUR19140910-V14-06-page15.txt: [('Un', 'ion')] PUR19140917-V14-07-page4.txt: [('RE', 'CORDER')] PUR19140924-V14-08-page3.txt: [('OC', 'TOBER')] PUR19140924-V14-08-page5.txt: [('th', 'at'), ('dia', 'thermic')] PUR19140924-V14-08-page7.txt: [('M.', '')] PUR19141001-V14-09-page5.txt: [('Soqu', 'el')] PUR19141001-V14-09-page6.txt: [('M.', ''), ('G.', '')] PUR19141001-V14-09-page7.txt: [('CO', 'R')] PUR19141008-V14-10-page5.txt: [('re', 'C')] PUR19141015-V14-11-page7.txt: [('McKi', 'nleyville')] PUR19141022-V14-12-page2.txt: [('co', 'worker'), ('un', 'a')] PUR19141022-V14-12-page5.txt: [('th', 'at')] PUR19141029-V14-13-page5.txt: [('RE', 'CORDER')] PUR19141105-V14-14-page6.txt: [('RE', 'CORDER'), ('bi', 'weekly')] PUR19141105-V14-14-page7.txt: [('M.', ''), ('G.', '')] PUR19141112-V14-15-page3.txt: [('BR', 'A')] PUR19141112-V14-15-page5.txt: [('th', 'in')] PUR19141112-V14-15-page6.txt: [('stren', 'gth')] PUR19141119-V14-16-page5.txt: [('th', 'in')] PUR19141119-V14-16-page6.txt: [('PA', 'CIFIC')] PUR19141126-V14-17-page5.txt: [('IL', 'A')] PUR19141203-V14-18-page1.txt: [('RE', 'CORDER')] PUR19141217-V14-20-page3.txt: [('re', 'a')] PUR19141231-V14-22-page5.txt: [('RE', 'CORDER')] PUR19150107-V14-23-page6.txt: [('MC', 'PHERSON')] PUR19150107-V14-23-page7.txt: [('RE', 'CORDER')] PUR19150121-V14-25-page1.txt: [('Ni', 'P')] PUR19150121-V14-25-page4.txt: [('fu', 'ture')] PUR19150121-V14-25-page8.txt: [('Ti', 'e')] PUR19150128-V14-26-page4.txt: [('co', 'workers')] PUR19150204-V14-27-page1.txt: [('RE', 'CORDER')] PUR19150204-V14-27-page6.txt: [('G.', '')] PUR19150211-V14-28-page2.txt: [('Mc', 'Cord')] PUR19150211-V14-28-page5.txt: [('irregulari', 'ties')] PUR19150211-V14-28-page8.txt: [('BAK', 'ER')] PUR19150218-V14-29-page7.txt: [('Presid', 'ent'), ('RE', 'CORDER')] PUR19150225-V14-30-page1.txt: [('Mounta', 'in')] PUR19150225-V14-30-page5.txt: [('LIF', 'E'), ('WATCHMA', 'N')] PUR19150225-V14-30-page7.txt: [('VEGE', 'TARIAN'), ('co', 'workers')] PUR19150304-V14-31-page3.txt: [('re', 'read')] PUR19150304-V14-31-page5.txt: [('RE', 'C')] PUR19150304-V14-31-page7.txt: [('VEGE', 'TARIAN')] PUR19150304-V14-31-page8.txt: [('re', 'convenes'), ('Mc', 'Elhany'), ('RE', 'CORDER')] PUR19150311-V14-32-page12.txt: [('th', 'at')] PUR19150311-V14-32-page2.txt: [('Ca', 'lifornia')] PUR19150311-V14-32-page6.txt: [('TRUS', 'TEES')] PUR19150325-V14-33-page5.txt: [('co', 'workers')] PUR19150325-V14-33-page6.txt: [('M.', '')] PUR19150325-V14-33-page8.txt: [('ex', 'hibiting')] PUR19150401-V14-34-page3.txt: [('PACIFI', 'C')] PUR19150422-V14-37-page3.txt: [('Volun', 'teer'), ('secre', 'tary')] PUR19150422-V14-37-page4.txt: [('Mc', 'Guire')] PUR19150422-V14-37-page8.txt: [('Chopi', "n's")] PUR19150506-V14-39-page8.txt: [('re', 'Tract')] PUR19150513-V14-40-page7.txt: [('UN', 'I')] PUR19150520-V14-41-page6.txt: [('re', 'covered')] PUR19150520-V14-41-page8.txt: [('pre', 'medical')] PUR19150603-V14-43-page5.txt: [('ren', 'in')] PUR19150603-V14-43-page6.txt: [('PO', 'o')] PUR19150610-V14-44-page2.txt: [('UN', 'ION'), ('ne', 't')] PUR19150610-V14-44-page5.txt: [('ac', 'cepting'), ('Magazin', 'e')] PUR19150617-V14-45-page4.txt: [('BEDD', 'OE'), ('ple', 'at')] PUR19150624-V14-46-page1.txt: [('RESTITU', 'TION')] PUR19150624-V14-46-page7.txt: [('M.', '')] PUR19150708-V14-48-page6.txt: [('G.', '')] PUR19150715-V14-49-page1.txt: [('Su', 'perintendents')] PUR19150715-V14-49-page7.txt: [('TEM', 'P')] PUR19150715-V14-49-page8.txt: [('Mc', 'Elhany')] PUR19150722-V14-50-page3.txt: [('Mc', 'Elhany')] PUR19150722-V14-50-page5.txt: [('BEDD', 'OE'), ('Ge', 'r')] PUR19150729-V14-51-page6.txt: [('M.', '')] PUR19150729-V14-51-page7.txt: [('PA', 'I')] PUR19150805-V14-52-page1.txt: [('Mc', 'Elhany'), ('RE', 'WARD')] PUR19150805-V14-52-page8.txt: [('co', 'operation')] PUR19150812-V15-01-page4.txt: [('Armon', 'a'), ('Re', 'edley'), ('Shaf', 'ter')] PUR19150819-V15-02-page3.txt: [('co', 'operation')] PUR19150819-V15-02-page5.txt: [('Da', 'DE'), ('Sa', 'eta')] PUR19150819-V15-02-page6.txt: [('RECO', 'RDER'), ('G.', '')] PUR19150826-V15-03-page4.txt: [('RE', 'CORDER')] PUR19150902-V15-04-page1.txt: [('Ma', 'tin'), ('wor', 'd')] PUR19150902-V15-04-page3.txt: [('percenta', 'ge')] PUR19150902-V15-04-page7.txt: [('ex', 'tent')] PUR19150909-V15-05-page3.txt: [('oPpor', 'tune')] PUR19150916-V15-06-page4.txt: [('examina', 'tions')] PUR19150916-V15-06-page5.txt: [('associ', 'ated')] PUR19150916-V15-06-page7.txt: [('CO', 'RDER')] PUR19150923-V15-07-page2.txt: [('PA', 'CIFIC')] PUR19150923-V15-07-page3.txt: [('mis', 's')] PUR19150923-V15-07-page5.txt: [('ap', 'preciation')] PUR19150923-V15-07-page6.txt: [('RE', 'CORDER')] PUR19150930-V15-08-page7.txt: [('MAGA', 'ZINE'), ('INSTRUC', 'TIVE')] PUR19150930-V15-08-page8.txt: [('RE', 'CORDER')] PUR19151007-V15-09-page6.txt: [('PA', 'CIFIC')] PUR19151007-V15-09-page7.txt: [('INSTRUC', 'TIVE')] PUR19151014-V15-10-page5.txt: [('UN', 'ION')] PUR19151021-V15-11-page3.txt: [('ti', 'ts')] PUR19151021-V15-11-page6.txt: [('G.', '')] PUR19151028-V15-12-page7.txt: [('PA', 'N')] PUR19151104-V15-13-page6.txt: [('EDUCAT', 'ION'), ('MAGA', 'ZINE'), ('PA', 'CIFIC')] PUR19151104-V15-13-page7.txt: [('iE', 'R')] PUR19151118-V15-15-page3.txt: [('Shaf', 'ter')] PUR19151118-V15-15-page5.txt: [('UN', 'ION')] PUR19151125-V15-16-page7.txt: [('Ja', 'rs')] PUR19151202-V15-17-page1.txt: [('Mc', 'Elhany')] PUR19151202-V15-17-page5.txt: [('reig', 'n')] PUR19151209-V15-18-page9.txt: [('PA', 'CIFIC')] PUR19151216-V15-19-page7.txt: [('MISCELLA', 'NY')] PUR19151223-V15-20-page2.txt: [('remem', 'bered')] PUR19151230-V15-21-page1.txt: [('RE', 'CORDER')] PUR19151230-V15-21-page4.txt: [('th', 'a')] PUR19151230-V15-21-page7.txt: [('co', 'workers')] PUR19160106-V15-22-page1.txt: [('Heavenl', 'y')] PUR19160106-V15-22-page8.txt: [('yesterda', 'y')] PUR19160113-V15-23-page5.txt: [('th', 'at')] PUR19160203-V15-26-page4.txt: [('Mc', 'Elhany')] PUR19160210-V15-27-page6.txt: [('Mc', 'Reynolds')] PUR19160210-V15-27-page7.txt: [('RE', 'CORDER')] PUR19160302-V15-30-page6.txt: [('Dickin', 'son')] PUR19160316-V15-32-page1.txt: [('CALIFOR', 'NIA')] PUR19160316-V15-32-page11.txt: [("moulder'", 's')] PUR19160316-V15-32-page6.txt: [('UN', 'ION')] PUR19160316-V15-32-page7.txt: [('Su', 'pp')] PUR19160316-V15-32-page8.txt: [('institut', 'es'), ('qu', 'arter')] PUR19160330-V15-34-page1.txt: [('Mc', 'Elhany')] PUR19160406-V15-35-page5.txt: [('pre', 'medical'), ("Sec'", 'y')] PUR19160406-V15-35-page6.txt: [('G.', '')] PUR19160406-V15-35-page7.txt: [('RE', 'CORDER'), ('PA', 'CIFIC')] PUR19160406-V15-35-page8.txt: [('RE', 'CORDER')] PUR19160420-V15-37-page3.txt: [('Calis', 'toga')] PUR19160504-V15-39-page1.txt: [('Re', 'employs')] PUR19160504-V15-39-page7.txt: [('Ari', 'Zona')] PUR19160511-V15-40-page7.txt: [('th', 'at')] PUR19160511-V15-40-page8.txt: [('RE', 'CORDER')] PUR19160518-V15-41-page3.txt: [('enti', 'tled')] PUR19160518-V15-41-page5.txt: [('DIREC', 'TION')] PUR19160525-V15-42-page4.txt: [('ne', 'eds'), ('DIREC', 'TION')] PUR19160601-V15-43-page11.txt: [('cer', 'tain')] PUR19160601-V15-43-page3.txt: [('Pre', 'Medical')] PUR19160601-V15-43-page7.txt: [('pre', 'medical'), ('towar', 'd')] PUR19160608-V15-44-page8.txt: [('un', 'der')] PUR19160615-V15-45-page1.txt: [('oppor', 'tunities')] PUR19160615-V15-45-page8.txt: [('un', 'der')] PUR19160622-V15-46-page1.txt: [('Pac', 'ific'), ('immor', 'tal')] PUR19160622-V15-46-page4.txt: [('Mc', 'Reynolds')] PUR19160629-V15-47-page8.txt: [('un', 'der')] PUR19160706-V15-48-page1.txt: [('co', 'worker')] PUR19160706-V15-48-page8.txt: [('un', 'der')] PUR19160713-V15-49-page7.txt: [('noth', 'ing')] PUR19160713-V15-49-page8.txt: [('un', 'der')] PUR19160720-V15-50-page8.txt: [('un', 'der')] PUR19160727-V15-51-page8.txt: [('un', 'der')] PUR19160803-V15-52-page8.txt: [('un', 'der')] PUR19160810-V16-01-page2.txt: [('pre', 'eminent')] PUR19160810-V16-01-page8.txt: [('un', 'der')] PUR19160817-V16-02-page3.txt: [('congrega', 'tions')] PUR19160817-V16-02-page8.txt: [('M.', '')] PUR19160824-V16-03-page6.txt: [('co', 'operation'), ('PA', 'CIFIC')] PUR19160824-V16-03-page7.txt: [('PA', 'CIFIC')] PUR19160824-V16-03-page8.txt: [('un', 'der')] PUR19160831-V16-04-page3.txt: [('excellen', 't')] PUR19160831-V16-04-page8.txt: [('un', 'der')] PUR19160907-V16-05-page1.txt: [('Mc', 'Reynolds')] PUR19160907-V16-05-page7.txt: [('th', 'is')] PUR19160907-V16-05-page8.txt: [('un', 'der')] PUR19160914-V16-06-page2.txt: [('th', 'or')] PUR19160914-V16-06-page5.txt: [('Mc', 'Elhany')] PUR19160914-V16-06-page8.txt: [('re', 'enter'), ('Kwang', 'tung'), ('un', 'der')] PUR19160921-V16-07-page2.txt: [('re', 'port')] PUR19160921-V16-07-page4.txt: [('receiv', 'ed')] PUR19160921-V16-07-page8.txt: [('Orva', 'L'), ('un', 'der')] PUR19160928-V16-08-page3.txt: [('ou', 'r')] PUR19160928-V16-08-page8.txt: [('Deprav', 'ity'), ('un', 'der')] PUR19161005-V16-09-page3.txt: [('re', 'Mark')] PUR19161005-V16-09-page8.txt: [('un', 'der')] PUR19161012-V16-10-page2.txt: [('co', 'operation'), ('mis', 'Does')] PUR19161019-V16-11-page6.txt: [('MISCELLAN', 'Y')] PUR19161102-V16-13-page1.txt: [('Reas', 'er'), ('salva', 'tion')] PUR19161102-V16-13-page4.txt: [('G.', '')] PUR19161102-V16-13-page5.txt: [('mis', 'E')] PUR19161102-V16-13-page8.txt: [('pre', 'scribed'), ('SA', 'VE')] PUR19161109-V16-14-page4.txt: [('harves', 't'), ('RE', 'CORDER')] PUR19161109-V16-14-page7.txt: [('PAC', 'IFIC')] PUR19161116-V16-15-page1.txt: [('co', 'op')] PUR19161116-V16-15-page5.txt: [('nec', 'He')] PUR19161123-V16-16-page2.txt: [('pre', 'M')] PUR19161123-V16-16-page3.txt: [('ple', 'be')] PUR19161123-V16-16-page5.txt: [('ment', 'on')] PUR19161123-V16-16-page6.txt: [('chil', 'dren')] PUR19161123-V16-16-page8.txt: [('RECOR', 'DER')] PUR19161130-V16-17-page2.txt: [('reconse', 'crated')] PUR19161130-V16-17-page4.txt: [('abus', 'ed')] PUR19161130-V16-17-page7.txt: [('appre', 'ciated')] PUR19161207-V16-18-page7.txt: [('pre', 'medical')] PUR19161214-V16-19-page1.txt: [('Mc', 'Reynolds')] PUR19161214-V16-19-page2.txt: [('se', 'curing'), ('unexpect', 'ed')] PUR19161214-V16-19-page7.txt: [('al', 'do')] PUR19161221-V16-20-page1.txt: [('ap', 'His')] PUR19161221-V16-20-page3.txt: [('CO', 'RDER')] PUR19161228-V16-21-page6.txt: [('bu', 't')] PUR19170104-V16-22-page1.txt: [('eX', 'perience')] PUR19170104-V16-22-page3.txt: [('th', 'at')] PUR19170104-V16-22-page5.txt: [('pre', 'eminently'), ('UN', 'ION')] PUR19170111-V16-23-page3.txt: [('unrequite', 'd')] PUR19170111-V16-23-page4.txt: [('co', 'operation')] PUR19170111-V16-23-page6.txt: [('re', 'read')] PUR19170118-V16-24-page1.txt: [('rt', 'e')] PUR19170125-V16-25-page1.txt: [('re', 'port'), ('publica', 'n')] PUR19170201-V16-26-page5.txt: [('se', 'A')] PUR19170208-V16-27-page2.txt: [('Mc', 'Elhany')] PUR19170208-V16-27-page4.txt: [('Eu', 'reka'), ('co', 'operation')] PUR19170208-V16-27-page6.txt: [('Pa', 'In')] PUR19170215-V16-28-page1.txt: [('ba', 'A')] PUR19170215-V16-28-page3.txt: [('RECO', 'RDER')] PUR19170215-V16-28-page4.txt: [('Gr', 'and'), ('G.', '')] PUR19170222-V16-29-page5.txt: [('RECO', 'RDER')] PUR19170308-V16-31-page10.txt: [('RE', 'CORDER')] PUR19170308-V16-31-page20.txt: [('PACIF', 'IC'), ('UN', 'ION'), ('oth', 'ers')] PUR19170315-V16-32-page2.txt: [('tients', 'in'), ('re', 'In')] PUR19170315-V16-32-page6.txt: [('Prophe', 'cy')] PUR19170315-V16-32-page8.txt: [('ac', 'is')] PUR19170329-V16-34-page6.txt: [('wor', 'ship')] PUR19170329-V16-34-page7.txt: [('ment', 'or')] PUR19170405-V16-35-page3.txt: [('RE', 'CORDER')] PUR19170405-V16-35-page7.txt: [('ac', 'cepted')] PUR19170412-V16-36-page2.txt: [('RECORDE', 'R')] PUR19170412-V16-36-page4.txt: [('Mc', 'Kinleyville')] PUR19170412-V16-36-page7.txt: [('re', 'latives')] PUR19170419-V16-37-page3.txt: [('UN', 'ION')] PUR19170426-V16-38-page8.txt: [('th', 'e')] PUR19170510-V16-40-page5.txt: [('PACI', 'FIC')] PUR19170510-V16-40-page6.txt: [('Literatu', 're')] PUR19170510-V16-40-page8.txt: [('co', 'operation')] PUR19170517-V16-41-page6.txt: [('Volun', 'teer'), ('enjoya', 'ble')] PUR19170524-V16-42-page1.txt: [('ple', 'as')] PUR19170524-V16-42-page3.txt: [('un', 'Do'), ('ju', 'ne')] PUR19170531-V16-43-page4.txt: [('Healds', 'burg')] PUR19170531-V16-43-page8.txt: [('re', 'consideration')] PUR19170607-V16-44-page1.txt: [('rO', 'OD')] PUR19170607-V16-44-page20.txt: [('Ac', 'ademic')] PUR19170607-V16-44-page24.txt: [('Orva', 'L')] PUR19170607-V16-44-page26.txt: [('Orva', 'L')] PUR19170607-V16-44-page29.txt: [('ag', 'a')] PUR19170614-V16-45-page7.txt: [('Saud', 'er'), ('M.', ''), ('G.', '')] PUR19170621-V16-46-page3.txt: [('examin', 'ations')] PUR19170628-V16-47-page4.txt: [('ren', 'in')] PUR19170628-V16-47-page7.txt: [('Re', 'Agents')] PUR19170712-V16-49-page1.txt: [('al', 'as')] PUR19170712-V16-49-page4.txt: [('re', 'enlist'), ('ber', 'a')] PUR19170719-V16-50-page4.txt: [('pre', 'sented')] PUR19170809-V17-01-page2.txt: [('RE', 'CORDER')] PUR19170809-V17-01-page8.txt: [('re', 'Sister')] PUR19170816-V17-02-page3.txt: [('Manil', 'a')] PUR19170816-V17-02-page6.txt: [('po', 'sition')] PUR19170823-V17-03-page3.txt: [('re', 'Sister')] PUR19170823-V17-03-page7.txt: [('Healdsbur', 'g')] PUR19170823-V17-03-page8.txt: [('UNIO', 'N')] PUR19170830-V17-04-page2.txt: [('believ', 'E'), ('re', 'organization')] PUR19170830-V17-04-page6.txt: [('trou', 'ble')] PUR19170906-V17-05-page8.txt: [('Freder', 'ick'), ('Mc', 'Eachern')] PUR19170913-V17-06-page4.txt: [('isol', 'ated')] PUR19170913-V17-06-page5.txt: [('minin', 'g')] PUR19170920-V17-07-page6.txt: [('re', 'Cord')] PUR19170927-V17-08-page1.txt: [('co', 'laborers')] PUR19170927-V17-08-page3.txt: [('co', 'laborer')] PUR19170927-V17-08-page7.txt: [('INTE', 'R')] PUR19171004-V17-09-page1.txt: [('COLORAD', 'O')] PUR19171004-V17-09-page3.txt: [('Sturd', 'evant')] PUR19171011-V17-10-page3.txt: [('DIA', 's')] PUR19171018-V17-11-page1.txt: [('AL', 'E')] PUR19171018-V17-11-page7.txt: [('co', 'N')] PUR19171025-V17-12-page7.txt: [('M.', ''), ('G.', '')] PUR19171101-V17-13-page2.txt: [('discou', 'raged')] PUR19171108-V17-14-page2.txt: [('ment', 'or'), ('wo', 'ld')] PUR19171108-V17-14-page3.txt: [('UNIO', 'N')] PUR19171108-V17-14-page4.txt: [('od', 'is')] PUR19171108-V17-14-page7.txt: [('M.', '')] PUR19171108-V17-14-page8.txt: [('co', 'operate')] PUR19171115-V17-15-page3.txt: [('re', 'A')] PUR19171115-V17-15-page6.txt: [('Un', 'It')] PUR19171122-V17-16-page7.txt: [('M.', '')] PUR19171129-V17-17-page2.txt: [('Ca', 'listoga')] PUR19171129-V17-17-page7.txt: [('fi', 'st')] PUR19171206-V17-18-page3.txt: [('UNIO', 'N')] PUR19171206-V17-18-page4.txt: [('re', 'ports')] PUR19171206-V17-18-page7.txt: [('M.', '')] PUR19171220-V17-20-page7.txt: [('M.', '')] PUR19171220-V17-20-page8.txt: [('un', 'der')] PUR19180103-V17-22-page5.txt: [('PA', 'CIFIC')] PUR19180103-V17-22-page8.txt: [('re', 'adjustment')] PUR19180110-V17-23-page1.txt: [('re', 'dedicate')] PUR19180110-V17-23-page5.txt: [('re', 'F')] PUR19180110-V17-23-page7.txt: [('M.', '')] PUR19180117-V17-24-page6.txt: [('UN', 'ION')] PUR19180124-V17-25-page1.txt: [('M.', '')] PUR19180124-V17-25-page5.txt: [('se', 'M')] PUR19180131-V17-26-page1.txt: [('ef', 'fort')] PUR19180131-V17-26-page7.txt: [('M.', '')] PUR19180207-V17-27-page5.txt: [('churche', 's')] PUR19180214-V17-28-page5.txt: [('M.', '')] PUR19180221-V17-29-page1.txt: [('presi', 'dents')] PUR19180221-V17-29-page14.txt: [('colos', 'sal'), ('RECOR', 'DER')] PUR19180221-V17-29-page4.txt: [('re', 'port')] PUR19180221-V17-29-page6.txt: [('PON', 'E')] PUR19180221-V17-29-page7.txt: [('befo', 're'), ('Seri', 'es')] PUR19180221-V17-29-page9.txt: [('ca', 'in')] PUR19180228-V17-30-page3.txt: [('RECO', 'RDER')] PUR19180228-V17-30-page7.txt: [('M.', '')] PUR19180307-V17-31-page3.txt: [('Lysing', 'er')] PUR19180307-V17-31-page6.txt: [('co', 'operation')] PUR19180314-V17-32-page2.txt: [('re', 'canvassing')] PUR19180314-V17-32-page4.txt: [('M.', '')] PUR19180314-V17-32-page5.txt: [('Co', 'operation'), ('thr', 'ough')] PUR19180314-V17-32-page7.txt: [('M.', '')] PUR19180321-V17-33-page3.txt: [('re', 'reading')] PUR19180321-V17-33-page6.txt: [('M.', '')] PUR19180328-V17-34-page1.txt: [('Li', 'P'), ('LI', 'N')] PUR19180328-V17-34-page5.txt: [('pri', 'M'), ('co', 'operate')] PUR19180328-V17-34-page8.txt: [('co', 'operation')] PUR19180404-V17-35-page2.txt: [('co', 'operation')] PUR19180404-V17-35-page5.txt: [('communi', 'cate')] PUR19180404-V17-35-page6.txt: [('ab', 'B')] PUR19180411-V17-36-page2.txt: [('co', 'operation')] PUR19180411-V17-36-page3.txt: [('PA', 'CIFIC')] PUR19180411-V17-36-page7.txt: [('lor', 'is')] PUR19180418-V17-37-page4.txt: [('re', 'organization')] PUR19180418-V17-37-page7.txt: [('th', 'ey')] PUR19180418-V17-37-page8.txt: [('co', 'ordinate')] PUR19180425-V17-38-page5.txt: [('M.', '')] PUR19180502-V17-39-page2.txt: [('re', 'In')] PUR19180502-V17-39-page3.txt: [('soci', 'eties')] PUR19180502-V17-39-page7.txt: [('Eighte', 'en'), ('RE', 'CORDER')] PUR19180509-V17-40-page8.txt: [('re', 'enforced')] PUR19180516-V17-41-page1.txt: [('co', 'laborers')] PUR19180516-V17-41-page4.txt: [('Ma', 'tin')] PUR19180516-V17-41-page5.txt: [('EC', 'O'), ('co', 'operation')] PUR19180516-V17-41-page8.txt: [('co', 'workers')] PUR19180523-V17-42-page8.txt: [('co', 'operation'), ('HEALDSB', 'URG')] PUR19180530-V17-43-page3.txt: [('tra', 'in')] PUR19180530-V17-43-page5.txt: [('ef', 'fort')] PUR19180530-V17-43-page7.txt: [('ber', 'nice')] PUR19180606-V17-44-page1.txt: [('sm', 'all'), ('ple', 'at')] PUR19180606-V17-44-page5.txt: [('re', 'A'), ('co', 'operation')] PUR19180606-V17-44-page6.txt: [('co', 'at')] PUR19180613-V17-45-page1.txt: [('Pre', 'medical'), ('Ma', 'rtin'), ('co', 'operation'), ('li', 'P')] PUR19180613-V17-45-page4.txt: [('M.', '')] PUR19180620-V17-46-page1.txt: [('Lysing', 'er')] PUR19180620-V17-46-page3.txt: [('co', 'operation')] PUR19180627-V17-47-page1.txt: [('M.', '')] PUR19180627-V17-47-page3.txt: [('th', 'Is')] PUR19180627-V17-47-page7.txt: [('ple', 'at')] PUR19180704-V17-48-page4.txt: [('co', 'operation')] PUR19180704-V17-48-page5.txt: [('re', 'M')] PUR19180718-V17-50-page8.txt: [('re', 'consecrated')] PUR19180725-V17-51-page5.txt: [('ni', 't')] PUR19180725-V17-51-page6.txt: [('G.', '')] PUR19180725-V17-51-page8.txt: [('co', 'operation'), ('wo', 'k')] PUR19180801-V17-52-page1.txt: [('th', 'e')] PUR19180801-V17-52-page3.txt: [('co', 'operation')] PUR19180808-V18-01-page3.txt: [('co', 'operation')] PUR19180808-V18-01-page8.txt: [('re', 'affirming')] PUR19180815-V18-02-page8.txt: [('co', 'laborer')] PUR19180822-V18-03-page3.txt: [('pre', 'occupy')] PUR19180822-V18-03-page5.txt: [('Co', 'operate'), ('RECORDE', 'R')] PUR19180822-V18-03-page8.txt: [('Mc', 'Elhany')] PUR19180829-V18-04-page2.txt: [('co', 'operate')] PUR19180829-V18-04-page3.txt: [('fo', 'r')] PUR19180905-V18-05-page1.txt: [('Irw', 'in')] PUR19180905-V18-05-page2.txt: [('Diffen', 'bacher'), ('IL', 'L')] PUR19180905-V18-05-page7.txt: [('re', 'christened')] PUR19180912-V18-06-page2.txt: [('co', 'operate')] PUR19180912-V18-06-page7.txt: [('wi', 'de')] PUR19180919-V18-07-page4.txt: [('co', 'operate')] PUR19180919-V18-07-page6.txt: [('re', 'echo'), ('ex', 'It')] PUR19180926-V18-08-page1.txt: [('presente', 'd')] PUR19180926-V18-08-page2.txt: [('ren', 'in'), ('re', 'I')] PUR19180926-V18-08-page7.txt: [('G.', '')] PUR19181003-V18-09-page3.txt: [('Ari', 'zona')] PUR19181003-V18-09-page6.txt: [('ex', 'amination')] PUR19181017-V18-11-page8.txt: [('re', 'In'), ('mis', 'Does')] PUR19181031-V18-13-page1.txt: [('co', 'operate')] PUR19181031-V18-13-page3.txt: [('co', 'operation'), ('Mc', 'Kinleyville')] PUR19181031-V18-13-page7.txt: [('EX', 'tracts')] PUR19181107-V18-14-page1.txt: [('co', 'operate')] PUR19181114-V18-15-page6.txt: [('re', 'opens'), ('Re', 'Opening')] PUR19181121-V18-16-page1.txt: [('re', 'ligious')] PUR19181121-V18-16-page8.txt: [('Wa', 'ft')] PUR19181128-V18-17-page1.txt: [('chil', 'dren')] PUR19181128-V18-17-page2.txt: [('litera', 'List')] PUR19181128-V18-17-page6.txt: [('ren', 'in'), ('ma', 'Linda')] PUR19181212-V18-19-page3.txt: [('re', 'C')] PUR19181212-V18-19-page5.txt: [('re', 'A'), ('benefi', 'cence')] PUR19181219-V18-20-page1.txt: [('ses', 'sions')] PUR19181226-V18-21-page4.txt: [('co', 'operation')] PUR19181226-V18-21-page5.txt: [('em', 'PlOying')] PUR19190102-V18-22-page7.txt: [('Califo', 'rnia')] PUR19190109-V18-23-page5.txt: [('Pa', 'S')] PUR19190109-V18-23-page7.txt: [('re', 'work'), ('om', 'a'), ('un', 'I'), ('ADVERTISEM', 'ENTS')] PUR19190109-V18-23-page8.txt: [('Pre', 'Medical')] PUR19190116-V18-24-page1.txt: [('ca', 'me')] PUR19190116-V18-24-page2.txt: [('un', 'to')] PUR19190116-V18-24-page6.txt: [('re', 'but')] PUR19190116-V18-24-page7.txt: [('G.', ''), ('ex', 'claimed')] PUR19190123-V18-25-page1.txt: [('co', 'operation')] PUR19190123-V18-25-page4.txt: [('es', 'to')] PUR19190123-V18-25-page8.txt: [('rA', 'ft')] PUR19190130-V18-26-page4.txt: [('co', 'operation')] PUR19190130-V18-26-page5.txt: [('co', 'operation')] PUR19190130-V18-26-page7.txt: [('th', 'at')] PUR19190206-V18-27-page7.txt: [('M.', '')] PUR19190206-V18-27-page8.txt: [('re', 'print')] PUR19190220-V18-29-page1.txt: [('clasSe', 's')] PUR19190220-V18-29-page4.txt: [('co', 'operation')] PUR19190227-V18-30-page1.txt: [('co', 'operated')] PUR19190227-V18-30-page3.txt: [('co', 'operation')] PUR19190227-V18-30-page6.txt: [('circula', 'ted')] PUR19190227-V18-30-page8.txt: [('DA', 'Y')] PUR19190306-V18-31-page1.txt: [('pre', 'vail')] PUR19190306-V18-31-page5.txt: [('re', 'in')] PUR19190306-V18-31-page6.txt: [('Willia', 'm')] PUR19190306-V18-31-page7.txt: [('G.', '')] PUR19190313-V18-32-page3.txt: [('Pre', 's')] PUR19190313-V18-32-page4.txt: [('nee', 'ly')] PUR19190313-V18-32-page7.txt: [('re', 'enter')] PUR19190320-V18-33-page7.txt: [('re', 'G'), ('co', 'operation')] PUR19190327-V18-34-page3.txt: [('Ari', 'zona'), ('ex', 'Ceeded')] PUR19190327-V18-34-page6.txt: [('fre', 'quently')] PUR19190403-V18-35-page3.txt: [('re', 'Assembly')] PUR19190410-V18-36-page1.txt: [('co', 'operate')] PUR19190410-V18-36-page4.txt: [('Painte', 'r')] PUR19190410-V18-36-page7.txt: [('G.', '')] PUR19190417-V18-37-page5.txt: [('ac', 'complished')] PUR19190417-V18-37-page6.txt: [('re', 'copies')] PUR19190424-V18-38-page3.txt: [('re', 'A')] PUR19190424-V18-38-page6.txt: [('co', 'operation')] PUR19190424-V18-38-page7.txt: [('peo', 'A')] PUR19190424-V18-38-page8.txt: [('re', 'read')] PUR19190501-V18-39-page1.txt: [('th', 'is')] PUR19190501-V18-39-page2.txt: [('ti', 'the')] PUR19190501-V18-39-page5.txt: [('UN', 'ION')] PUR19190515-V18-41-page2.txt: [('th', 'at')] PUR19190522-V18-42-page1.txt: [('tri', 'weekly')] PUR19190522-V18-42-page2.txt: [('RECORDE', 'R')] PUR19190522-V18-42-page6.txt: [('accompa', 'nies')] PUR19190529-V18-43-page1.txt: [('re', 'A')] PUR19190529-V18-43-page2.txt: [('re', 'cent')] PUR19190605-V18-44-page8.txt: [('co', 'operative')] PUR19190612-V18-45-page7.txt: [('G.', '')] PUR19190619-V18-46-page3.txt: [('atten', 'd')] PUR19190619-V18-46-page5.txt: [('co', 'operate')] PUR19190619-V18-46-page6.txt: [('re', 'union')] PUR19190619-V18-46-page7.txt: [('ac', 'credited')] PUR19190626-V18-47-page2.txt: [('co', 'operate')] PUR19190626-V18-47-page3.txt: [('pre', 'eminently')] PUR19190626-V18-47-page6.txt: [('co', 'operation')] PUR19190626-V18-47-page7.txt: [('adver', 'tising')] PUR19190710-V18-49-page3.txt: [('circ', 'e')] PUR19190717-V18-50-page2.txt: [('co', 'laborers')] PUR19190717-V18-50-page8.txt: [('Si', 'C')] PUR19190724-V18-51-page4.txt: [('Pa', 'W')] PUR19190724-V18-51-page7.txt: [('Mc', 'Henry')] PUR19190724-V18-51-page8.txt: [('co', 'operation'), ('Reco', 'rder')] PUR19190731-V18-52-page1.txt: [('pleasu', 're'), ('Mc', 'Reynolds')] PUR19190731-V18-52-page2.txt: [('se', 'cure'), ('al', 'I'), ('co', 'operation')] PUR19190807-V19-01-page7.txt: [('Wil', 'son'), ('ac', 'companies')] PUR19190814-V19-02-page2.txt: [('co', 'operation'), ('ple', 'a')] PUR19190814-V19-02-page7.txt: [('ac', 'count')] PUR19190814-V19-02-page8.txt: [('Califor', 'nia')] PUR19190821-V19-03-page3.txt: [('co', 'operation')] PUR19190821-V19-03-page8.txt: [('secre', 'tary')] PUR19190904-V19-04-page1.txt: [('re', 'People')] PUR19190904-V19-04-page4.txt: [('re', 'arrange'), ('co', 'operate')] PUR19190904-V19-04-page6.txt: [('Co', 'operation'), ('co', 'operation')] PUR19190911-V19-05-page7.txt: [('Mc', 'Kenzie'), ('un', 'Wanted')] PUR19190918-V19-06-page4.txt: [('re', 'port')] PUR19190918-V19-06-page5.txt: [('co', 'operate')] PUR19190925-V19-07-page3.txt: [('co', 'operation')] PUR19190925-V19-07-page4.txt: [('Moff', 'it')] PUR19191002-V19-08-page1.txt: [("isn'", 't')] PUR19191002-V19-08-page2.txt: [('Pr', 'ut')] PUR19191002-V19-08-page3.txt: [('assig', 'ned')] PUR19191002-V19-08-page5.txt: [("world'", 's')] PUR19191002-V19-08-page6.txt: [('co', 'laborer'), ('bi', 'weekly')] PUR19191016-V19-10-page6.txt: [('li', 'fe')] PUR19191023-V19-11-page2.txt: [('peo', 'A')] PUR19191106-V19-13-page3.txt: [('co', 'operation')] PUR19191106-V19-13-page5.txt: [('sugges', 'tions')] PUR19191120-V19-15-page4.txt: [('FINAN', 'CIAL')] PUR19191120-V19-15-page5.txt: [('ent', 'H'), ('co', 'operate')] PUR19191120-V19-15-page6.txt: [('Harve', 'st')] PUR19191120-V19-15-page7.txt: [('Emer', 'son'), ('al', 'D')] PUR19191127-V19-16-page6.txt: [('al', 'to')] PUR19191127-V19-16-page7.txt: [('co', 'operation'), ('giv', 'ing')] PUR19191204-V19-17-page7.txt: [('G.', '')] PUR19191211-V19-18-page2.txt: [('co', 'workers')] PUR19191211-V19-18-page6.txt: [('chil', 'dren')] PUR19191211-V19-18-page7.txt: [('G.', '')] PUR19191211-V19-18-page8.txt: [('co', 'operate'), ('M.', '')] PUR19191218-V19-19-page6.txt: [('re', 'ports')] PUR19191218-V19-19-page7.txt: [('G.', ''), ('un', 'I')] PUR19191225-V19-20-page2.txt: [('th', 'e'), ('se', 'ction'), ('pa', 'yable')] PUR19191225-V19-20-page5.txt: [('re', 'Press'), ('measu', 're')] PUR19191225-V19-20-page7.txt: [('G.', '')] PUR19200101-V19-21-page5.txt: [('peo', 'Ple')] PUR19200101-V19-21-page7.txt: [('G.', '')] PUR19200101-V19-21-page8.txt: [('Br', 'oth')] PUR19200108-V19-22-page1.txt: [('co', 'operation')] PUR19200108-V19-22-page3.txt: [('Ne', 'vada')] PUR19200108-V19-22-page5.txt: [('DEDI', 'CATED')] PUR19200108-V19-22-page7.txt: [('re', 'election')] PUR19200115-V19-23-page1.txt: [('re', 'port'), ('co', 'oper')] PUR19200115-V19-23-page3.txt: [('th', 'ree')] PUR19200122-V19-24-page3.txt: [('ry', 'a')] PUR19200122-V19-24-page8.txt: [('co', 'operate')] PUR19200129-V19-25-page2.txt: [('co', 'opery')] PUR19200129-V19-25-page4.txt: [('co', 'operate'), ('CO', 'OPERATION')] PUR19200129-V19-25-page6.txt: [('MIS', 'SIONARY')] PUR19200205-V19-26-page2.txt: [('co', 'operation'), ('ment', 'on')] PUR19200212-V19-27-page2.txt: [('co', 'operation')] PUR19200212-V19-27-page5.txt: [('INGA', 'THERING')] PUR19200212-V19-27-page7.txt: [('G.', '')] PUR19200226-V19-28-page11.txt: [('co', 'operation')] PUR19200226-V19-28-page2.txt: [('hou', 'se'), ('Se', 'rna')] PUR19200226-V19-28-page5.txt: [('RE', 'VENUE')] PUR19200304-V19-29-page10.txt: [('Je', 'W'), ('G.', '')] PUR19200304-V19-29-page11.txt: [('G.', '')] PUR19200304-V19-29-page12.txt: [('re', 'quested')] PUR19200304-V19-29-page4.txt: [('co', 'oper')] PUR19200311-V19-30-page1.txt: [('betwe', 'en')] PUR19200311-V19-30-page2.txt: [('ro', 'many')] PUR19200311-V19-30-page3.txt: [('mis', 'Time')] PUR19200311-V19-30-page5.txt: [('re', 'porting'), ('Sebas', 'topol')] PUR19200311-V19-30-page7.txt: [('G.', '')] PUR19200311-V19-30-page8.txt: [('PA', 'CIFIC')] PUR19200318-V19-31-page5.txt: [('har', 'A')] PUR19200318-V19-31-page7.txt: [('foun', 'D'), ('G.', '')] PUR19200325-V19-32-page7.txt: [('G.', '')] PUR19200401-V19-33-page2.txt: [('co', 'operation')] PUR19200401-V19-33-page7.txt: [('G.', '')] PUR19200408-V19-34-page7.txt: [('G.', '')] PUR19200415-V19-35-page2.txt: [('Co', 'operation')] PUR19200415-V19-35-page5.txt: [('ex', 'On')] PUR19200415-V19-35-page6.txt: [('JEN', 'NINGS')] PUR19200415-V19-35-page7.txt: [('G.', '')] PUR19200422-V19-36-page3.txt: [('co', 'o')] PUR19200422-V19-36-page7.txt: [('G.', '')] PUR19200429-V19-37-page5.txt: [('CORPOR', 'ATION'), ('SEV', 'ENTH-DAY')] PUR19200429-V19-37-page8.txt: [('co', 'operation'), ('Mc', 'Elhany')] PUR19200506-V19-38-page3.txt: [('brin', 'gs'), ('Re', 'creates')] PUR19200506-V19-38-page7.txt: [('G.', '')] PUR19200506-V19-38-page8.txt: [('co', 'on')] PUR19200513-V19-39-page4.txt: [('Li', 'I')] PUR19200520-V19-40-page2.txt: [('co', 'operation')] PUR19200520-V19-40-page4.txt: [('re', 'WORDS')] PUR19200520-V19-40-page6.txt: [('Cem', 'etery'), ('pil', 'grim')] PUR19200520-V19-40-page7.txt: [('M.', '')] PUR19200527-V19-41-page4.txt: [('superin', 'tendent')] PUR19200527-V19-41-page5.txt: [('CONSTITU', 'ENCY'), ('co', 'operating')] PUR19200527-V19-41-page7.txt: [('G.', '')] PUR19200603-V19-42-page5.txt: [('CC', 'el'), ('al', 't'), ('CA', 'N'), ('CO', 'CO'), ('rI', 'CA')] PUR19200610-V19-43-page2.txt: [('un', 'Christian')] PUR19200610-V19-43-page3.txt: [('ment', 'on')] PUR19200610-V19-43-page7.txt: [('G.', '')] PUR19200617-V19-44-page2.txt: [('re', 'F')] PUR19200617-V19-44-page3.txt: [('Sa', 'ved')] PUR19200617-V19-44-page4.txt: [('co', 'o')] PUR19200617-V19-44-page7.txt: [('G.', '')] PUR19200624-V19-45-page6.txt: [('Mis', 'sion')] PUR19200701-V19-46-page2.txt: [('co', 'operate')] PUR19200701-V19-46-page5.txt: [('ba', 'sis')] PUR19200708-V19-47-page7.txt: [('tw', 'o'), ('hom', 'e'), ('Gl', 'en')] PUR19200715-V19-48-page7.txt: [('G.', '')] PUR19200722-V19-49-page6.txt: [('co', 'operation')] PUR19200722-V19-49-page7.txt: [('G.', '')] PUR19200729-V19-50-page1.txt: [('pre', 'eminent'), ('AB', 'B')] PUR19200729-V19-50-page7.txt: [('G.', '')] PUR19200729-V19-50-page8.txt: [('fa', 're')] PUR19200805-V19-51-page1.txt: [('co', 'operation')] PUR19200805-V19-51-page2.txt: [('th', 'is'), ('co', 'operation'), ('gi', 'e')] PUR19200805-V19-51-page4.txt: [('busi', 'ness'), ('co', 'Operation')] PUR19200805-V19-51-page5.txt: [('ASSOCI', 'ATION')] PUR19200805-V19-51-page7.txt: [('G.', '')] PUR19200805-V19-51-page8.txt: [('co', 'operate')] PUR19200812-V19-52-page2.txt: [('becau', 'se')] PUR19200812-V19-52-page4.txt: [('re', 'F')] PUR19200812-V19-52-page5.txt: [('Sabba', 'th')] PUR19200812-V19-52-page6.txt: [('ASSOCI', 'ATION')] PUR19200812-V19-52-page7.txt: [('G.', '')] PUR19200819-V20-01-page2.txt: [('corresponde', 'nce')] PUR19200819-V20-01-page3.txt: [('MAGA', 'ZINE')] PUR19200819-V20-01-page4.txt: [('ASSOCI', 'ATION')] PUR19200819-V20-01-page7.txt: [('G.', '')] PUR19200826-V20-02-page1.txt: [('re', 'I')] PUR19200826-V20-02-page3.txt: [('Sa', 'n')] PUR19200826-V20-02-page7.txt: [('Fif', 'teen')] PUR19200902-V20-03-page6.txt: [('pre', 'war')] PUR19200909-V20-04-page1.txt: [('G.', '')] PUR19200909-V20-04-page7.txt: [('G.', '')] PUR19200916-V20-05-page6.txt: [('AA', 'RONITES')] PUR19200916-V20-05-page7.txt: [('G.', '')] PUR19200923-V20-06-page4.txt: [('mis', 'sionary')] PUR19200923-V20-06-page6.txt: [('COLLEC', 'TION')] PUR19200923-V20-06-page7.txt: [('Re', 'House'), ('G.', '')] PUR19200930-V20-07-page7.txt: [('co', 'operation')] PUR19201007-V20-08-page2.txt: [('co', 'operation')] PUR19201007-V20-08-page5.txt: [('Ingatheri', 'ng')] PUR19201007-V20-08-page8.txt: [('ap', 'E')] PUR19201014-V20-09-page1.txt: [('ple', 'as')] PUR19201014-V20-09-page2.txt: [('PACIF', 'IC'), ('PERSECUT', 'ED'), ('NE', 'T')] PUR19201014-V20-09-page4.txt: [('SEPTEM', 'BER')] PUR19201014-V20-09-page6.txt: [('COLPOR', 'TEUR')] PUR19201014-V20-09-page7.txt: [('G.', ''), ('un', 'less')] PUR19201014-V20-09-page8.txt: [('re', 'in'), ('ple', 'as'), ('workin', 'g')] PUR19201021-V20-10-page1.txt: [('co', 'operation')] PUR19201021-V20-10-page2.txt: [('co', 'operation')] PUR19201021-V20-10-page7.txt: [('G.', '')] PUR19201028-V20-11-page1.txt: [('co', 'workers')] PUR19201028-V20-11-page3.txt: [('da', 'sent'), ('oth', 'er')] PUR19201028-V20-11-page5.txt: [('Septem', 'ber')] PUR19201028-V20-11-page6.txt: [('re', 'ported')] PUR19201028-V20-11-page7.txt: [('SPECIA', 'L'), ('G.', '')] PUR19201104-V20-12-page1.txt: [('Czecho', 'Slovakia')] PUR19201104-V20-12-page2.txt: [('COLPOR', 'TEUR')] PUR19201111-V20-13-page4.txt: [('ma', 'n')] PUR19201111-V20-13-page7.txt: [('G.', '')] PUR19201118-V20-14-page1.txt: [('co', 'operation')] PUR19201118-V20-14-page4.txt: [('pleasu', 're'), ('ber', 'a')] PUR19201118-V20-14-page7.txt: [('G.', '')] PUR19201118-V20-14-page8.txt: [('bi', 'monthly')] PUR19201125-V20-15-page1.txt: [('co', 'operation')] PUR19201125-V20-15-page6.txt: [('co', 'operation')] PUR19201125-V20-15-page7.txt: [('G.', ''), ('un', 'Planted')] PUR19201202-V20-16-page4.txt: [('co', 'operate')] PUR19201202-V20-16-page7.txt: [('G.', '')] PUR19201209-V20-17-page6.txt: [('re', 'A')] PUR19201216-V20-18-page3.txt: [('giv', 'er')] PUR19201216-V20-18-page7.txt: [('G.', '')] PUR19201223-V20-19-page7.txt: [('G.', '')] PUR19201230-V20-20-page3.txt: [('mis', 'sions')] PUR19201230-V20-20-page6.txt: [('COLPOR', 'TEUR')] PUR19201230-V20-20-page8.txt: [('re', 'live'), ('cov', 'er')]
Check Correction 5¶
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/PUR/correction5 Average verified rate: 0.9703877174581359 Average of error rates: 0.03216701091767483 Total token count: 6525164
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', 16606), ('w', 15066), ('m', 10905), ('g', 10531), ('f', 7300), ('r', 6621), ('d', 6495), ("'", 4848), ('t', 4448), ('n', 3118), ('th', 1462), ('x', 808), ('k', 690), ('tion', 620), ('u', 585), ('re', 457), ('ords', 406), ('ence', 397), ('co', 396), ('seventhday', 345), ('ference', 306), ('ment', 304), ('sabbathschool', 293), ('inter-mountain', 276), ('verah', 258), ('ex', 246), ('wm', 242), ("canvassers'", 229), ('pepperwood', 223), ('ers', 222), ('ber', 220), ('z', 203), ('lb', 195), ("the'", 189), ('oo', 186), ('ple', 185), ('io', 181), ('ly', 169), ('twentyfifth', 168), ("''", 165), ('sionary', 161), ('pa', 154), ('al', 151), ('tions', 150), ('mis', 149), ("bookmen's", 149), ('mo', 146), ('un', 145), ("colporteurs'", 144), ('ft', 142)]
Correction 6 -- Rejoin Split Words II¶
In [28]:
# %load shared_elements/rejoin_split_words.py
prev = cycle
cycle = "correction6"
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=True)
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()
PUR19010801-V01-01-page14.txt: [('o', 'ro'), ('Tra', 'ver')] PUR19010801-V01-01-page4.txt: [('tin', 'es')] PUR19010815-V01-02-page9.txt: [('con', 'stantly')] PUR19010829-V01-03-page1.txt: [('pe', 'culiar')] PUR19010829-V01-03-page2.txt: [('to', 'co')] PUR19010829-V01-03-page4.txt: [('CONFER', 'ENCE')] PUR19010912-V01-04-page12.txt: [('A', 'ND')] PUR19010912-V01-04-page16.txt: [('MISSION', 'ARY')] PUR19010912-V01-04-page3.txt: [('Ex', 'ecutive')] PUR19010912-V01-04-page8.txt: [('l', 'ook')] PUR19010926-V01-05-page16.txt: [('So', 'ciety'), ('a', 'nd'), ('Sep', 'tember'), ('prog', 'ress')] PUR19010926-V01-05-page5.txt: [('LABOR', 'ERS')] PUR19011010-V01-06-page3.txt: [('to', 're')] PUR19011010-V01-06-page9.txt: [('of', 'fice')] PUR19011024-V01-07-page9.txt: [('PER', 'SONAL')] PUR19011107-V01-08-page12.txt: [('CO', 'CO')] PUR19011107-V01-08-page15.txt: [('in', 'stitution')] PUR19011107-V01-08-page4.txt: [('CON', 'FERENCE')] PUR19011121-V01-09-page13.txt: [('in', 'teresting')] PUR19011121-V01-09-page9.txt: [('invi', 'tation')] PUR19011205-V01-10-page14.txt: [('MISSION', 'ARY')] PUR19011205-V01-10-page15.txt: [('sub', 'jects')] PUR19011219-V01-11-page12.txt: [('CALI', 'FORNIA')] PUR19011219-V01-11-page14.txt: [('with', 'ies')] PUR19011219-V01-11-page3.txt: [('begin', 'ning'), ('CONFER', 'ENCE')] PUR19020102-V01-12-page1.txt: [('Scrip', 'tures')] PUR19020102-V01-12-page10.txt: [('CON', 'VENTIONS')] PUR19020102-V01-12-page13.txt: [('present', 'ers')] PUR19020102-V01-12-page2.txt: [('F', 'rancisco')] PUR19020116-V01-13-page10.txt: [('work', 'ers')] PUR19020116-V01-13-page7.txt: [('CONFER', 'ENCE')] PUR19020130-V01-14-page1.txt: [('CON', 'TINUED')] PUR19020130-V01-14-page11.txt: [('eve', 'ning')] PUR19020130-V01-14-page12.txt: [('eve', 'ning')] PUR19020130-V01-14-page16.txt: [('SO', 'CIETIES')] PUR19020130-V01-14-page9.txt: [('SOUTH', 'ERN'), ('CON', 'FERENCE')] PUR19020213-V01-15-page14.txt: [('CORRESPOND', 'ENCE')] PUR19020213-V01-15-page5.txt: [('JAN', 'UARY')] PUR19020313-V01-16-page15.txt: [('CAN', 'VASSERS')] PUR19020313-V01-16-page8.txt: [('a', 're')] PUR19020327-V01-17-page15.txt: [('CON', 'FERENCE')] PUR19020327-V01-17-page18.txt: [('to', 'dd'), ('OF', 'FERINGS')] PUR19020327-V01-17-page5.txt: [('CHRIS', 'TIAN')] PUR19020327-V01-17-page7.txt: [('CON', 'FERENCE')] PUR19020410-V01-18-page1.txt: [('conversa', 'tion')] PUR19020424-V01-19-page3.txt: [('CAL', 'IFORNIA')] PUR19020424-V01-19-page4.txt: [('to', 'te')] PUR19020508-V01-20-page1.txt: [('chil', 'dren')] PUR19020508-V01-20-page13.txt: [('Of', 'fice')] PUR19020605-V01-22-page12.txt: [('a', 'nd')] PUR19020605-V01-22-page14.txt: [('BE', 'NEVOLENT'), ('MISSION', 'ARY'), ('MED', 'ICAL')] PUR19020605-V01-22-page3.txt: [('DEPART', 'MENT')] PUR19020619-V01-23-page16.txt: [('CHRIS', 'TIANIA')] PUR19020619-V01-23-page4.txt: [('CON', 'FERENCE')] PUR19020619-V01-23-page8.txt: [('CONFER', 'ENCE')] PUR19020619-V01-23-page9.txt: [('en', 'thusiasm')] PUR19020703-V01-24-page8.txt: [('CONFER', 'ENCE')] PUR19020717-V01-25-page11.txt: [('AS', 'SOCIATION'), ('MISSION', 'ARY')] PUR19020717-V01-25-page3.txt: [('a', 'id')] PUR19020717-V01-25-page6.txt: [('CON', 'FERENCE')] PUR19020717-V01-25-page8.txt: [('CON', 'VENTION')] PUR19020731-V01-26-page10.txt: [('num', 'ber')] PUR19020731-V01-26-page11.txt: [('a', 'cer'), ('SOUTH', 'ERN'), ('P', 'ACIFIC')] PUR19020731-V01-26-page15.txt: [('Is', 'th'), ('a', 'mo'), ('th', 'oth')] PUR19020731-V01-26-page4.txt: [('CON', 'FERENCE')] PUR19020731-V01-26-page6.txt: [('CON', 'FERENCE'), ('CAL', 'IFORNIA')] PUR19020814-V02-01-page14.txt: [('o', 'ro'), ('Tot', 'al')] PUR19020814-V02-01-page3.txt: [('CON', 'FERENCE')] PUR19020814-V02-01-page4.txt: [('CON', 'FERENCE')] PUR19020828-V02-02-page15.txt: [('MIN', 'ISTERS')] PUR19020828-V02-02-page3.txt: [('CON', 'FERENCE')] PUR19020828-V02-02-page5.txt: [('CON', 'FERENCE')] PUR19020828-V02-02-page8.txt: [('COM', 'PANY')] PUR19020911-V02-03-page5.txt: [('CONFER', 'ENCE')] PUR19020925-V02-04-page10.txt: [('an', 'ab')] PUR19020925-V02-04-page2.txt: [('to', 're')] PUR19020925-V02-04-page8.txt: [('work', 'ers')] PUR19021009-V02-05-page1.txt: [('a', 'verted')] PUR19021009-V02-05-page4.txt: [('CON', 'FERENCE'), ('dom', 'estic')] PUR19021009-V02-05-page5.txt: [('CONFER', 'ENCE')] PUR19021023-V02-06-page12.txt: [('rec', 'Ommendation'), ('mis', 'sionary')] PUR19021023-V02-06-page9.txt: [('and', 'es'), ('M', 'ISSIONARY')] PUR19021106-V02-07-page3.txt: [('o', 'ro'), ('Cali', 'stoga')] PUR19021120-V02-08-page11.txt: [('BEGIN', 'NING')] PUR19021120-V02-08-page13.txt: [('q', 'uestion')] PUR19021120-V02-08-page14.txt: [('dili', 'gence')] PUR19021120-V02-08-page6.txt: [('r', 'oo')] PUR19021218-V02-10-page13.txt: [('can', 'ers')] PUR19021218-V02-10-page15.txt: [('an', 'ther')] PUR19021218-V02-10-page3.txt: [('the', 'reof')] PUR19030101-V02-11-page8.txt: [('S', 'CH'), ('S', 'CHOOL')] PUR19030115-V02-12-page10.txt: [('E', 'nrol')] PUR19030115-V02-12-page12.txt: [('LIBRA', 'RIANS')] PUR19030129-V02-13-page11.txt: [('F', 'orestville')] PUR19030129-V02-13-page4.txt: [('com', 'mitted')] PUR19030129-V02-13-page9.txt: [('con', 'dition')] PUR19030212-V02-14-page10.txt: [('e', 'nd'), ('A', 'tt')] PUR19030226-V02-15-page13.txt: [('prof', 'essional')] PUR19030226-V02-15-page9.txt: [('A', 'tt')] PUR19030312-V02-16-page4.txt: [('th', 'ough')] PUR19030326-V02-17-page15.txt: [('be', 'lieve')] PUR19030423-V02-18-page11.txt: [('in', 'cept')] PUR19030423-V02-18-page14.txt: [('encour', 'agement')] PUR19030423-V02-18-page15.txt: [('Rob', 'bie')] PUR19030423-V02-18-page5.txt: [('P', 'ACIFIC')] PUR19030509-V02-19-page12.txt: [('He', 'IL')] PUR19030521-V02-20-page8.txt: [('reform', 'ation')] PUR19030604-V02-21-page10.txt: [('em', 'ployment')] PUR19030604-V02-21-page3.txt: [('Obje', 'ct')] PUR19030618-V02-22-page5.txt: [('IMPROVE', 'MENT')] PUR19030618-V02-22-page7.txt: [('com', 'mittee')] PUR19030702-V02-23-page10.txt: [('in', 'jects')] PUR19030702-V02-23-page11.txt: [('ad', 'vancement')] PUR19030702-V02-23-page12.txt: [('o', 'ut')] PUR19030702-V02-23-page15.txt: [('for', 'te')] PUR19030702-V02-23-page16.txt: [('privi', 'lege')] PUR19030813-V03-01-page5.txt: [('FUN', 'DS')] PUR19030827-V03-02-page3.txt: [('to', 're')] PUR19031008-V03-05-page7.txt: [('to', 'Co')] PUR19031022-V03-06-page7.txt: [('at', 'tention')] PUR19031105-V03-07-page12.txt: [('ADVENT', 'IST')] PUR19031105-V03-07-page16.txt: [('Sab', 'bath-school')] PUR19031119-V03-08-page10.txt: [('r', 'oo')] PUR19031119-V03-08-page2.txt: [('be', 'th'), ('centraliza', 'tion')] PUR19031119-V03-08-page6.txt: [('a', 'pr')] PUR19031119-V03-08-page7.txt: [('imme', 'diately')] PUR19031203-V03-09-page15.txt: [('col', 'ony')] PUR19031203-V03-09-page9.txt: [('T', 'otal')] PUR19031217-V03-10-page10.txt: [('con', 'dition')] PUR19031217-V03-10-page13.txt: [('hun', 'dreds')] PUR19040114-V03-12-page11.txt: [('MEDIC', 'AL')] PUR19040128-V03-13-page15.txt: [('hap', 'piness')] PUR19040211-V03-14-page3.txt: [('the', 'Mis')] PUR19040225-V03-15-page5.txt: [('com', 'fortable')] PUR19040225-V03-15-page8.txt: [('Advent', 'ist')] PUR19040225-V03-15-page9.txt: [('h', 'eavenly')] PUR19040324-V03-17-page15.txt: [('h', 'rs'), ('Jo', 'ts'), ('m', 'oo')] PUR19040407-V03-18-page2.txt: [('demon', 'strated')] PUR19040407-V03-18-page4.txt: [('in', 'sulted')] PUR19040407-V03-18-page5.txt: [('Saw', 'telle')] PUR19040407-V03-18-page7.txt: [('be', 'sor')] PUR19040407-V03-18-page9.txt: [('but', 'ters')] PUR19040421-V03-19-page1.txt: [('keep', 'ers')] PUR19040421-V03-19-page12.txt: [('nor', 'mal')] PUR19040421-V03-19-page4.txt: [('was', 'co')] PUR19040421-V03-19-page6.txt: [('r', 'oo')] PUR19040421-V03-19-page7.txt: [('wo', 'rketh')] PUR19040505-V03-20-page12.txt: [('o', 'rr'), ('s', 'ecretary')] PUR19040505-V03-20-page14.txt: [('r', 'oe')] PUR19040505-V03-20-page16.txt: [('Preside', 'nt')] PUR19040505-V03-20-page7.txt: [('bap', 'tism')] PUR19040519-V03-21-page15.txt: [('sal', 'vation')] PUR19040519-V03-21-page9.txt: [('to', 'co'), ('r', 'oo')] PUR19040602-V03-22-page4.txt: [('pe', 'ople')] PUR19040616-V03-24-page5.txt: [("'", 've')] PUR19040616-V03-24-page7.txt: [('W', 'hile')] PUR19040630-V03-26-page1.txt: [('fur', 'nishes')] PUR19040714-V03-28-page4.txt: [('pa', 'ssing')] PUR19040721-V03-29-page7.txt: [('the', 'ca')] PUR19040728-V03-30-page8.txt: [('And', 're')] PUR19040804-V04-01-page1.txt: [('be', 'lieved')] PUR19040825-V04-04-page1.txt: [('farm', 'ers')] PUR19040825-V04-04-page6.txt: [('a', 'ble')] PUR19040825-V04-04-page7.txt: [('Conferen', 'ce')] PUR19040901-V04-05-page8.txt: [('J', 'une')] PUR19040908-V04-06-page1.txt: [('to', 'tal')] PUR19040922-V04-08-page5.txt: [('and', 're')] PUR19040922-V04-08-page6.txt: [('le', 'gally')] PUR19041013-V04-11-page1.txt: [('to', 'te')] PUR19041020-V04-12-page1.txt: [('r', 'eturn'), ('ree', 'ds')] PUR19041020-V04-12-page4.txt: [('W', 'alla'), ('the', 'mis')] PUR19041027-V04-13-page1.txt: [('h', 'omes')] PUR19041027-V04-13-page8.txt: [('op', 'portunity')] PUR19041103-V04-14-page2.txt: [('Chris', 'tians')] PUR19041103-V04-14-page3.txt: [('SAN', 'ITARIUM')] PUR19041110-V04-15-page2.txt: [('a', 'ccounted')] PUR19041117-V04-16-page2.txt: [('develop', 'ment')] PUR19041117-V04-16-page3.txt: [('Post', 'um')] PUR19041117-V04-16-page6.txt: [('for', 'te')] PUR19041117-V04-16-page7.txt: [('pauper', 'izes'), ('a', 'po')] PUR19050105-V04-24-page7.txt: [('V', 'alue')] PUR19050112-V04-25-page4.txt: [('re', 'quired'), ('for', 'te')] PUR19050119-V04-26-page7.txt: [('Ingrati', 'tude')] PUR19050119-V04-26-page8.txt: [('de', 'veloped')] PUR19050209-V04-29-page5.txt: [('Chris', 'tian')] PUR19050316-V04-34-page4.txt: [('sub', 'ject')] PUR19050316-V04-34-page8.txt: [('manage', 'ment')] PUR19050330-V04-36-page3.txt: [('command', 'ment')] PUR19050330-V04-36-page7.txt: [('CHRIS', 'TIAN')] PUR19050406-V04-37-page4.txt: [('stockhold', 'ers')] PUR19050406-V04-37-page5.txt: [('Ty', 'ro')] PUR19050406-V04-37-page6.txt: [('V', 'alue')] PUR19050413-V04-38-page2.txt: [('O', 'ro')] PUR19050413-V04-38-page6.txt: [('exam', 'ined')] PUR19050427-V04-40-page7.txt: [('M', 'issions'), ('o', 'rd'), ('Z', 'ZZ'), ('Credent', 'ials')] PUR19050504-V04-41-page8.txt: [('to', 'co')] PUR19050511-V04-42-page4.txt: [('N', 'ewberg')] PUR19050511-V04-42-page7.txt: [('H', 'rs')] PUR19071031-V07-14-page3.txt: [('a', 'dd')] PUR19071107-V07-15-page3.txt: [('r', 'CD')] PUR19071114-V07-16-page6.txt: [('No', 'vember')] PUR19071128-V07-18-page1.txt: [('b', 'ody'), ('indu', 'stry')] PUR19071128-V07-18-page5.txt: [('s', 'trict')] PUR19071219-V07-21-page5.txt: [('a', 'rc')] PUR19080206-V07-27-page2.txt: [('enter', 'tainment')] PUR19080213-V07-28-page10.txt: [('we', 're')] PUR19080213-V07-28-page11.txt: [('or', 'ganized')] PUR19080213-V07-28-page3.txt: [('for', 'mative'), ('pa', 'trons')] PUR19080213-V07-28-page6.txt: [('teach', 'ers')] PUR19080213-V07-28-page7.txt: [('i', 'nstructors')] PUR19080213-V07-28-page8.txt: [('intro', 'ducing')] PUR19080213-V07-28-page9.txt: [('W', 'hereas')] PUR19080220-V07-29-page1.txt: [('b', 'rother')] PUR19080305-V07-31-page2.txt: [('Bap', 'tist')] PUR19080305-V07-31-page3.txt: [('Vol', 'Unteer'), ('U', 'NION')] PUR19080305-V07-31-page4.txt: [('to', 'GA')] PUR19080319-V07-33-page6.txt: [('a', 're')] PUR19080326-V07-34-page3.txt: [('a', 'TS')] PUR19080402-V07-35-page5.txt: [('im', 'portant')] PUR19080409-V07-36-page5.txt: [('f', 'ol')] PUR19080416-V07-37-page1.txt: [('fool', 'ish')] PUR19080416-V07-37-page4.txt: [('messa', 'ge')] PUR19080423-V07-38-page6.txt: [('So', 'ciety')] PUR19080507-V07-40-page2.txt: [('Tem', 'perance'), ('g', 'reatly')] PUR19080507-V07-40-page5.txt: [('men', 'tioned')] PUR19080507-V07-40-page6.txt: [('Con', 'ference'), ('Gene', 'ral')] PUR19080723-V07-51-page1.txt: [('Le', 'Fevre')] PUR19080730-V07-52-page1.txt: [('east', 'ern')] PUR19080806-V08-01-page6.txt: [('a', 'nd')] PUR19080806-V08-01-page7.txt: [('a', 'nnual')] PUR19080820-V08-03-page5.txt: [('it', 'al')] PUR19080910-V08-06-page1.txt: [('he', 'th')] PUR19080910-V08-06-page5.txt: [('W', 'ith')] PUR19080917-V08-07-page4.txt: [('o', 'ver')] PUR19081001-V08-09-page2.txt: [('accomplish', 'Ment')] PUR19081015-V08-11-page4.txt: [('con', 'cerning')] PUR19081015-V08-11-page6.txt: [('CON', 'FERENCE')] PUR19081022-V08-12-page2.txt: [('ha', 'th')] PUR19081022-V08-12-page3.txt: [('Spiritu', 'alism')] PUR19081112-V08-15-page2.txt: [('P', 'Al')] PUR19081112-V08-15-page4.txt: [('ab', 'ut')] PUR19081112-V08-15-page6.txt: [('Pa', 'cific')] PUR19081126-V08-17-page2.txt: [('A', 'dvance')] PUR19081203-V08-18-page3.txt: [('the', 'mis')] PUR19081217-V08-20-page3.txt: [('S', 'ou')] PUR19081224-V08-21-page2.txt: [('e', 'rt')] PUR19081224-V08-21-page3.txt: [('d', 'illy')] PUR19081224-V08-21-page4.txt: [('the', 're')] PUR19090107-V08-23-page3.txt: [('i', 'rade')] PUR19090114-V08-24-page2.txt: [('AMEND', 'MENT'), ('CHAM', 'BER')] PUR19090114-V08-24-page6.txt: [('f', 'ollowing'), ('In', 'stitute')] PUR19090121-V08-25-page1.txt: [('of', 'fice'), ('Y', 'ou')] PUR19090121-V08-25-page4.txt: [('sub', 'jects')] PUR19090128-V08-26-page3.txt: [('repub', 'lic')] PUR19090128-V08-26-page6.txt: [('p', 'ersons')] PUR19090204-V08-27-page3.txt: [('ener', 'gies')] PUR19090211-V08-28-page1.txt: [('we', 're'), ('in', 'terested')] PUR19090211-V08-28-page4.txt: [('dis', 'tant')] PUR19090211-V08-28-page5.txt: [('R', 'EC')] PUR19090218-V08-29-page9.txt: [('s', 'atisfactory')] PUR19090225-V08-30-page3.txt: [('a', 'rd'), ('me', 'eting')] PUR19090304-V08-31-page1.txt: [('in', 'augurated')] PUR19090304-V08-31-page3.txt: [('ex', 'perience')] PUR19090311-V08-32-page3.txt: [('the', 're')] PUR19090311-V08-32-page4.txt: [('del', 'egates'), ('Tay', 'lor')] PUR19090311-V08-32-page5.txt: [('p', "eople's")] PUR19090401-V08-35-page7.txt: [('Calif', 'ornia')] PUR19090513-V08-41-page6.txt: [('informa', 'tion')] PUR19090520-V08-42-page5.txt: [('re', 'ception'), ('the', 're')] PUR19090527-V08-43-page4.txt: [('an', 'nual'), ('Vol', 'unteer'), ('earn', 'estness')] PUR19090610-V08-45-page1.txt: [('can', 'vassers')] PUR19090610-V08-45-page5.txt: [('good', 'bys')] PUR19090617-V08-46-page1.txt: [('di', 'videth')] PUR19090624-V08-47-page6.txt: [('Fr', 'ancisco')] PUR19090701-V08-48-page5.txt: [('the', 'ta')] PUR19090708-V08-49-page3.txt: [('HE', 're')] PUR19090708-V08-49-page6.txt: [('A', 'rizona')] PUR19090729-V08-52-page5.txt: [('Cali', 'fornia')] PUR19090805-V09-01-page1.txt: [('instruc', 'tion')] PUR19090826-V09-04-page3.txt: [('ef', 'ficient')] PUR19090826-V09-04-page5.txt: [('proc', 'lamation')] PUR19090826-V09-04-page7.txt: [('w', 'ell-ventilated')] PUR19090902-V09-05-page6.txt: [('P', 'ACIFIC')] PUR19090909-V09-06-page5.txt: [('We', 're')] PUR19091007-V09-10-page6.txt: [('in', 'surance')] PUR19091014-V09-11-page5.txt: [('are', 'al')] PUR19091028-V09-13-page3.txt: [('To', 'ni')] PUR19091104-V09-14-page3.txt: [('the', 'Mis')] PUR19091125-V09-17-page1.txt: [('is', 'th')] PUR19091230-V09-22-page2.txt: [('by', 'Ng')] PUR19100113-V09-24-page4.txt: [('as', 'sistance')] PUR19100120-V09-25-page3.txt: [('im', 'provement')] PUR19100203-V09-27-page1.txt: [('h', 'ome')] PUR19100203-V09-27-page14.txt: [('in', 'dicating')] PUR19100203-V09-27-page2.txt: [('w', 'oo')] PUR19100203-V09-27-page6.txt: [('An', 'eles')] PUR19100203-V09-27-page7.txt: [('De', 'Cember')] PUR19100210-V09-28-page12.txt: [('en', 'tered')] PUR19100217-V09-29-page10.txt: [('Com', 'mittee')] PUR19100217-V09-29-page2.txt: [('make', 'th')] PUR19100217-V09-29-page3.txt: [('the', 're')] PUR19100217-V09-29-page4.txt: [('est', 'ablish')] PUR19100224-V09-30-page1.txt: [('mein', 'ers')] PUR19100224-V09-30-page15.txt: [('fur', 'ther')] PUR19100224-V09-30-page3.txt: [('lead', 'ers')] PUR19100224-V09-30-page4.txt: [('re', 'NI'), ('rec', 'ognized')] PUR19100224-V09-30-page5.txt: [('lib', 'eral')] PUR19100224-V09-30-page9.txt: [('the', 're')] PUR19100324-V09-34-page1.txt: [('Be', 'nevolent')] PUR19100407-V09-36-page5.txt: [('R', 'id')] PUR19100407-V09-36-page7.txt: [('inti', 'mately')] PUR19100428-V09-39-page7.txt: [('harm', 'ony'), ('lea', 'se')] PUR19100505-V09-40-page4.txt: [('o', 'ff'), ('mission', 'ary')] PUR19100519-V09-42-page15.txt: [('W', 'hy')] PUR19100526-V09-43-page2.txt: [('Gen', 'evieve')] PUR19100609-V09-45-page4.txt: [('t', 'ic')] PUR19100616-V09-46-page1.txt: [('Method', 'ist')] PUR19100623-V09-47-page2.txt: [('Scyth', 'ians')] PUR19100707-V09-49-page3.txt: [('Ad', 'ventists')] PUR19100721-V09-51-page6.txt: [('pe', 'ople')] PUR19100721-V09-51-page8.txt: [('accom', 'panied')] PUR19100818-V10-03-page3.txt: [('be', 'lieve')] PUR19100818-V10-03-page8.txt: [('a', 'fr')] PUR19100901-V10-05-page4.txt: [('re', 'spond')] PUR19100901-V10-05-page6.txt: [('s', 'chool')] PUR19100915-V10-07-page7.txt: [('experi', 'ence')] PUR19100915-V10-07-page8.txt: [('A', 'ssociation')] PUR19100922-V10-08-page8.txt: [('con', 'sisting'), ('num', 'bers'), ('supple', 'mented')] PUR19100929-V10-09-page11.txt: [('fur', 'nish')] PUR19100929-V10-09-page12.txt: [('Confer', 'ence')] PUR19101013-V10-11-page3.txt: [('Kelse', 'yville')] PUR19101020-V10-12-page7.txt: [('culti', 'vate')] PUR19101027-V10-13-page13.txt: [('t', 'IL')] PUR19101027-V10-13-page2.txt: [('or', 'dained')] PUR19101027-V10-13-page9.txt: [('sub', 'ject')] PUR19101103-V10-14-page5.txt: [('W', 'ork')] PUR19101103-V10-14-page6.txt: [('FALL', 'Al')] PUR19101110-V10-15-page5.txt: [('REV', 'Olt')] PUR19101117-V10-16-page4.txt: [('in', 'teresting'), ('peo', 'ple')] PUR19101117-V10-16-page5.txt: [('to', 're'), ('a', 'ld')] PUR19101117-V10-16-page6.txt: [('suf', 'ficient')] PUR19101117-V10-16-page7.txt: [('corr', 'ective')] PUR19101117-V10-16-page8.txt: [('for', 'th')] PUR19101124-V10-17-page2.txt: [('c', 'reated')] PUR19101124-V10-17-page3.txt: [('the', 'RE')] PUR19101124-V10-17-page4.txt: [('per', 'taining'), ('Educ', 'tion')] PUR19101124-V10-17-page8.txt: [('Hos', 'pital')] PUR19101201-V10-18-page1.txt: [('num', 'ber')] PUR19101201-V10-18-page2.txt: [('en', 'gaged')] PUR19101201-V10-18-page3.txt: [('a', 'nd'), ('mat', 'erially')] PUR19101201-V10-18-page4.txt: [('accom', 'plish')] PUR19101208-V10-19-page4.txt: [('min', 'isterial')] PUR19110105-V10-23-page4.txt: [('stud', 'ent')] PUR19110112-V10-24-page5.txt: [('in', 'teresting'), ('peo', 'ple')] PUR19110112-V10-24-page8.txt: [('A', 'dventists')] PUR19110119-V10-25-page1.txt: [('A', 'ct'), ('ex', 'pedient')] PUR19110119-V10-25-page3.txt: [('con', 'dition')] PUR19110126-V10-26-page6.txt: [('to', 'ga')] PUR19110202-V10-27-page1.txt: [('in', 'Stitution'), ('gi', 'ving')] PUR19110202-V10-27-page5.txt: [('And', 're'), ('organ', 'ized')] PUR19110209-V10-28-page2.txt: [('Gray', 'sville')] PUR19110209-V10-28-page5.txt: [('utter', 'ances')] PUR19110223-V10-30-page1.txt: [('r', 'id')] PUR19110302-V10-31-page1.txt: [('or', 'ganized')] PUR19110302-V10-31-page2.txt: [('CALIF', 'ORNIA')] PUR19110302-V10-31-page7.txt: [('min', 'ters')] PUR19110309-V10-32-page1.txt: [('at', 'li')] PUR19110309-V10-32-page14.txt: [('Can', "'t")] PUR19110309-V10-32-page4.txt: [('g', 'reater')] PUR19110316-V10-33-page5.txt: [('Sa', 'nta')] PUR19110323-V10-34-page3.txt: [('Pat', 'terson')] PUR19110406-V10-36-page5.txt: [('di', 'ploma')] PUR19110406-V10-36-page8.txt: [('f', 'orty')] PUR19110413-V10-37-page7.txt: [('ob', 'ject')] PUR19110420-V10-38-page4.txt: [('encoura', 'ging')] PUR19110420-V10-38-page5.txt: [('in', 'dustrial')] PUR19110427-V10-39-page1.txt: [('p', 'op')] PUR19110504-V10-40-page1.txt: [('Depart', 'ment')] PUR19110504-V10-40-page5.txt: [('intro', 'duced')] PUR19110504-V10-40-page6.txt: [('faith', 'ful')] PUR19110511-V10-41-page1.txt: [('can', 'vassing')] PUR19110518-V10-42-page5.txt: [('Cali', 'fornia')] PUR19110601-V10-44-page1.txt: [('Chang', 'Sha')] PUR19110601-V10-44-page2.txt: [('Chang', 'Sha')] PUR19110608-V10-45-page4.txt: [('depart', 'ment')] PUR19110615-V10-46-page6.txt: [('in', 'terest'), ('dis', 'trict')] PUR19110615-V10-46-page7.txt: [('U', 'kiah'), ('U', 'nion')] PUR19110622-V10-47-page8.txt: [('a', 'nd')] PUR19110629-V10-48-page3.txt: [('or', 'ganized')] PUR19110706-V10-49-page5.txt: [('n', 'ight'), ('Confer', 'ence')] PUR19110706-V10-49-page7.txt: [('a', 'nd')] PUR19110713-V10-50-page2.txt: [('pres', 'entation')] PUR19110803-V11-01-page3.txt: [('Pres', 'ent'), ('Hum', 'boldt'), ('inter', 'ested')] PUR19110810-V11-02-page7.txt: [('be', 'na'), ('Mac', 'Pherson')] PUR19110824-V11-04-page4.txt: [('conf', 'erence')] PUR19110824-V11-04-page6.txt: [('ac', 'tion')] PUR19110831-V11-05-page3.txt: [('as', 'pects')] PUR19110928-V11-09-page5.txt: [('Le', 'Gacy')] PUR19111019-V11-12-page2.txt: [('purpos', 'es')] PUR19111116-V11-16-page1.txt: [('teach', 'ers')] PUR19111116-V11-16-page3.txt: [('of', 'fering')] PUR19111130-V11-18-page1.txt: [('f', 'avor')] PUR19111221-V11-21-page3.txt: [('confer', 'ence')] PUR19111228-V11-22-page6.txt: [('en', 'deavor')] PUR19120111-V11-24-page1.txt: [('con', 'fidence')] PUR19120111-V11-24-page5.txt: [('s', 'incere')] PUR19120111-V11-24-page8.txt: [('to', 'ft')] PUR19120125-V11-26-page8.txt: [('the', 'RE')] PUR19120201-V11-27-page1.txt: [('ha', 'th')] PUR19120201-V11-27-page2.txt: [('insti', 'tution')] PUR19120201-V11-27-page7.txt: [('better', 'ment')] PUR19120201-V11-27-page9.txt: [('r', 'es'), ('an', 'Al')] PUR19120215-V11-29-page7.txt: [('CON', 'FERENCE')] PUR19120229-V11-31-page2.txt: [('Chang', 'Sha')] PUR19120229-V11-31-page3.txt: [('Chang', 'Sha'), ('to', 'Ying')] PUR19120321-V11-34-page12.txt: [('m', 'ay')] PUR19120321-V11-34-page15.txt: [('de', 'partment'), ('with', 'al')] PUR19120321-V11-34-page3.txt: [('in', 'nis')] PUR19120328-V11-35-page5.txt: [('is', 'sus'), ('t', 'ake'), ('n', 'ature'), ('He', 'ist')] PUR19120328-V11-35-page6.txt: [('be', 'ng')] PUR19120411-V11-37-page3.txt: [('Calif', 'ornia')] PUR19120418-V11-38-page6.txt: [('the', 're')] PUR19120425-V11-39-page7.txt: [('to', 'ft')] PUR19120502-V11-40-page5.txt: [('f', 'ollowing')] PUR19120509-V11-41-page7.txt: [('s', 'erved')] PUR19120606-V11-45-page8.txt: [('N', 'ut')] PUR19120613-V11-46-page5.txt: [('Ad', 'ventists')] PUR19120620-V11-47-page6.txt: [('Mac', 'Pherson')] PUR19120627-V11-48-page3.txt: [('R', 'ECORDER')] PUR19120704-V11-49-page7.txt: [('CALI', 'FORNIA')] PUR19120718-V11-51-page5.txt: [('ref', 'orm')] PUR19120801-V12-01-page6.txt: [('F', 'irst')] PUR19120815-V12-03-page8.txt: [('Evan', 'gelists')] PUR19120822-V12-04-page5.txt: [('Calif', 'ornia')] PUR19120905-V12-06-page6.txt: [('Can', 'ts')] PUR19120912-V12-07-page7.txt: [('ti', 'ne')] PUR19120919-V12-08-page2.txt: [('the', 'RE')] PUR19120926-V12-09-page6.txt: [('pro', 'phetic')] PUR19121003-V12-10-page1.txt: [('e', 'nd')] PUR19121003-V12-10-page4.txt: [('hun', 'dred')] PUR19121017-V12-12-page6.txt: [('bun', 'galow')] PUR19121031-V12-14-page3.txt: [('r', 'OW')] PUR19121031-V12-14-page5.txt: [('or', 'th'), ('t', 'AP')] PUR19121114-V12-16-page7.txt: [('Por', 'terville')] PUR19121128-V12-18-page6.txt: [('the', 'mis')] PUR19121205-V12-19-page1.txt: [('exercise', 'th')] PUR19121219-V12-21-page8.txt: [('the', 're')] PUR19121226-V12-22-page5.txt: [('move', 'ment')] PUR19130109-V12-24-page1.txt: [('en', 'gaged')] PUR19130109-V12-24-page5.txt: [('Til', 'es')] PUR19130116-V12-25-page1.txt: [('J', 'ews')] PUR19130116-V12-25-page3.txt: [('a', 'lcoholic')] PUR19130123-V12-26-page4.txt: [('RE', 'CD')] PUR19130130-V12-27-page12.txt: [('Mis', 'souri')] PUR19130130-V12-27-page5.txt: [('conven', 'tion')] PUR19130130-V12-27-page9.txt: [('ter', 'ritory')] PUR19130213-V12-29-page1.txt: [('J', 'ewish')] PUR19130306-V12-32-page13.txt: [('CONFER', 'ENCE')] PUR19130306-V12-32-page5.txt: [('be', 'rt')] PUR19130306-V12-32-page9.txt: [('CONFER', 'ENCE')] PUR19130320-V12-34-page1.txt: [('a', 'ngel')] PUR19130320-V12-34-page3.txt: [('maj', 'ority')] PUR19130320-V12-34-page5.txt: [('or', 'ganized')] PUR19130320-V12-34-page9.txt: [('re', 'ceive')] PUR19130403-V12-36-page4.txt: [('Mac', 'Pherson')] PUR19130417-V12-38-page7.txt: [('f', 'orward')] PUR19130424-V12-39-page6.txt: [('J', 'ohn')] PUR19130515-V12-42-page1.txt: [('Lo', 'tt'), ('AL', 'Ly'), ('C', 'LAN')] PUR19130515-V12-42-page2.txt: [('A', 'VA')] PUR19130522-V12-43-page3.txt: [('R', 'EC')] PUR19130529-V12-44-page4.txt: [('T', 'URLOCK')] PUR19130529-V12-44-page6.txt: [('o', 'PP')] PUR19130605-V12-45-page5.txt: [('contin', 'ued')] PUR19130612-V12-46-page1.txt: [('med', 'itating')] PUR19130612-V12-46-page4.txt: [('T', 'URLOCK')] PUR19130612-V12-46-page5.txt: [('Col', 'lege')] PUR19130612-V12-46-page7.txt: [('Calif', 'ornia')] PUR19130619-V12-47-page2.txt: [('COL', 'LEGE')] PUR19130626-V12-48-page5.txt: [('A', 'dventists')] PUR19130703-V12-49-page8.txt: [('ta', 'ke')] PUR19130717-V12-51-page6.txt: [('en', 'dorsement')] PUR19130731-V12-53-page4.txt: [('c', 'oo')] PUR19130731-V12-53-page5.txt: [('gen', 'erous')] PUR19130821-V13-03-page2.txt: [('the', 'se')] PUR19130821-V13-03-page3.txt: [('U', 'NTO')] PUR19130821-V13-03-page9.txt: [('w', 'ith')] PUR19130918-V13-07-page6.txt: [('a', 'CC')] PUR19130925-V13-08-page2.txt: [('Cha', 'rles')] PUR19131002-V13-09-page4.txt: [('E', 'ra')] PUR19131016-V13-11-page3.txt: [('the', 'RE')] PUR19131113-V13-15-page1.txt: [('W', 'ork')] PUR19131211-V13-19-page3.txt: [('require', 'ments')] PUR19140101-V13-22-page3.txt: [('faith', 'ful')] PUR19140108-V13-23-page5.txt: [('mem', 'bers')] PUR19140129-V13-26-page3.txt: [('the', 'se')] PUR19140129-V13-26-page7.txt: [('Kan', 'su')] PUR19140212-V13-28-page3.txt: [('whole', 'heartedness')] PUR19140226-V13-30-page3.txt: [('Cali', 'fornia')] PUR19140305-V13-31-page1.txt: [('en', 'couragement'), ('ac', 'tivity')] PUR19140319-V13-33-page2.txt: [('Lo', 'rd')] PUR19140326-V13-34-page19.txt: [('num', 'ber'), ('pa', 'pers')] PUR19140326-V13-34-page2.txt: [('since', 're')] PUR19140326-V13-34-page24.txt: [('Obj', 'ect')] PUR19140326-V13-34-page3.txt: [('com', 'plete')] PUR19140326-V13-34-page7.txt: [('sis', 'ters')] PUR19140326-V13-34-page9.txt: [('pe', 'riod')] PUR19140402-V13-35-page1.txt: [('ex', 'penses'), ('MISSION', 'ARY')] PUR19140423-V13-38-page6.txt: [('Calif', 'ornia')] PUR19140430-V13-39-page2.txt: [('a', 're')] PUR19140507-V13-40-page1.txt: [('beauti', 'ful')] PUR19140507-V13-40-page7.txt: [('H', 'eavenly')] PUR19140514-V13-41-page1.txt: [('Cen', 'tral')] PUR19140625-V13-47-page6.txt: [('P', 'ACIFIC')] PUR19140723-V13-51-page7.txt: [('C', 'TN')] PUR19140730-V13-52-page1.txt: [('Mac', 'Pherson')] PUR19140730-V13-52-page5.txt: [('Cali', 'stoga')] PUR19140813-V14-02-page5.txt: [('Mac', 'Guire')] PUR19140903-V14-05-page7.txt: [('f', 'amous')] PUR19140910-V14-06-page10.txt: [('gar', 'ments')] PUR19140910-V14-06-page11.txt: [('lit', 'eral')] PUR19140910-V14-06-page2.txt: [('Mac', 'Guire')] PUR19140917-V14-07-page6.txt: [('B', 'rethren'), ('audi', 'ence')] PUR19141015-V14-11-page2.txt: [('rig', 'ht')] PUR19141015-V14-11-page8.txt: [('transport', 'ation')] PUR19141112-V14-15-page6.txt: [('Mac', 'Pherson')] PUR19141119-V14-16-page6.txt: [('Mac', 'Pherson')] PUR19141126-V14-17-page5.txt: [('g', 'iven'), ('we', 'ek')] PUR19141217-V14-20-page3.txt: [('men', 'pleasers')] PUR19150107-V14-23-page1.txt: [('he', 'Al')] PUR19150121-V14-25-page2.txt: [('I', 'nvestigate'), ('B', 'elieve'), ('B', 'uy'), ('E', 'xemplify'), ('L', 'ove')] PUR19150121-V14-25-page5.txt: [('a', 'nd')] PUR19150311-V14-32-page13.txt: [('LA', 'SSEN')] PUR19150311-V14-32-page18.txt: [('CONFER', 'ENCE')] PUR19150311-V14-32-page2.txt: [('h', 'ern')] PUR19150311-V14-32-page4.txt: [('dis', 'tributed')] PUR19150311-V14-32-page8.txt: [('CON', 'FERENCE')] PUR19150325-V14-33-page8.txt: [('ex', 'hibiting')] PUR19150401-V14-34-page7.txt: [('But', 'ts')] PUR19150422-V14-37-page3.txt: [('Volun', 'teer'), ('secre', 'tary')] PUR19150429-V14-38-page3.txt: [('Mac', 'Guire')] PUR19150506-V14-39-page1.txt: [('alpha', 'betically')] PUR19150520-V14-41-page3.txt: [('r', 'ested')] PUR19150520-V14-41-page7.txt: [('topi', 'cally')] PUR19150527-V14-42-page5.txt: [('evan', 'gelist')] PUR19150603-V14-43-page8.txt: [('Mac', 'Guire')] PUR19150610-V14-44-page1.txt: [('abo', 'rt')] PUR19150610-V14-44-page4.txt: [('CON', 'TINUED')] PUR19150624-V14-46-page1.txt: [('DI', 'RE')] PUR19150624-V14-46-page5.txt: [('so', 'ciety')] PUR19150701-V14-47-page7.txt: [('Ad', 'ventist'), ('P', 'ACIFIC')] PUR19150715-V14-49-page1.txt: [('Su', 'perintendents')] PUR19150722-V14-50-page4.txt: [('Saw', 'telle')] PUR19150805-V14-52-page1.txt: [('DIRE', 'CTORY')] PUR19150805-V14-52-page7.txt: [('E', 'urope'), ('judg', 'ment')] PUR19150812-V15-01-page1.txt: [('DIRE', 'CTORY')] PUR19150812-V15-01-page3.txt: [('W', 'allace')] PUR19150819-V15-02-page1.txt: [('by', 're')] PUR19150819-V15-02-page3.txt: [('SOUTHEAST', 'ERN')] PUR19150819-V15-02-page6.txt: [('RECO', 'RDER')] PUR19150826-V15-03-page2.txt: [('Han', 'kow')] PUR19150826-V15-03-page5.txt: [('pro', 'gress')] PUR19150902-V15-04-page3.txt: [('percenta', 'ge')] PUR19150902-V15-04-page7.txt: [('meth', 'ods')] PUR19150916-V15-06-page8.txt: [('DE', 'PARTMENT')] PUR19150923-V15-07-page5.txt: [('ap', 'preciation')] PUR19151014-V15-10-page3.txt: [('for', 'th'), ('U', 'NION')] PUR19151014-V15-10-page7.txt: [('R', 'EC')] PUR19151021-V15-11-page3.txt: [('ti', 'ts')] PUR19151021-V15-11-page4.txt: [('P', 'ACIFIC')] PUR19151125-V15-16-page7.txt: [('Ja', 'rs')] PUR19151125-V15-16-page8.txt: [('o', 'ffice'), ('o', 'rders')] PUR19151202-V15-17-page11.txt: [('inter', 'ested')] PUR19151202-V15-17-page7.txt: [('we', 'ek')] PUR19151209-V15-18-page11.txt: [("'", 'RE')] PUR19151209-V15-18-page6.txt: [('b', 'een')] PUR19160120-V15-24-page4.txt: [('M', 'id')] PUR19160203-V15-26-page1.txt: [('Mac', 'Pherson'), ('DIRE', 'CTORY')] PUR19160217-V15-28-page6.txt: [('Ad', 'Ventists')] PUR19160302-V15-30-page3.txt: [('so', 'BA')] PUR19160302-V15-30-page8.txt: [('f', 'ollowing')] PUR19160316-V15-32-page3.txt: [('R', 'ECORD')] PUR19160316-V15-32-page6.txt: [('N', 'apa')] PUR19160330-V15-34-page1.txt: [('depart', 'ment')] PUR19160330-V15-34-page5.txt: [('for', 'th')] PUR19160406-V15-35-page1.txt: [('f', 'ou')] PUR19160413-V15-36-page3.txt: [('de', 'termined')] PUR19160413-V15-36-page8.txt: [('con', 'verted')] PUR19160504-V15-39-page7.txt: [('Van', 'couver')] PUR19160518-V15-41-page2.txt: [('so', 'cieties')] PUR19160518-V15-41-page3.txt: [('enti', 'tled')] PUR19160525-V15-42-page3.txt: [('to', 'es')] PUR19160525-V15-42-page4.txt: [('R', "ec'd")] PUR19160601-V15-43-page1.txt: [('la', 'ce'), ('in', 'domitable')] PUR19160601-V15-43-page15.txt: [('de', 'serted')] PUR19160601-V15-43-page5.txt: [('Der', 'rY')] PUR19160608-V15-44-page1.txt: [('hos', 'pital')] PUR19160615-V15-45-page4.txt: [('be', 'lieve')] PUR19160615-V15-45-page7.txt: [('strength', 'ened')] PUR19160706-V15-48-page8.txt: [('mission', 'ary')] PUR19160713-V15-49-page1.txt: [('Mac', 'Pherson')] PUR19160713-V15-49-page4.txt: [('Gu', 'inda')] PUR19160713-V15-49-page7.txt: [('con', 'stantly')] PUR19160720-V15-50-page6.txt: [('the', 're')] PUR19160803-V15-52-page1.txt: [('Embarrass', 'ment')] PUR19160810-V16-01-page7.txt: [('Cali', 'fornia')] PUR19160817-V16-02-page3.txt: [('a', 'ries')] PUR19160817-V16-02-page7.txt: [('Pres', 'ent')] PUR19160824-V16-03-page6.txt: [('Beard', 'slee')] PUR19160907-V16-05-page7.txt: [('Employ', 'ment')] PUR19160928-V16-08-page1.txt: [('for', 'eign')] PUR19160928-V16-08-page2.txt: [('Cali', 'fornia')] PUR19161005-V16-09-page6.txt: [('right', 'ful')] PUR19161012-V16-10-page3.txt: [('be', 'ta')] PUR19161012-V16-10-page6.txt: [('In', 'dians')] PUR19161102-V16-13-page3.txt: [('or', 'ganization'), ('in', 'quired')] PUR19161109-V16-14-page2.txt: [('a', 'reas')] PUR19161109-V16-14-page7.txt: [('PAC', 'IFIC')] PUR19161123-V16-16-page3.txt: [('for', 'th'), ('confer', 'ence')] PUR19161123-V16-16-page5.txt: [('be', 'ment')] PUR19161123-V16-16-page6.txt: [('to', 'wel')] PUR19161130-V16-17-page1.txt: [('in', 'structed')] PUR19161130-V16-17-page2.txt: [('cir', 'culate')] PUR19161130-V16-17-page3.txt: [('and', 're')] PUR19161130-V16-17-page4.txt: [('time', 'ly')] PUR19161207-V16-18-page4.txt: [('of', 'fice'), ('Cook', 'ers')] PUR19161207-V16-18-page6.txt: [('the', 'mis')] PUR19161207-V16-18-page7.txt: [('of', 'fered')] PUR19161214-V16-19-page1.txt: [('Hos', 'pital')] PUR19161214-V16-19-page5.txt: [('T', 'otal')] PUR19161214-V16-19-page7.txt: [('f', 'orget')] PUR19161221-V16-20-page1.txt: [('Jam', 'es')] PUR19161221-V16-20-page6.txt: [('the', 'Re')] PUR19161228-V16-21-page7.txt: [('Miss', 'Es')] PUR19170104-V16-22-page2.txt: [('a', 're')] PUR19170104-V16-22-page5.txt: [('super', 'latively')] PUR19170111-V16-23-page4.txt: [('be', 'ment')] PUR19170111-V16-23-page6.txt: [('in', 'ference')] PUR19170118-V16-24-page3.txt: [('to', 're')] PUR19170118-V16-24-page6.txt: [('Mac', 'Pherson')] PUR19170125-V16-25-page1.txt: [('in', 'sertion')] PUR19170201-V16-26-page2.txt: [('answer', 'ers')] PUR19170201-V16-26-page5.txt: [('the', 'mis')] PUR19170208-V16-27-page3.txt: [('an', 'ele'), ('U', 'NI')] PUR19170222-V16-29-page5.txt: [('RECO', 'RDER')] PUR19170222-V16-29-page6.txt: [('a', 're')] PUR19170301-V16-30-page1.txt: [('the', 'es')] PUR19170301-V16-30-page5.txt: [('W', 'ednesday')] PUR19170308-V16-31-page12.txt: [('to', 're')] PUR19170308-V16-31-page13.txt: [('a', 're')] PUR19170308-V16-31-page14.txt: [('t', 'hese')] PUR19170308-V16-31-page20.txt: [('Cali', 'fornia'), ('in', 'terested')] PUR19170308-V16-31-page7.txt: [('C', 'omParatiVe')] PUR19170315-V16-32-page5.txt: [('The', 're')] PUR19170322-V16-33-page3.txt: [('Elder', 'Ly'), ('H', 'ammurabi')] PUR19170322-V16-33-page6.txt: [('the', 'reto')] PUR19170322-V16-33-page7.txt: [('the', 're')] PUR19170329-V16-34-page3.txt: [('for', 'th')] PUR19170329-V16-34-page5.txt: [('to', 'urer')] PUR19170405-V16-35-page2.txt: [('The', 're')] PUR19170405-V16-35-page7.txt: [('ac', 'cepted')] PUR19170412-V16-36-page4.txt: [('to', 're'), ('to', 'Ca')] PUR19170412-V16-36-page7.txt: [('re', 'latives'), ('the', 'Re')] PUR19170419-V16-37-page3.txt: [('He', 're')] PUR19170419-V16-37-page6.txt: [('the', 'mis')] PUR19170426-V16-38-page7.txt: [('South', 'ern')] PUR19170503-V16-39-page8.txt: [('the', 'Mis'), ('on', 'es')] PUR19170510-V16-40-page1.txt: [('part', 'ly'), ('o', 'ff')] PUR19170510-V16-40-page7.txt: [('N', 'evada')] PUR19170517-V16-41-page3.txt: [('A', 'ment')] PUR19170517-V16-41-page6.txt: [('Volun', 'teer'), ('enjoya', 'ble')] PUR19170524-V16-42-page3.txt: [('ju', 'ne'), ('Eve', 'ry')] PUR19170531-V16-43-page4.txt: [('mem', 'bers')] PUR19170607-V16-44-page20.txt: [('for', 'th'), ('Ac', 'ademic')] PUR19170621-V16-46-page6.txt: [('F', 'th')] PUR19170621-V16-46-page8.txt: [('as', 'sented')] PUR19170628-V16-47-page1.txt: [('light', 'ly')] PUR19170628-V16-47-page3.txt: [('The', 're')] PUR19170628-V16-47-page5.txt: [('a', 'cer')] PUR19170628-V16-47-page7.txt: [('the', 'Re')] PUR19170712-V16-49-page4.txt: [('The', 're')] PUR19170712-V16-49-page6.txt: [('Be', 'ardslee')] PUR19170712-V16-49-page8.txt: [('Eva', 'ngelists')] PUR19170719-V16-50-page2.txt: [('lo', 'ok')] PUR19170719-V16-50-page6.txt: [('Be', 'ardslee')] PUR19170719-V16-50-page8.txt: [('and', 'es')] PUR19170726-V16-51-page7.txt: [('and', 'rE')] PUR19170802-V16-52-page3.txt: [('Die', 'ffenbacher')] PUR19170809-V17-01-page5.txt: [('the', 'reto')] PUR19170809-V17-01-page8.txt: [('a', 'mis')] PUR19170816-V17-02-page2.txt: [('a', 're')] PUR19170816-V17-02-page6.txt: [('so', 'fa')] PUR19170823-V17-03-page6.txt: [('A', 'lfalfa')] PUR19170823-V17-03-page7.txt: [('She', 'ber'), ('in', 'ters')] PUR19170830-V17-04-page7.txt: [('he', 're')] PUR19170830-V17-04-page8.txt: [('CONFER', 'ENCE')] PUR19170906-V17-05-page2.txt: [('on', 'tarian')] PUR19170906-V17-05-page5.txt: [('a', 'ld')] PUR19170906-V17-05-page8.txt: [('Freder', 'ick')] PUR19170913-V17-06-page3.txt: [('w', 'ith')] PUR19170913-V17-06-page4.txt: [('be', 'th')] PUR19170913-V17-06-page8.txt: [('CONFER', 'ENCE'), ('a', 'nu')] PUR19170920-V17-07-page6.txt: [('ben', 'efit')] PUR19170927-V17-08-page8.txt: [('CONFER', 'ENCE')] PUR19171004-V17-09-page4.txt: [('a', 're')] PUR19171004-V17-09-page6.txt: [('mem', 'bers')] PUR19171004-V17-09-page7.txt: [('do', 're')] PUR19171004-V17-09-page8.txt: [('Mac', 'Guire'), ('CONFER', 'ENCE')] PUR19171011-V17-10-page6.txt: [('work', 'ers')] PUR19171018-V17-11-page1.txt: [('w', 'ould')] PUR19171025-V17-12-page3.txt: [('night', 'ly')] PUR19171025-V17-12-page5.txt: [('min', 'ister')] PUR19171101-V17-13-page5.txt: [('peri', 'od')] PUR19171101-V17-13-page6.txt: [('fun', 'eral'), ('we', 're')] PUR19171108-V17-14-page6.txt: [('she', 'al')] PUR19171115-V17-15-page2.txt: [('DE', 'CEMBER')] PUR19171122-V17-16-page1.txt: [('the', 'reat')] PUR19171129-V17-17-page6.txt: [('the', 're')] PUR19171206-V17-18-page2.txt: [('do', 'ers')] PUR19171206-V17-18-page5.txt: [('and', 're')] PUR19180103-V17-22-page5.txt: [('PA', 'CIFIC')] PUR19180110-V17-23-page2.txt: [('the', 're')] PUR19180110-V17-23-page4.txt: [('am', 'ery'), ('the', 'ca')] PUR19180110-V17-23-page7.txt: [('rem', 'nant')] PUR19180117-V17-24-page2.txt: [('to', 're')] PUR19180117-V17-24-page3.txt: [('Confer', 'ence')] PUR19180131-V17-26-page8.txt: [('the', 're')] PUR19180207-V17-27-page7.txt: [('a', 'ment')] PUR19180214-V17-28-page2.txt: [('We', 'al')] PUR19180221-V17-29-page15.txt: [('the', 're')] PUR19180221-V17-29-page7.txt: [('of', 'fice'), ('the', 'es')] PUR19180307-V17-31-page1.txt: [('and', 'es')] PUR19180307-V17-31-page5.txt: [('confer', 'ences'), ('Bra', 'wley')] PUR19180307-V17-31-page7.txt: [('not', 'ating')] PUR19180314-V17-32-page1.txt: [('e', 'SP')] PUR19180314-V17-32-page3.txt: [('Pet', 'rolia')] PUR19180314-V17-32-page4.txt: [('the', 'mis')] PUR19180321-V17-33-page2.txt: [('the', 're')] PUR19180328-V17-34-page8.txt: [('are', 'al')] PUR19180404-V17-35-page6.txt: [('with', 'Al')] PUR19180418-V17-37-page7.txt: [('th', 'ey')] PUR19180425-V17-38-page2.txt: [('in', 'duced')] PUR19180425-V17-38-page5.txt: [('R', 'ECORDER')] PUR19180502-V17-39-page5.txt: [('R', 'ECORDER')] PUR19180509-V17-40-page2.txt: [('to', 'wel')] PUR19180509-V17-40-page3.txt: [('be', 'th')] PUR19180509-V17-40-page5.txt: [('R', 'ECORDER')] PUR19180516-V17-41-page4.txt: [('R', 'RD')] PUR19180516-V17-41-page5.txt: [('jour', "ney's")] PUR19180523-V17-42-page5.txt: [('R', 'ECORDER')] PUR19180523-V17-42-page8.txt: [('HEALDSB', 'URG')] PUR19180530-V17-43-page1.txt: [('the', 're')] PUR19180530-V17-43-page2.txt: [('be', 'ment')] PUR19180530-V17-43-page5.txt: [('in', 'scription')] PUR19180613-V17-45-page1.txt: [('Ma', 'rtin'), ('May', 'ence')] PUR19180613-V17-45-page6.txt: [('PERSE', 'VERE')] PUR19180620-V17-46-page5.txt: [('A', 'mt')] PUR19180620-V17-46-page6.txt: [('R', 'ECORDER')] PUR19180627-V17-47-page1.txt: [('or', 'ganized')] PUR19180627-V17-47-page7.txt: [('we', 're')] PUR19180704-V17-48-page3.txt: [('stand', 'bys')] PUR19180704-V17-48-page5.txt: [('the', 'es')] PUR19180718-V17-50-page2.txt: [('in', 'teresting')] PUR19180718-V17-50-page7.txt: [('Pea', 'rl')] PUR19180725-V17-51-page2.txt: [('Work', 'ers')] PUR19180725-V17-51-page3.txt: [('men', 'pleasers')] PUR19180801-V17-52-page8.txt: [('hear', 'tily')] PUR19180808-V18-01-page1.txt: [('the', 'reby'), ('M', 'cElhany')] PUR19180808-V18-01-page4.txt: [('that', 'ch')] PUR19180808-V18-01-page5.txt: [('Miss', 'Es')] PUR19180815-V18-02-page1.txt: [('a', 'ment')] PUR19180815-V18-02-page8.txt: [('but', 'tered')] PUR19180822-V18-03-page7.txt: [('t', 'ried')] PUR19180829-V18-04-page5.txt: [('in', 'ures')] PUR19180905-V18-05-page1.txt: [('C', 'laude')] PUR19180905-V18-05-page2.txt: [('Diffen', 'bacher')] PUR19180905-V18-05-page3.txt: [('lib', 'erty')] PUR19180905-V18-05-page6.txt: [('Bar', 'bara')] PUR19180912-V18-06-page3.txt: [('church', 'es')] PUR19180912-V18-06-page4.txt: [('as', 'pects')] PUR19180912-V18-06-page5.txt: [('sufficient', 'ly')] PUR19180919-V18-07-page1.txt: [('the', 're')] PUR19180919-V18-07-page3.txt: [('a', 'ment')] PUR19180919-V18-07-page8.txt: [('trip', 'pers')] PUR19180926-V18-08-page2.txt: [('act', 'ivities')] PUR19180926-V18-08-page3.txt: [('and', 're')] PUR19180926-V18-08-page7.txt: [('San', 'itarium')] PUR19181003-V18-09-page7.txt: [('to', 'nia')] PUR19181017-V18-11-page3.txt: [('NO', 'VEMBER')] PUR19181017-V18-11-page8.txt: [('w', 'hich')] PUR19181024-V18-12-page1.txt: [('be', 'lieve'), ('good', 'ly')] PUR19181024-V18-12-page3.txt: [('R', 'ECORDER')] PUR19181024-V18-12-page8.txt: [('can', 'ers')] PUR19181031-V18-13-page6.txt: [('of', 'fering')] PUR19181031-V18-13-page7.txt: [('pros', 'pectus')] PUR19181107-V18-14-page7.txt: [('Calif', 'ornia')] PUR19181114-V18-15-page1.txt: [('paper', 'ers')] PUR19181121-V18-16-page3.txt: [('So', 'ft')] PUR19181121-V18-16-page5.txt: [('am', 'ber')] PUR19181121-V18-16-page7.txt: [('L', 'odi')] PUR19181128-V18-17-page2.txt: [('to', 'ning')] PUR19181128-V18-17-page4.txt: [('be', 'nt')] PUR19181128-V18-17-page7.txt: [('Calif', 'ornia')] PUR19181205-V18-18-page6.txt: [('or', 'ig')] PUR19181212-V18-19-page1.txt: [('care', 'ful')] PUR19181212-V18-19-page2.txt: [('to', 're')] PUR19181212-V18-19-page5.txt: [('to', 'pers')] PUR19181219-V18-20-page1.txt: [('ses', 'sions')] PUR19181219-V18-20-page7.txt: [('a', 'mis')] PUR19181219-V18-20-page8.txt: [('R', 'ECORDER'), ('the', 'mis')] PUR19181226-V18-21-page3.txt: [('In', 'ning')] PUR19181226-V18-21-page8.txt: [('to', 'il'), ('the', 'ses')] PUR19190102-V18-22-page3.txt: [('to', 'oth')] PUR19190102-V18-22-page5.txt: [('O', 'akland')] PUR19190109-V18-23-page3.txt: [('R', 'ECORDER')] PUR19190116-V18-24-page6.txt: [('with', 'Al')] PUR19190123-V18-25-page4.txt: [('Lynch', 'es')] PUR19190130-V18-26-page3.txt: [('We', 'll')] PUR19190130-V18-26-page6.txt: [('m', 'eet')] PUR19190130-V18-26-page8.txt: [('who', 'op')] PUR19190206-V18-27-page1.txt: [('M', 'cElhany')] PUR19190206-V18-27-page4.txt: [('a', 'mo'), ('State', 'ment')] PUR19190206-V18-27-page6.txt: [('in', 'ference')] PUR19190213-V18-28-page1.txt: [('Plan', 'tation')] PUR19190213-V18-28-page5.txt: [('a', 're')] PUR19190213-V18-28-page7.txt: [('and', 're'), ('a', 'ble')] PUR19190220-V18-29-page1.txt: [('the', 'ories')] PUR19190220-V18-29-page4.txt: [('to', 'co')] PUR19190227-V18-30-page3.txt: [('R', 'ECORDER')] PUR19190227-V18-30-page6.txt: [('pres', 'ent')] PUR19190227-V18-30-page8.txt: [('to', 'ft')] PUR19190306-V18-31-page1.txt: [('con', 'ference')] PUR19190313-V18-32-page5.txt: [('R', 'ECORDER')] PUR19190320-V18-33-page1.txt: [('de', 'struction')] PUR19190320-V18-33-page5.txt: [('R', 'ECORDER'), ('and', 're')] PUR19190327-V18-34-page6.txt: [('Bar', 'bara')] PUR19190403-V18-35-page3.txt: [('the', 'Re')] PUR19190403-V18-35-page5.txt: [('run', 'ning')] PUR19190410-V18-36-page4.txt: [('a', 're'), ('sec', 'retary'), ('we', 'es'), ('sub', 'scription')] PUR19190410-V18-36-page5.txt: [('R', 'ECORDER'), ('meth', 'ods')] PUR19190410-V18-36-page8.txt: [('to', 'es')] PUR19190417-V18-37-page1.txt: [('in', 'vited')] PUR19190417-V18-37-page5.txt: [('R', 'ECORDER')] PUR19190417-V18-37-page6.txt: [('to', 're')] PUR19190417-V18-37-page7.txt: [('Lin', 'da')] PUR19190417-V18-37-page8.txt: [('to', 're')] PUR19190424-V18-38-page3.txt: [('the', 'mis')] PUR19190424-V18-38-page5.txt: [('a', 're')] PUR19190501-V18-39-page1.txt: [('con', 'stantly')] PUR19190501-V18-39-page2.txt: [('the', 'ta')] PUR19190501-V18-39-page4.txt: [('the', 'mis')] PUR19190501-V18-39-page7.txt: [('A', 'cre')] PUR19190508-V18-40-page2.txt: [('with', 'ering')] PUR19190508-V18-40-page3.txt: [('h', 'ts')] PUR19190508-V18-40-page7.txt: [('A', 'cre')] PUR19190515-V18-41-page4.txt: [('a', 'ment')] PUR19190515-V18-41-page8.txt: [('A', 're')] PUR19190522-V18-42-page6.txt: [('advertise', 'ment')] PUR19190522-V18-42-page7.txt: [('A', 'cre')] PUR19190522-V18-42-page8.txt: [('plan', 'ning')] PUR19190529-V18-43-page2.txt: [('com', 'parisons')] PUR19190529-V18-43-page6.txt: [('el', 'Se')] PUR19190529-V18-43-page8.txt: [('Gen', 'eral')] PUR19190605-V18-44-page6.txt: [('cafe', 'teria')] PUR19190612-V18-45-page8.txt: [('to', 'ss')] PUR19190619-V18-46-page3.txt: [('to', 'ri')] PUR19190626-V18-47-page4.txt: [('Elder', 'Ly')] PUR19190626-V18-47-page6.txt: [('h', 'ive'), ('to', 'co')] PUR19190626-V18-47-page7.txt: [('Folk', 'enberg')] PUR19190703-V18-48-page1.txt: [('sever', 'al')] PUR19190703-V18-48-page2.txt: [('AN', 'NIVERSARY')] PUR19190710-V18-49-page2.txt: [('he', 're'), ('in', 'strument')] PUR19190717-V18-50-page3.txt: [('the', 're')] PUR19190724-V18-51-page4.txt: [('to', 'co')] PUR19190724-V18-51-page8.txt: [('in', 'scription')] PUR19190731-V18-52-page5.txt: [('R', 'ECORDER')] PUR19190807-V19-01-page2.txt: [('U', 'NION')] PUR19190807-V19-01-page5.txt: [('special', 'ists')] PUR19190807-V19-01-page6.txt: [('thous', 'ands')] PUR19190807-V19-01-page7.txt: [('in', 'dividuals'), ('C', 'alifornia')] PUR19190814-V19-02-page2.txt: [('in', 'terest')] PUR19190814-V19-02-page3.txt: [('Cum', 'Mings')] PUR19190814-V19-02-page5.txt: [('R', 'ECORDER')] PUR19190814-V19-02-page7.txt: [('in', 'dividuals')] PUR19190814-V19-02-page8.txt: [('Califor', 'nia')] PUR19190821-V19-03-page3.txt: [('We', 'bers')] PUR19190821-V19-03-page4.txt: [('Canvass', 'ers')] PUR19190821-V19-03-page5.txt: [('in', 'teresting')] PUR19190821-V19-03-page7.txt: [('t', 'iL')] PUR19190821-V19-03-page8.txt: [('to', 'ning')] PUR19190911-V19-05-page3.txt: [('a', 'nd')] PUR19190911-V19-05-page5.txt: [('the', 're')] PUR19190911-V19-05-page8.txt: [('a', 're'), ('t', 'wenty')] PUR19190918-V19-06-page1.txt: [('for', 'th')] PUR19190918-V19-06-page6.txt: [('a', 're'), ('Mem', 'ber')] PUR19190925-V19-07-page2.txt: [('a', 'nal')] PUR19190925-V19-07-page4.txt: [('He', 'ber')] PUR19190925-V19-07-page5.txt: [('a', 'ttention')] PUR19191002-V19-08-page2.txt: [('Pr', 'ut')] PUR19191016-V19-10-page6.txt: [('sis', 'terS')] PUR19191023-V19-11-page3.txt: [('we', 'ber')] PUR19191023-V19-11-page5.txt: [('R', 'ECORDER')] PUR19191030-V19-12-page2.txt: [('We', 're'), ('Scrip', 'ture')] PUR19191030-V19-12-page4.txt: [('she', 'ber')] PUR19191106-V19-13-page2.txt: [('and', 'es')] PUR19191113-V19-14-page1.txt: [('Y', 'oung')] PUR19191120-V19-15-page4.txt: [('LET', 'TERS')] PUR19191120-V19-15-page6.txt: [('SPIRIT', 'UALITY')] PUR19191120-V19-15-page7.txt: [('Y', 'oung')] PUR19191127-V19-16-page2.txt: [('God', 'ly')] PUR19191204-V19-17-page8.txt: [('Y', 'oung')] PUR19191211-V19-18-page1.txt: [('and', 're')] PUR19191211-V19-18-page6.txt: [('chil', 'dren')] PUR19191211-V19-18-page8.txt: [('Y', 'oung')] PUR19191218-V19-19-page2.txt: [('o', 'ffice'), ('o', 'rders')] PUR19191218-V19-19-page5.txt: [('g', 'al')] PUR19191218-V19-19-page6.txt: [('and', 're'), ('confer', 'ence')] PUR19191225-V19-20-page2.txt: [('P', 'ACIFIC')] PUR19200108-V19-22-page2.txt: [('PUB', 'LISHING')] PUR19200108-V19-22-page4.txt: [('the', 'ist')] PUR19200108-V19-22-page6.txt: [('be', 'th')] PUR19200108-V19-22-page7.txt: [('ad', 'vertising')] PUR19200108-V19-22-page8.txt: [('Y', 'oung')] PUR19200115-V19-23-page2.txt: [('pos', 'tage')] PUR19200115-V19-23-page8.txt: [('so', 'fas')] PUR19200122-V19-24-page3.txt: [('will', 'ful')] PUR19200122-V19-24-page6.txt: [('PUB', 'LISHING')] PUR19200129-V19-25-page3.txt: [('PUB', 'LISHING')] PUR19200129-V19-25-page6.txt: [('MISSION', 'ARY')] PUR19200129-V19-25-page8.txt: [('to', 'wel')] PUR19200205-V19-26-page1.txt: [('Mem', 'ber')] PUR19200205-V19-26-page6.txt: [('E', 're')] PUR19200212-V19-27-page1.txt: [('C', 'OL')] PUR19200212-V19-27-page4.txt: [('effort', 'ful')] PUR19200212-V19-27-page5.txt: [('can', 'vassing')] PUR19200212-V19-27-page8.txt: [('the', 'ists')] PUR19200226-V19-28-page10.txt: [('Work', 'ers')] PUR19200226-V19-28-page11.txt: [('in', 'ning')] PUR19200226-V19-28-page12.txt: [('MISSION', 'ARY')] PUR19200226-V19-28-page2.txt: [('the', 'se'), ('Se', 'rna'), ('W', 'ork')] PUR19200226-V19-28-page4.txt: [('or', 'th')] PUR19200304-V19-29-page1.txt: [('e', 'rA')] PUR19200304-V19-29-page11.txt: [('t', 'hird'), ('MISSION', 'ARY')] PUR19200304-V19-29-page12.txt: [('in', 'flict')] PUR19200304-V19-29-page2.txt: [('the', 'reof')] PUR19200304-V19-29-page5.txt: [('Immediate', 'ly')] PUR19200304-V19-29-page7.txt: [('we', 'bers'), ('vol', 'ume')] PUR19200311-V19-30-page1.txt: [('He', 're')] PUR19200311-V19-30-page4.txt: [('be', 'ment')] PUR19200311-V19-30-page5.txt: [('DE', 'PARTMENT')] PUR19200318-V19-31-page3.txt: [('a', 'bas')] PUR19200318-V19-31-page4.txt: [('to', 're')] PUR19200318-V19-31-page7.txt: [('No', 'un')] PUR19200325-V19-32-page2.txt: [('will', 'ingly')] PUR19200325-V19-32-page5.txt: [('rich', 'es')] PUR19200408-V19-34-page1.txt: [('good', 'ly')] PUR19200408-V19-34-page7.txt: [('In', 'ters')] PUR19200408-V19-34-page8.txt: [('conscious', 'ly')] PUR19200415-V19-35-page1.txt: [('He', 're')] PUR19200415-V19-35-page4.txt: [('to', 'ning')] PUR19200415-V19-35-page5.txt: [('the', 're')] PUR19200415-V19-35-page7.txt: [('and', 're')] PUR19200422-V19-36-page3.txt: [('coo', 'peration'), ('o', 'ff')] PUR19200422-V19-36-page5.txt: [('in', 'glis')] PUR19200422-V19-36-page7.txt: [('lit', 'erature')] PUR19200429-V19-37-page3.txt: [('in', 'ly')] PUR19200429-V19-37-page7.txt: [('and', 're')] PUR19200429-V19-37-page8.txt: [('I', 'srael')] PUR19200506-V19-38-page5.txt: [('a', 're')] PUR19200513-V19-39-page8.txt: [('m', 'em'), ('to', 'Ys')] PUR19200520-V19-40-page1.txt: [('and', 'reas')] PUR19200520-V19-40-page6.txt: [('Cem', 'etery'), ('Feb', 'ruary')] PUR19200520-V19-40-page7.txt: [('He', 'al')] PUR19200527-V19-41-page2.txt: [('the', 'es')] PUR19200527-V19-41-page4.txt: [('superin', 'tendent')] PUR19200527-V19-41-page6.txt: [('dis', 'ciplinary')] PUR19200603-V19-42-page2.txt: [('a', 'il')] PUR19200603-V19-42-page5.txt: [('a', 'CC'), ('It', 'al'), ('i', 'ri'), ('rI', 'CA'), ('e', 'CO')] PUR19200610-V19-43-page1.txt: [('Mac', 'Guire')] PUR19200610-V19-43-page2.txt: [('CON', 'FERENCE')] PUR19200610-V19-43-page3.txt: [('CONFER', 'ENCE')] PUR19200610-V19-43-page6.txt: [('COMMENCE', 'MENT')] PUR19200617-V19-44-page3.txt: [('Sa', 'ved')] PUR19200617-V19-44-page4.txt: [('coo', 'perate')] PUR19200617-V19-44-page7.txt: [('a', 'cer')] PUR19200624-V19-45-page4.txt: [('for', 'mal')] PUR19200624-V19-45-page8.txt: [('M', 'EM')] PUR19200701-V19-46-page1.txt: [('the', 'refor')] PUR19200701-V19-46-page4.txt: [('CON', 'FERENCE'), ('AD', 'VENTISTS')] PUR19200701-V19-46-page5.txt: [('the', 'ba')] PUR19200701-V19-46-page7.txt: [('as', 'sistant')] PUR19200701-V19-46-page8.txt: [('a', 'mis')] PUR19200708-V19-47-page3.txt: [('CON', 'FERENCE'), ('AD', 'VENTISTS')] PUR19200708-V19-47-page7.txt: [('G', 'ood')] PUR19200715-V19-48-page4.txt: [('the', 're')] PUR19200715-V19-48-page5.txt: [('AD', 'VENTISTS')] PUR19200722-V19-49-page3.txt: [('i', 'nd')] PUR19200722-V19-49-page5.txt: [('CON', 'FERENCE'), ('AD', 'VENTISTS')] PUR19200805-V19-51-page5.txt: [('CON', 'FERENCE')] PUR19200812-V19-52-page2.txt: [('becau', 'se')] PUR19200812-V19-52-page5.txt: [('Sabba', 'th')] PUR19200812-V19-52-page7.txt: [('As', 'sociation')] PUR19200819-V20-01-page2.txt: [('corresponde', 'nce')] PUR19200819-V20-01-page3.txt: [('The', 'reof'), ('cam', 'paign')] PUR19200819-V20-01-page5.txt: [('CON', 'FERENCE')] PUR19200819-V20-01-page6.txt: [('junk', 'ers')] PUR19200826-V20-02-page3.txt: [('present', 'ment')] PUR19200826-V20-02-page6.txt: [('a', 'redale')] PUR19200902-V20-03-page4.txt: [('ha', 'steth')] PUR19200923-V20-06-page2.txt: [('in', 'teresting')] PUR19200923-V20-06-page4.txt: [('mis', 'sionary')] PUR19200923-V20-06-page6.txt: [('the', 're')] PUR19200923-V20-06-page8.txt: [('the', 're')] PUR19200930-V20-07-page6.txt: [('to', 're')] PUR19201007-V20-08-page2.txt: [('attend', 'ance'), ('CAL', 'IFORNIA')] PUR19201007-V20-08-page7.txt: [('Ad', 'ventist')] PUR19201021-V20-10-page2.txt: [('the', 're')] PUR19201021-V20-10-page3.txt: [('author', 'ized'), ('in', 'ference')] PUR19201028-V20-11-page1.txt: [('a', 're')] PUR19201028-V20-11-page5.txt: [('am', 'ounted')] PUR19201028-V20-11-page7.txt: [('and', 're')] PUR19201104-V20-12-page1.txt: [('PUB', 'LISHING')] PUR19201104-V20-12-page4.txt: [('at', 'Co')] PUR19201104-V20-12-page6.txt: [('NORTH', 'ERN')] PUR19201118-V20-14-page1.txt: [('a', 'Ver')] PUR19201118-V20-14-page2.txt: [('for', 'th'), ('and', 're'), ('s', 'ip')] PUR19201118-V20-14-page4.txt: [('The', 're')] PUR19201118-V20-14-page7.txt: [('pres', 'ident'), ('Calif', 'ornia')] PUR19201125-V20-15-page2.txt: [('room', 'ful')] PUR19201125-V20-15-page5.txt: [('NORTH', 'ERN')] PUR19201125-V20-15-page7.txt: [('pres', 'ident')] PUR19201202-V20-16-page8.txt: [('with', 'ered')] PUR19201209-V20-17-page3.txt: [('ad', 'ditionS')] PUR19201216-V20-18-page3.txt: [('a', 'cer')] PUR19201223-V20-19-page7.txt: [('i', 'nsertion')] PUR19201223-V20-19-page8.txt: [('in', 'gress')] PUR19201230-V20-20-page3.txt: [('mis', 'sions')] PUR19201230-V20-20-page6.txt: [('the', 'Re')] PUR19201230-V20-20-page8.txt: [('a', 'mis')]
Check Correction 6¶
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/PUR/correction6 Average verified rate: 0.970513954178835 Average of error rates: 0.03202994983771024 Total token count: 6524103
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', 16599), ('w', 15050), ('m', 10894), ('g', 10527), ('f', 7287), ('r', 6595), ('d', 6494), ("'", 4847), ('t', 4436), ('n', 3112), ('th', 1447), ('x', 808), ('k', 690), ('tion', 619), ('u', 579), ('ords', 406), ('co', 385), ('ence', 377), ('re', 359), ('seventhday', 345), ('sabbathschool', 293), ('ment', 284), ('ference', 278), ('inter-mountain', 276), ('verah', 258), ('ex', 246), ('wm', 242), ("canvassers'", 229), ('pepperwood', 223), ('ber', 212), ('ers', 204), ('z', 202), ('lb', 195), ("the'", 189), ('ple', 185), ('oo', 182), ('io', 181), ('twentyfifth', 168), ("''", 165), ('sionary', 161), ('ly', 158), ('pa', 154), ('tions', 150), ("bookmen's", 149), ('mo', 144), ("colporteurs'", 144), ('un', 144), ('ft', 138), ('al', 138), ('mt', 135)]
Review Remaining Errors¶
In [31]:
reports.docs_with_high_error_rate(summary)
Out[31]:
[('PUR19170607-V16-44-page28.txt', 1.0), ('PUR19170607-V16-44-page2.txt', 0.462), ('PUR19170607-V16-44-page32.txt', 0.414), ('PUR19130515-V12-42-page2.txt', 0.333), ('PUR19150311-V14-32-page13.txt', 0.329), ('PUR19110302-V10-31-page10.txt', 0.295), ('PUR19020213-V01-15-page18.txt', 0.273), ('PUR19200226-V19-28-page1.txt', 0.257), ('PUR19170607-V16-44-page1.txt', 0.25), ('PUR19170607-V16-44-page4.txt', 0.241), ('PUR19050427-V04-40-page7.txt', 0.239), ('PUR19040324-V03-17-page15.txt', 0.213), ('PUR19200729-V19-50-page7.txt', 0.201), ('PUR19170607-V16-44-page24.txt', 0.201)]
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.3]
utilities.open_original_docs(doc_keys, directories['cycle'])
Opened files: PUR19170607-V16-44-page28.txt PUR19170607-V16-44-page2.txt PUR19170607-V16-44-page32.txt PUR19130515-V12-42-page2.txt PUR19150311-V14-32-page13.txt
In [35]:
reports.long_errors(errors_summary, min_length=15)
Out[35]:
(['demartelectifisimreiftttheit', 'forcertification', 'itwasagreathelptotheworkto', 'maniannouncement', 'businessiprovided', 'properlyselected', 'weniger-connelly', 'cornercoltonavenueboulevardand', 'interest-bearing', "gtepping-storles''ette", 'intelligent-looking', 'publishednreekly', 'becomeinterested', 'presumetheyhavealsobeenwidelycirculated', 'itssigniacancoreally', "god's'-inessetigers", "stteeess'fttl-field", 'opportunity-that', 'interestingeditorials', 'student-teachers', 'ofthechurchesofthedifferenttpetsdid', 'heartwillingness', 'stiperintendetit', 'noncombatligious', 'umeombilliniellamonelligralgaliamme', "clfnaaiiy'ihktturs", 'thirtyprayer-meeting', 'fellow-believers', 'conferappreciate', 'experiprincipals', 'receipt-certificates', 'manconscientiously', 'gaimmdllimmombit', 'expected--failed', 'publishing-houses', 'reunconstitutional', 'publishsubscribers', 'establishdepartment', 'seventh-dayadventists', 'subscriprepapered', 'enjoyadevotional', 'subscription-book', "wl'titerlitli'llitle", 'resolution-petitions', 'pharisao-puritanism', 'publishedweeklybythe', 'intersalesmanship', 'circulawonderful', 'retary-treasurers', 'ofseattleandtacomasanitariums', 'inereasedettergrte', 'fifteen-centa-week', 'gorgeouslydecorated', 'mornencouragement', 'publicatuioenritpd', 'communmisunderstanding', "haveenjoyed'nnich", 'ptoagtheeciarrntoeoignh', 'interestattendance', 'theicongregations', 'november-december', 'coursing-grounds', 'recordertnanagement', 'tary-treasurership', 'sanetifiedaclgtrient', 'one-day-rest-in-seven', 'stereoptientered', 'fourteen-year-old', 'twenty-cents-a-week', 'califorrighteousness', 'churchpronounced', 'faithfullyholding', 'understandunparalleled', "atie'littiuiated", 'physicaliwell-being', 'foolishthoughtful', 'conditionalorder', 'throughpromising', 'considerasolutely', "superintendents'", 'evangelimmediately', "ilivita'recorder", 'acrepresentative', 'fairly-comfortable', 'notwithstandaddress', 'amissionarysecre', 'rebeccahannaford', 'tuesconvocations', 'northlicentiates', 'sugdemonstrating', 'sranish-speaking', 'plainssecretaries', 'thoroughlyequipped', 'snyder-hollenbeck', 'lradvertisements', 'realoving-kindness', 'interpublication', 'califoroppression', 'consecratedtalent', 'cottage-meetings', 'retary-treasurer', 'superintenpublishing', 'do-something-ism', "crutchtoaliiifd'mali", 'thirtyordinances', 'ashunderstanding', 'controindicating', 'unostentatiousness', 'materialconsideration', 'eviannouncements', 'pilrepresentative', 'superintendentof', 'ffissffiwmffiffilfiffissmse', "inessage''brought", 'ffigiffiffiffiffiffiffiffi', 'congregamaintained', 'cottoninterested', 'circulathirteenth', 'general-conference', 'superintenddaughters', 'freewill-offering', 'followingincident', 'mandarin-speaking', 'canvasser-evangelists', 'thepuritantheocracy', 'testimonderstanding', 'transferaflashing', 'faculty-recently', 'develto-day--out', 'departutilization', 'approachableness', 'siticubteivaeclyc', 'home-associations', 'sabbath-christian', 'amountmountaineers', 'arrangeencouraging', 'thought-producing', "tie'elipittioisc", 'unavoidacommission', 'all-profits-for-missions', 'teachconsideration', "coititarishowsreceipts'fro'ni'thechurches", 'westerniwashington', 'constantly-increasing', 'ninesretritsiolgn', 'prophrepresentation', 'ktrightenedytthe', 'spiritual-financial', 'endeavfellow-laborer', 'fiaillistratielini', 'splammoliginmonnammommultetillin', 'secretary-treasurers', 'fracture-dislocation', 'churchesexpressing', 'retransportation', 'ofthatexcellenttemperanceinstructor', 'instituaccommodate', 'ingatherthirteenth', "adjutant-general's", 'escondido-english', 'portuguese-speaking', 'back-to-the-country', 'callanding-stage', 'peopleunanimously', 'appropthemselves', 'courperseveringly', 'newly-interested', 'hecobnetaatinevsear', 'buffaco-operation', 'campsuccessfully', 'twenty-five-cent-a-week', 'intoconsideration', 'self-subordination', 'expressecutively', 'ussthrownopenfor', 'healdsstrengthening', 'theinstrucinterm', 'ingathconversions', 'churchthroughout', 'twelveunderstands', 'missionthroughout', 'calislibmumilemsglegittalivamominplommila', 'assignpromulgation', 'standard-bearers', 'loveliconversation', 'branch-vegetarian', 'half-heartedcharacter', 'never-to-beforgotten', 'periodsuperintendent', 'fellow-worshipers', "our'subscription", 'kingestablishing', 'patronresponsibility', "indebte'dness'of", 'fifty-cent-a-week', "vias'weltattelided'byaelsgates", 'california-nevada', 'thetimeofourgreatannual', 'practicaltraining', 'commandment-keepers', 'recommendabetter', 'cronufersetnscepraeg', 'doserviceforgodwillbepassed', "innovation'principal", 'usefulprospective', 'departmenencourage', 'measuresubmitting', 'discriminatyoung', 'commandmentkeeping', 'conventions-that', 'one-andone-third-fare', 'responsibiliaged', 'rerfeifninememenentt', "coirespoirdence'", 'ilkesvireetfragrande', 'washington-sunset', 'whevremitnoditliciedutscoarrdeerot', 'considerarecently', 'attorneys-at-law', 'conditention-catching', 'receiptcertificate', 'commitattendance', 'especiallyinteresting', 'greenorganization', 'elimaireitdiedfea', 'fellow-citiother', 'promulgavolunteer', 'everysacrificing', 'world-erasoul-winning', 'disbelievselfish', 'strferiammacadenrgi', 'character-buliding', 'necessiliterature', 'cordiallywelcome', 'sparsely-settled', 'twentieth-century', 'twenty-cent-per-weekp', 'secretaryresponse', 'ininivanworipsprim', 'perthree-fourths', 'theirdetermination', 'denominationsize', 'lasciviousnessare', 'theaccaectaonfeecfonrgmreastunof', "all'absent'inenibei", 'characteropportunity', 'liabiliselection', 'fiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffi', 'stick-to-itiveness', 'congregationplemented', 'sabbath-keepnearly', 'character-contrasts', 'interest-gripping', 'stateopportunity', 'twentyexpenditure', 'missiontreasurer', 'followingpersons', 'experiexperience', "rhottesiai-not'-far", 'mmemliffiernftgoommetimalimonfismumlie', 'healdsremembrance', 'twenty-five-a-week', 'non-organization', 'receipt-certificate', 'entertainducting', 'regularlyrecurring', 'notice-camp-meeting', 'interestingclass', 'hopelessdeavoring', 'unforvocabularies', 'self-examination', 'dollars-and-cents', 'expense-supplies', 'sewing--fulyocational', 'wewillbepresentaswell-asbrother', 'donaevangelistic', "posasslociating'", 'insiesimmeninfiniiiliillizihia', "sister'saperienee", 'ifermuenncownysilelcbutievaeeclye', 'conmekeanwissing', 'interrestrictions', 'uncondibelievers', 'isgrassisaiscala', 'experiencesscription', 'seventhconferences', 'deeply-interested', "narrew'cirele-of-the", 'shiningimitation', 'withsponsibility', 'hawkitis-crisler', 'callinoespecially', 'cent-a-week-fund', 'occasionpatience', 'speciallyprepared', 'great-grandchildren', 'extenencompassed', "toiiferenee'nevii", 'existcordermanagement', 'advantageeeffered', 'demonstragathering', 'spanish-speakmeeting', "trilftlitirsday'", 'eisteriveverrwhere', "tlielord'to'seelfileapprotes", "geritleman'whowas", "fountain-head'the", 'wanted-employment', 'self-sacrificthe', 'indebtedmentioned', 'churchoccasionally', 'afterwardsbecame', 'ventura-by-the-sea', 'churchmembership', 'systematicallyand', "opporttinity'for", "people'smeetingin", 'almost-forgotten', 'superintendchurch', 'livingmembership', 'ingatheraccomplished', 'turbulent-spirited', 'quarterlymeeting', 'magacordermanagement', 'allydtitihnitlitations', 'continually-recurring', 'disgusting-looking', 'donation-special', 'ordinunconverted', 'academic-industrial', 'siritiiefairatihy', 'satanicdeceptions', 'uxbisaiprensaddressed', 'andreadbeforethesociety', 'childsupervision', 'rapidly-increasing', 'operainformation', 'unprecedentnothing', 'influenza-pneumonia', 'insurmountazines', 'secretarytreasurer', 'twenty-cent-per-week', 'commandment-keeper', 'accommodaholding', 'certifilaboratory', 'mistinderstanding', 'mmmmmmmmmmmmmmmmmmm', 'ingathering-vermont', 'entertainmissionary', 'circulareligious', 'regularlyprescribed', 'constituestablished', 'sleeping-sickness', 'back-tothe-bible-movement', 'departfrequently', 'ileeekitliliggievatipyos', 'recomnienclation', 'notwithstandcome', 'consistpreliminary', 'naftaliaiiraiiilkx', 'training-classes', "miutneiocnd'it'd", 'conferconference', 'immortalvegetable', 'spiritually-minded', 'folding-machines', 'eanvasotrovotilt', 'souutthheeaasstterrn', 'incontrovertably', 'under-curvillage', 'conferdepartment', 'desiresconsecrated', 'colporteur-evangelists', 'superintenworking', 'thought-compelling', 'what-is-before-us', 'church-membership', 'retornniendations', 'commandmentkeepers', 'publishgovernment', 'twenty-five-cent-aweek', 'reorganizacourse', "sabba'ffi-schools", 'embracedthetruthandr', 'ploommulimmmiltlammatillp', "load-'of'domestic", "spelling---hick's", 'writevangelistic', 'meetperseverance', 'orsuperintendent', "in'californiahas", 'preseettilentiviet', 'faithfullyonward', 'neverthelessseemed', 'magreorganization', 'fifteen-cents-a-week', 'intercontinuation', 'sanitarium-trained', 'northwestearnestly', 'long-established', 'encourstrengthened', 'correspondpeople', 'developinterested', 'under-persuasion', 'non-commissioned', "youngpenple's-seeiety", 'attorney-general', 'flionnummtinnontia', 'trespass-offerings', 'privportionately', 'accomtransacting', 'easter-stiperintendent', 'califorafterward', 'eleinstitutional', 'eiwehurcheabrprofession', 'physiologicallaw', 'atacl--repenteth', 'ssouthearnstcacjai', 'convenwillingness', 'wednesday-evening', 'illustrafreshman', "parent-teachers'", 'encourconfederacies', 'sevennthth--dday', 'manifestrequired', 'transgresadvance', 'notwithetaiading', 'itutangelisticanac', 'theinternational', 'spanish-american', 'oakconsideration', 'gatheredonthebankoftheverde', 'twenty-fivecent-a-week', 'sabbath-guardians', 'self-complacency', 'jesiisafloonatwr', 'educaopportunity', 'representreligious', 'standard-bearing', 'regularly-organized', 'advertiseparticulars', 'acceptliterature', 'representlicensed', 'alaska-yukon-pacific', 'fairbanks-roosevelt', 'religio-political', 'intermedireceived', 'canvassing-evangelist', 'intermeperiences', 'swedish-methodist', 'vegetariansevery', 'unimpressionable', 'commary-peterson', "extraordinaryinurses'", 'rernemberinothat', "nelatiehadnezzar's", 'long-anticipated', 'liberaldonations', 'responsibillties', 'westopiannikezjur', 'faint-heartedness', 'practicequipment', 'conferinstitutes', 'foreign-speaking', 'strongly-developed', 'ingatheringeampaigni', 'unconstitntional', 'sufferself-indulgence', 'organizministerial', 'departcolporteurs', "represen'tatives", 'grantedcredentials', 'seventhbeforehand', 'missionary-college', 'in-sabbath-school', 'modestly-equipped', 'sixty-cent-a-week', 'twelve-passenger', 'publishinquiries', 'givinginaniajorl', 'therecommendanity', 'encouragconsideration', 'encouragordinance', 'mmismunnollihomullinomesimja', 'aeerttfulfilitimit', 'thirty-five-minutes', 'ltredsverhastily', 'missiontwenty-seven', 'correctly-spelled', 'healthycondition', 'roftfhiecelettlol', 'opportuniworking', 'couragingalltogetintotheworkas', 'regularlyorganized', 'itwillthenbemorefully', 'trick-canvassing', 'considerameeting', 'retrenchsociated', 'especialtranslate', 'elceipt-certificate', 'electricallydriven', 'churcheseverywhere', 'twenty-cent-afuneral', 'rretivtionsaltellorz', "rriiiiister'says-lie", 'postmaster-general', 'indefilengthened', 'selfglorification', 'receivgratifying', 'act-of-parliament', 'advisabilication', 'solicipreparatory', 'circumcongregation', 'constitutionaldaeral', 'obtainaopportunity', 'one-day-of-restin-seven', 'recommendedbythe', 'conitrinnicatinns', 'correspondshould', 'proswell-lighted', 'conferresponsibility', "bible'--present-day", 'thaiyouiediezfree', 'ofctcnovdeparture', 'nationaltranslation', "ateyoungpeople's", 'electro-therapeutics', 'suadeindividualsfromdoingwhat', 'secretary-treasthe', 'revsuerintendent', 'superintendcandles', 'twenty-cent-amany', 'divinely-appointed', "greater'calamity", 'francisconference', 'union-conference', "selectiona'froin", 'canvasser-evangelist', 'informlightening', "conferenet'llave", 'spanish-speaking', 'everythingeototpot', 'sabbath--meeting', 'csaemcmrpetaries', 'orglinizaspiritual', 'sabbath-school--past', 'constantlyincreasing', 'rationallmethods', 'strenuotsefforts', 'reasonaself-denial', 'two-and-a-half-story', 'everyevangelistic', 'subscriptionsshould', 'seventy-five-cent', 'normaltraining-school', 'withlargebuildings', 'pcekto-n-iimodit', 'prepheciesfulfilled', 'advisabiliensuing', 'mainorganization', 'earnestcommodate', 'knowledgspondence', 'self-improveable', 'biblicalstandpoint', 'commitincreasing', 'califorformation', 'counter-attractions', 'twenty-cent-aweek', 'califorconventions', 'theresponsibility', 'delightfultplace', 'strongestablishment', 'inwhichnomanshallwork', "resurrecdollars'", 'columblagonference', 'mounpublications', 'revenuegliatemen', 'offermissionaries', 'conpossibilities', 'thirteen-year-old', 'widely-scattered', 'attendentertainment', 'imresponsibility', 'secretarconvention', 'twentycent-a-week', "comparative'tithe", 'commandment-loving', 'world-conditions', 'seventhconvention', 'recommendadesire', 'encouragewatchman', 'introduccarefully', 'instrumentalthis', 'theresponsibilities', 'ieeeeeeeeeteeeeeeeeeeeeeeeeeeeeeeeeee', 'twenty-five-cent-atans', 'enterprisesinsandiego', 'disfellowshiping', 'quarterly-meeting', "change'''wfought", 'spanish-speakmessage', 'radvertisementti', 'filmmultillimmorff', 'becarriedwillbeheavy', 'fifteen-cent-aweek', 'well-constructed', 'especialneighbors', 'instituaccommodation', 'colsuperintendent', 'memoraconference', "exhibition'sorne", 'informationwrite', 'herald-republican', 'ocfamlifaorcnhia', 'church-fellowship', 'ogitammminimmetlnemormellgpitimi', 'constitucompanies', 'self-surrendered', 'recommendparents', 'pacificunionreclb', 'dettoliiiitational', 'half-heartedness', 'churchdiscourage', 'importantarticles', 'encouragethemintheirlabors', 'consideraadditional', 'discouragecopies', 'twenty-cent-a-week', 'considerstatement', 'schreiberwasafaithful', 'recomneighborhood', 'regularly-established', "'''distributing'", 'brotherandsister', "beeit'''greatdollars", 'inpebble-produced', 'represclittutiot', 'comparativeevery', 'washingauthority', 'etlitocialabpartment', 'thoroughlycompetent', "statistical'report", 'tlerffiliatbinger', 'barsecretary-treasurer', 'fellow-christians', 'heart-examination', 'huntsvilleschool', 'appearattractive', 'conardilinethotiglif', 'prohibitionamendment', 'electricrailways', 'missionaryenterprise', 'promisinglooking', 'help-one-another', 'thirtyliterature', 'intellectucumstances', 'outlineelevations', 'great-grandchilof', 'northwesternrcalifornia', 'mindsfaithfulness', 'highlyinflammable', 'spellingexercises', "twenitci'pidericals", 'mloimmkrifilasini', 'chicllerierlirdey', 'officeealtrtnentir', 'medical-missionary', 'linuninterruptedly', "union'''itecokrier", 'responsidifferent', 'food-manufacturing', 'commandpermitting', 'conferencecorporation', 'right-to-the-point', 'causingthesalmilobecommmed', 'lientenant-governor', 'reconsecradegree', 'mexican-speaking', 'fatally-fascinating', 'confrontdestination', 'freewill-offerings', "suffereducation'", 'necessaryexpenses', 'iiiimmonimmitrisumminel', 'newspafacilities', 'refercommentaries', 'representatestimony', 'esinesttisonlisnlehtednese', 'colorittleinidene', 'immediateference', 'forty-houra-week', "inter-mountain's", 'caerttiafiicnatmese', 'alphabetically-arranged', 'heaven-appointed', 'chiirch-iellowship', 'confessrepresent', 'attendedlregularly', 'contemparaneously', "self-supportpreparation'", "un'tolfrevord'er", 'otherinformation', 'intersuperintendent', 'soul-enlightening', 'givereagsuslaisrtance', 'camp-meetfoundation', 'twenty-four-hour-old', 'presnolchoolboard', 'hayden-winkleman', 'bpanislnameriean', 'twenty-five-mile', 'impossiindication', 'ingatherdonation', 'self-exnlanatory', 'twenty-fivetract', 'world-circulating', "onr'opposititit'", 'departassistants', 'three-thousand-dollar', 'providaccommodation', 'fifteen-cent-a-week', 'passenger-trains', 'securprovidential', 'pasadenarnissionary', 'rniscellalancous', 'sunday-observance', 'long-to-be-remembered', 'printing-offices', 'andrecommendthatour', 'bohemian-slavish', 'califorinteresting', 'instrumengrudgingly', 'short-sightedness', 'kinderintermediate', 'seventhconference', 'opportunitywanted', 'southerncaliforniaconference', 'camouthermometer', 'ltifittirttettift', 'the-memfaithfully', 'whenthedayofhisappointmentcame', 'reprimandedthose', 'that-schoolhouse', "officers'-council", 'certifiunderstanding', "pupils'uniformity", 'helenasanitarium', 'considconference', 'encourageaddress', 'cleteipainagreatest', 'continsuccessful', 'attendresponsibility', 'circulaprisonment', 'ftlifillownealflammoolawallimmomell', 'responsiconvention', 'activemissionary', 'some-place-to-go', 'conferinformation', 'advisabilififteen', 'sabbathcamp-meeting', 'influappropriate', 'wonderfulharmony', 'caseperintendent', 'fairdisappointments', 'chrisintellectual', 'antediluvian-well', 'unselfishministration', 'onwsiyubteivaelcye', 'thratighdirections', 'literallyfulfilled', 'fellowaccountability', 'legislaprincipally', 'cincinsuccessfully', 'self-condemnation', 'inevitamidsummer', 'contribconference', "spelling--hick's", 'minnammomtillammomilfilmolifimapoda', 'possiinteresting', 'centralcalifornia', 'nitaininatiiiiisi', 'twenty-cent-atime', 'encouragezitsgeneral', 'correerenecelders', 'vice-president-at-large', 'nursery-garden--a', 'difficultthanwecanimagine', 'strongconsecration', "callegekthe'direetara'of", 'irittiatinterests', 'responsibiliwith', "butyounapeople's", 'upliftopportunity', 'reinforceforcements', 'sebastomultaneously', 'subscriptionprice', 'mandment-keeping', 'seventhday-adventism', 'andalsoanordersent', 'spaolnldmeanttceerrfeoarptiunbslication', 'sabbathprayerful', 'appupil-teachers', 'monasticinterpreters', 'quicklyaccomplished', 'stick-to-it-iveness', 'forty-hour-a-week', 'bulgariaconfused', 'advertiseobsequies', 'lighthousekeeping', 'demonstratcompassion', 'bible-reading-series', 'being-seventy-five', 'poverty-afflicted', 'southremembering', "missionary'literature", 'riallemmianftmpaeinflffmmoonlimi', 'faithfullyproclaims', 'accoininedationi', "inthemaster'sworkintheearth", 'topliff-wheatley', 'personconsequence', 'collectgratitude', 'economicalgreatly', 'fiftycent-a-week', 'matesubscription', 'stumbling-blocks', 'subscriptiovprice', 'poverty-stricken', 'misceellalanneoeuosus', 'piiiniiiiiiidimidtmild', 'much-appreciated', 'teachcorrespondence', 'californiamedical', 'representafabulous', 'regularlyappointed', 'associatreatment', 'describportunity', 'carriage-painting', 'thousandresponded', 'granusubstantial', 'conatantino-iing', 'thoroughlyconverted', 'bootrighteousness', 'beginfundamental', 'selfforgetfulness', 'camp-meetdisappointed', 'northeducational', 'drenefteuraefnecreeosmpatnhyerecqounfeeeretnsce', "qiite'impossible", 'particucompanies', 'thoroughlygraded', 'ciiiite-miptrlai', 'uniiiiniountable', 'tweny-cent-a-week', 'wanted-consecrated', 'xmalleiliffinnende', 'recormnerldations', 'danish-norwegians', 'educationalinstitutions', 'health-question-boxclaim', "inekings-'here'lii", 'missionaryitieeting', 'twenty-five-cent', 'evangelical-medical', 'iiiiiiiiiiiiinniliiiillanitiliniiiiiihiiiii', 'never-to-be-forgotten', 'sabbath-christians', 'thirteen-yearold', 'prograndchildren', 'announcepurchased', 'goodell-intermediate', 'stanford-in-the-vale', 'responsibilbetter', 'eneeetragenirefill', 'faintheartedness', 'appeairn-thennoovveember', 'theirdisobedience', 'two-hundred-acre', 'studentcolporteurs', 'solemnlytraining', 'testimonywritten', 'accreditedschool', 'califorinterested', 'manufacoperation', 'forniatorrintakerit', 'treatment-roorns', 'innnuscriolthiat', 'opportunities-of', 'particreferences', 'terriblecalamity', "ingathering'offeiing", "skepstockholders'", 'pneuresurrection', 'speaketiattppiomented', 'selfrighteousness', 'unehangeableness', 'recordermanagement', 'apparcommissioned', 'secretary-treasurship', 'opportuniporteurs', 'ediaaritginggkeuja-tion', 'indebtedmatchless', 'begincircumstances', "theleaderbi'aggieeiive", 'eciuippedprinting', 'continually-reviving', 'self-gratification', 'recorrespondence', 'sourals-extravagant', 'ipaiiitecttheselido', "practice'reaches", 'drilling-machines', 'twocharacteristics', 'followingdepartmental', 'tifteen-cent-aweek', 'discoursuffering', "'responsibility'", 'courtrvattritatuamicuoif', 'superscrumnubious', 'isiorthwesterwalifornia', 'thorough-heartedness', 'would-ourmissionary', 'constituevangelistic', 'sanitaripartment', 'twenty-cent-abring', 'septemeducational', 'departmentsition', 'puritandetermined', 'respectannouncement', 'subscriptionbook', 'improperlytrained', 'afincerereatitade', 'notwithstandwith', 'periodicalsalone', 'tetharepretarrildtinte', 'connecsubscription', 'inautlierizednovaett', 'mintliftavarellfia', 'uodcainmsptruodvyemaetnthomase', 'pioneer-missionary', 'gympathrivarouseda', 'burden-blessings', "heiena'sanitatiuni", 'sacramentoreport', 'ifinlifmnsmagelbffuommilli', 'schoolwith-a-mission', 'evangelisticfactorinprintedformput', 'transsubscriptions', 'remittanceshould', 'transforpresented', 'princiapplication', 'non-dividend-paying', 'spelling-matches', 'satisfacfoundation', 'commandpreparation', 'thisrecommendation', 'self-forgetfulness', 'centurrefreshing', 'observacommandments', 'evangelicalmagazines', 'sixteen-year-old', 'martyr-witnesses', 'strongerinflueliss', 'compulsoryobservance', "s'itsytsmmmmsssmsyismytyiy", 'organizimportant', 'writchurches-dinuba', 'conferimpossible', 'phonographic-wise', 'thrashing-machine', 'stwhaoetuamlndiinsngiosvwtariadtnivognise', "in'the'tinion'een", 'highest-standard', 'exceedauditorium', 'supperintenedent', 'oppositionshould', 'evangelisticcanvassing', 'self-sacrificingly', 'wagner-greenwood', "b'shovuothechem'", 'songstifrsetesnon', 'gaster-dress-making', 'neighborservices', 'iswithusforatime', 'escondido-german', 'interresponsibilities', 'philipnotwithstanding', "sabbath-keeper's", 'this-association', 'containeverlasting', 'positionglorifies', 'instrucstructive', 'charityteachers-came', "brang'''crffices", 'confersecutively', 'teachinargethere', 'preciousexperienee', 'all-the-year-round', 'barstdvii-cotony', 'sisterscirculating', ...], 15)
Correction 7 -- Remove long error tokens¶
In [37]:
# %load shared_elements/remove-tokens-with-long-strings-of-characters.py
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)))
for filename in corpus:
content = utilities.readfile(directories['prev'], filename)
text = re.sub(r"[0-9,!?$:;&]", " ", content)
tokens = utilities.tokenize_text(text)
replacements = []
replacements.append(clean.check_for_repeating_characters(tokens, "m|M"))
replacements.append(clean.check_for_repeating_characters(tokens, "e|E"))
replacements.append(clean.check_for_repeating_characters(tokens, "l|L"))
replacements.append(clean.check_for_repeating_characters(tokens, "i|I"))
replacements.append(clean.check_for_repeating_characters(tokens, "f|F"))
replacements = [item for sublist in replacements for item in sublist]
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()
PUR19080917-V08-07-page6.txt: [('IIIIMMONimmitrisumminel', ' ')] PUR19140625-V13-47-page1.txt: [('NNeeceeeeciseee', ' ')] PUR19140702-V13-48-page1.txt: [('MMMMMMMMMMMMMMMMMMM', ' ')] PUR19150513-V14-40-page3.txt: [('vviissiittiing', ' ')] PUR19170607-V16-44-page31.txt: [('iiiiiiiiiiiiinniliiiillanitiliniiiIIIHIIIII', ' '), ('PIIINIIIIIIidIMIDTMIld', ' ')] PUR19170830-V17-04-page8.txt: [('ploommulimmmiltlammatillp', ' ')] PUR19170927-V17-08-page8.txt: [('SplammoliginmonnammommUltetillin', ' ')] PUR19171004-V17-09-page1.txt: [('anasseamosmooffillnliffimomplffidnalinenellfttlefammemetjfiflinimmmmal', ' ')] PUR19171018-V17-11-page1.txt: [('ftlifillownealflammoolaWallimmomell.mmemliffiernftgoommetimalimonfismumlie.', ' '), ('ftlifillownealflammoolaWallimmomell.mmemliffiernftgoommetimalimonfismumlie.', ' ')] PUR19171115-V17-15-page8.txt: [('Umeombilliniellamonelligralgaliamme', ' ')] PUR19190417-V18-37-page3.txt: [('trommammoom.m...mm', ' ')] PUR19200506-V19-38-page8.txt: [('IEEEEEEEEETEEEEEEEEEEEEEEEEEEEEEEEEEE', ' ')] PUR19200513-V19-39-page8.txt: [('Hiffiffiffiffi', ' ')] PUR19200520-V19-40-page8.txt: [('fiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffiffi', ' ')] PUR19200617-V19-44-page8.txt: [('ffigiffiffiffiffiffiffiffi', ' ')] PUR19200819-V20-01-page8.txt: [('ffiSSffiWMffiffilfiffiSSMSE', ' ')]
In [40]:
# %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/PUR/correction7 Average verified rate: 0.9705169293523703 Average of error rates: 0.0320264089701977 Total token count: 6524083
In [41]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[41]:
[('e', 16599), ('w', 15050), ('m', 10893), ('g', 10527), ('f', 7287), ('r', 6595), ('d', 6494), ("'", 4847), ('t', 4436), ('n', 3112), ('th', 1447), ('x', 808), ('k', 690), ('tion', 619), ('u', 579), ('ords', 406), ('co', 385), ('ence', 377), ('re', 359), ('seventhday', 345), ('sabbathschool', 293), ('ment', 284), ('ference', 278), ('inter-mountain', 276), ('verah', 258), ('ex', 246), ('wm', 242), ("canvassers'", 229), ('pepperwood', 223), ('ber', 212), ('ers', 204), ('z', 202), ('lb', 195), ("the'", 189), ('ple', 185), ('oo', 182), ('io', 181), ('twentyfifth', 168), ("''", 165), ('sionary', 161), ('ly', 158), ('pa', 154), ('tions', 150), ("bookmen's", 149), ('mo', 144), ("colporteurs'", 144), ('un', 144), ('ft', 138), ('al', 138), ('mt', 135)]
Correction 8 -- Separate Squashed Words¶
In [43]:
# %load shared_elements/separate_squashed_words.py
import pandas as pd
from math import log
prev = cycle
cycle = "correction8"
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'])
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)
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)
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()
PUR19010801-V01-01-page1.txt: [('sanetifiedAclgtrient', 's a net if i ed A c l g t r i e n t')] PUR19010829-V01-03-page5.txt: [('commandmentkeepers', 'commandment keepers')] PUR19011107-V01-08-page13.txt: [('commandmentkeeping', 'commandment keeping')] PUR19011121-V01-09-page16.txt: [('regularlyrecurring', 'regularly recurring')] PUR19011205-V01-10-page1.txt: [('thoroughlyconverted', 'thoroughly converted')] PUR19020116-V01-13-page15.txt: [('Christianexperience', 'Christian experience')] PUR19020116-V01-13-page16.txt: [('regularlyappointed', 'regularly appointed')] PUR19020130-V01-14-page7.txt: [('Morgannevertheless', 'Morgan nevertheless')] PUR19020213-V01-15-page20.txt: [('quicklyaccomplished', 'quickly accomplished')] PUR19020313-V01-16-page1.txt: [('fellowaccountability', 'fellow accountability')] PUR19020313-V01-16-page14.txt: [('conferresponsibility', 'confer responsibility')] PUR19020410-V01-18-page6.txt: [('gorgeouslydecorated', 'gorgeous l y decorated')] PUR19020619-V01-23-page3.txt: [('Interresponsibilities', 'Inter responsibilities')] PUR19020619-V01-23-page6.txt: [('presicorrespondence', 'pres i correspondence')] PUR19020717-V01-25-page12.txt: [('regularlyorganized', 'regularly organized')] PUR19020731-V01-26-page9.txt: [('establishdepartment', 'establish department')] PUR19021009-V02-05-page4.txt: [('ofSeattleandTacomaSanitariums', 'of Seattle and Tacoma Sanitariums'), ('enterprisesinSanDiego', 'enterprises in San Diego'), ('embracedthetruthandr', 'embraced the truth an dr')] PUR19030101-V02-11-page11.txt: [('constantlyincreasing', 'constantly increasing')] PUR19030101-V02-11-page5.txt: [('regularlyprescribed', 'regularly prescribed')] PUR19030312-V02-16-page1.txt: [('instrumengrudgingly', 'inst ru men grudgingly')] PUR19030312-V02-16-page4.txt: [('teachconsideration', 'teach consideration')] PUR19030326-V02-17-page6.txt: [('patronresponsibility', 'patron responsibility')] PUR19030618-V02-22-page7.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19030924-V03-04-page8.txt: [('grantedcredentials', 'granted credentials')] PUR19031105-V03-07-page6.txt: [('observacommandments', 'o b ser v a commandments')] PUR19031217-V03-10-page15.txt: [('thePuritantheocracy', 'the Puritan theocracy')] PUR19040211-V03-14-page7.txt: [('intersuperintendent', 'inter superintendent'), ('andreadbeforethesociety', 'and read before the society')] PUR19040324-V03-17-page11.txt: [('profitableoccasion', 'profitable occasion')] PUR19040324-V03-17-page13.txt: [('encourstrengthened', 'en c our strengthened')] PUR19040505-V03-20-page11.txt: [('possibleconsistent', 'possible consistent')] PUR19040623-V03-25-page5.txt: [('connecsubscription', 'con n e c s u b s c r i p t i o n')] PUR19040630-V03-26-page3.txt: [('periodsuperintendent', 'period superintendent')] PUR19040707-V03-27-page4.txt: [('thoroughlyequipped', 'thoroughly equipped')] PUR19040811-V04-02-page4.txt: [('Fairdisappointments', 'Fair disappointments')] PUR19040901-V04-05-page7.txt: [('WesterniWashington', 'Western i Washington')] PUR19040908-V04-06-page1.txt: [('departmenencourage', 'depart men encourage')] PUR19040922-V04-08-page4.txt: [('accOrriplishedmuch', 'a c c Or rip l i shed much')] PUR19041124-V04-18-page5.txt: [('commandmentkeeping', 'commandment keeping')] PUR19041201-V04-19-page6.txt: [('givereagsuslaisrtance', 'give rea g s u s l a i s r t a n c e')] PUR19050302-V04-32-page2.txt: [('fiaillistratielini', 'f i a i l l i s t r a t i e l i n i')] PUR19080213-V07-28-page9.txt: [('followingdepartmental', 'following departmental')] PUR19080319-V07-33-page5.txt: [('presumetheyhavealsobeenwidelycirculated', 'presume they have also been widely circulated'), ('withanaveragetpOrofrom', 'with an aver a get p Or o from')] PUR19080402-V07-35-page3.txt: [('encouragethemintheirlabors', 'encourage them in their labors'), ('Itwasagreathelptotheworkto', 'It was a great help to the work to')] PUR19080423-V07-38-page1.txt: [('Whenthedayofhisappointmentcame', 'When the day of his appointment came'), ('tothechagrinofthepoliceman', 'to the c ha grin of the policeman')] PUR19080910-V08-06-page1.txt: [('ofthechurchesofthedifferenttpetsdid', 'of the churches of the different t p e t s d i d')] PUR19081022-V08-12-page2.txt: [('sisterscirculating', 'sisters circulating')] PUR19081029-V08-13-page4.txt: [('monasticinterpreters', 'mon as tic interpreters')] PUR19091202-V09-18-page3.txt: [('Missionarylicenses', 'Missionary licenses')] PUR19100203-V09-27-page2.txt: [('strongerinflueliss', 'stronger in flu el is s')] PUR19100224-V09-30-page9.txt: [('theresponsibilities', 'the responsibilities')] PUR19100630-V09-48-page2.txt: [('etlitOcialAbpartment', 'et lit O c i a l A b part men t')] PUR19100929-V10-09-page10.txt: [('evangelicalmagazines', 'evangelical magazines')] PUR19100929-V10-09-page9.txt: [('Twocharacteristics', 'Two characteristics')] PUR19101006-V10-10-page3.txt: [('literallyfulfilled', 'literally fulfilled')] PUR19101013-V10-11-page2.txt: [('interestmanifested', 'interest manifested')] PUR19101201-V10-18-page3.txt: [('commandmentkeepers', 'commandment keepers')] PUR19110105-V10-23-page2.txt: [('IpaiiitecttheselidO', 'I p a ii it e c t t h e s e l i d O')] PUR19110302-V10-31-page11.txt: [('ILIFORNIAMDITEVADA', 'I L I FOR N I A M D I T E V A D A')] PUR19110302-V10-31-page4.txt: [('Adventistscontinuing', 'Adventists continuing')] PUR19110413-V10-37-page2.txt: [('unselfishministration', 'unselfish ministration')] PUR19110420-V10-38-page8.txt: [('dettoliiiitational', 'de t t o l i i i i t a t i o n a l')] PUR19110511-V10-41-page1.txt: [('Sinadaysipreaghing', 'S in a day sip rea g h i n g')] PUR19110525-V10-43-page2.txt: [('missionaryenterprise', 'missionary enterprise')] PUR19110803-V11-01-page4.txt: [('theirdetermination', 'their determination')] PUR19121024-V12-13-page7.txt: [('churchesexpressing', 'churches expressing')] PUR19121031-V12-14-page7.txt: [('ileeekitliliggieVatiPyos', 'i lee e k i t l i l i g g i e V a t i P y o s')] PUR19130123-V12-26-page8.txt: [('greatgrandchildren', 'great grandchildren')] PUR19130417-V12-38-page4.txt: [('incliscrirainately', 'incl is c r i r a i n a t e l y')] PUR19130522-V12-43-page8.txt: [('thoroughlycompetent', 'thoroughly competent')] PUR19131211-V13-19-page3.txt: [('encouragezitsgeneral', 'encourage zit s general')] PUR19140122-V13-25-page7.txt: [('COnardilinethotiglif', 'C On ard i lin et hot i g l i f')] PUR19140212-V13-28-page2.txt: [('prohibitionamendment', 'prohibition amendment')] PUR19140212-V13-28-page8.txt: [('receiptcertificates', 'receipt certificates')] PUR19140219-V13-29-page6.txt: [('receiptcertificates', 'receipt certificates')] PUR19140226-V13-30-page6.txt: [('receiptcertificates', 'receipt certificates')] PUR19140305-V13-31-page8.txt: [('receiptcertificates', 'receipt certificates')] PUR19140806-V14-01-page4.txt: [('kasimosaeommillismesillissmola', 'k a s i m o s a e o m m i l l i s m e s i l l i s s m o l a')] PUR19140910-V14-06-page14.txt: [('ofthatexcellentTemperanceInstructor', 'of that excellent Temperance Instructor'), ('nummummitipasfinafillfill', 'num mum m i t i p a s f i n a f i l l f i l l')] PUR19141022-V14-12-page4.txt: [('andalsoanordersent', 'and also an order sent')] PUR19141022-V14-12-page5.txt: [('mintliftavarellfia', 'mint lift a var ell f i a')] PUR19141022-V14-12-page6.txt: [('commandmentkeepers', 'commandment keepers')] PUR19141112-V14-15-page7.txt: [('Columblagonference', 'C o lum b lag on fer en c e')] PUR19141126-V14-17-page7.txt: [('thisrecommendation', 'this recommendation')] PUR19141231-V14-22-page7.txt: [('Biblicalstandpoint', 'Biblical standpoint')] PUR19150114-V14-24-page1.txt: [('Conferencehavofelt', 'Conference ha v o felt')] PUR19150128-V14-26-page3.txt: [('Pasadenarnissionary', 'Pas a den ar n i s s i o n a r y')] PUR19150128-V14-26-page8.txt: [('electricallydriven', 'electrically driven')] PUR19150225-V14-30-page2.txt: [('gatheredonthebankoftheVerde', 'gathered on the bank of the Verde'), ('othersarealmostreadyforthatordi', 'others are almost ready for that or di')] PUR19150311-V14-32-page17.txt: [('SouthernCaliforniaConference', 'Southern California Conference')] PUR19150415-V14-36-page5.txt: [('preciousexperienee', 'precious exp er i en e e')] PUR19150506-V14-39-page7.txt: [('neverthelessseemed', 'nevertheless seemed')] PUR19150513-V14-40-page1.txt: [('itssigniAcancoreally', 'its sign i A can core ally')] PUR19150520-V14-41-page8.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19150603-V14-43-page2.txt: [('receiptcertificate', 'receipt certificate')] PUR19150603-V14-43-page5.txt: [('withlargebuildings', 'with large buildings')] PUR19150624-V14-46-page8.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19150819-V15-02-page8.txt: [('PUBLISHEDWEEKLYBYTHE', 'PUBLISHED WEEKLY BY THE')] PUR19151028-V15-12-page2.txt: [('solicitingdonations', 'soliciting donations')] PUR19151028-V15-12-page3.txt: [('attendedlregularly', 'attended l regularly')] PUR19151028-V15-12-page8.txt: [('interestingeditorials', 'interesting editorials')] PUR19151209-V15-18-page6.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19151223-V15-20-page7.txt: [('greatgrandchildren', 'great grandchildren')] PUR19160302-V15-30-page4.txt: [('Conferencecorporation', 'Conference corporation')] PUR19160316-V15-32-page6.txt: [('andrecommendthatour', 'and recommend that our')] PUR19160413-V15-36-page5.txt: [('Paithfulnessbrings', 'P a it h fulness brings')] PUR19160413-V15-36-page7.txt: [('Recordermanagement', 'Recorder management'), ('hecobnetaatinevsear', 'he cob net a a tine vs ear')] PUR19160427-V15-38-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160504-V15-39-page7.txt: [('greatgrandchildren', 'great grandchildren')] PUR19160511-V15-40-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160608-V15-44-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160615-V15-45-page7.txt: [('Recordermanagement', 'Recorder management'), ('greatgrandchildren', 'great grandchildren')] PUR19160622-V15-46-page2.txt: [('receiptcertificates', 'receipt certificates')] PUR19160622-V15-46-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160706-V15-48-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160720-V15-50-page6.txt: [('receiptcertificates', 'receipt certificates')] PUR19160727-V15-51-page6.txt: [('Recordermanagement', 'Recorder management')] PUR19160817-V16-02-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160824-V16-03-page6.txt: [('Recordermanagement', 'Recorder management')] PUR19160907-V16-05-page1.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19160907-V16-05-page4.txt: [('compulsoryobservance', 'compulsory observance')] PUR19160921-V16-07-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19160928-V16-08-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19161019-V16-11-page5.txt: [('conscienceprayerfully', 'conscience prayerfully')] PUR19161026-V16-12-page2.txt: [('arrangeencouraging', 'arrange encouraging')] PUR19161102-V16-13-page2.txt: [('coopcorrespondence', 'coop correspondence')] PUR19161102-V16-13-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19161109-V16-14-page6.txt: [('Recordermanagement', 'Recorder management')] PUR19161116-V16-15-page1.txt: [('Testimonderstanding', 'Test im on der standing')] PUR19161116-V16-15-page6.txt: [('Recordertnanagement', 'Record ert nan age men t')] PUR19161207-V16-18-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19161214-V16-19-page3.txt: [('containeverlasting', 'contain everlasting')] PUR19161214-V16-19-page8.txt: [('subscriptionsshould', 'subscriptions should')] PUR19170111-V16-23-page2.txt: [('prophrepresentation', 'prop h representation')] PUR19170118-V16-24-page6.txt: [('congregamaintained', 'c ong reg a maintained')] PUR19170125-V16-25-page2.txt: [('attendresponsibility', 'attend responsibility')] PUR19170125-V16-25-page5.txt: [('existcordermanagement', 'exist corder management')] PUR19170208-V16-27-page5.txt: [('Recordermanagement', 'Recorder management')] PUR19170215-V16-28-page2.txt: [('interestattendance', 'interest attendance')] PUR19170215-V16-28-page5.txt: [('Recordermanagement', 'Recorder management')] PUR19170301-V16-30-page5.txt: [('Recordermanagement', 'Recorder management')] PUR19170308-V16-31-page12.txt: [('nationaltranslation', 'national translation')] PUR19170308-V16-31-page14.txt: [('obtainaopportunity', 'obtain a opportunity')] PUR19170308-V16-31-page19.txt: [('Recordermanagement', 'Recorder management')] PUR19170308-V16-31-page3.txt: [('Departstrengthening', 'Depart strengthening')] PUR19170315-V16-32-page4.txt: [('attendentertainment', 'attend entertainment')] PUR19170322-V16-33-page2.txt: [('constituestablished', 'cons tit u e s t a b l i s h e d'), ('encouragconsideration', 'en c our a g c o n s i d e r a t i o n')] PUR19170322-V16-33-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170329-V16-34-page5.txt: [('announcparticipating', 'an no u n c p a r t i c i p a t i n g')] PUR19170329-V16-34-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170405-V16-35-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170419-V16-37-page2.txt: [('teachcorrespondence', 'teach correspondence')] PUR19170426-V16-38-page1.txt: [('constitutionaldaeral', 'constitution ald a era l')] PUR19170517-V16-41-page1.txt: [('manconscientiously', 'man conscientiously')] PUR19170524-V16-42-page3.txt: [('receiptcertificate', 'receipt certificate')] PUR19170607-V16-44-page21.txt: [('INSIESIMMENinfiniiiliillIZIHIA', 'IN S I E S I M M E N i n f i n i i i l i i l l I Z I H I A')] PUR19170614-V16-45-page2.txt: [('receiptcertificate', 'receipt certificate')] PUR19170614-V16-45-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170628-V16-47-page2.txt: [('impossithanksgiving', 'im pos s i thanksgiving')] PUR19170712-V16-49-page6.txt: [('Recordermanagement', 'Recorder management')] PUR19170719-V16-50-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170726-V16-51-page4.txt: [('certifiunderstanding', 'cert if i understanding')] PUR19170726-V16-51-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170726-V16-51-page8.txt: [('difficultthanwecanimagine', 'difficult than we can imagine')] PUR19170809-V17-01-page4.txt: [('Recordermanagement', 'Recorder management')] PUR19170830-V17-04-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19170906-V17-05-page6.txt: [('magacordermanagement', 'mag a corder management')] PUR19170913-V17-06-page6.txt: [('Recordermanagement', 'Recorder management')] PUR19171004-V17-09-page1.txt: [('demonstratcompassion', 'demon str at compassion')] PUR19171004-V17-09-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171018-V17-11-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171025-V17-12-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171101-V17-13-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171108-V17-14-page1.txt: [('Novemberprivileges', 'November privileges')] PUR19171115-V17-15-page5.txt: [('commandpreparation', 'command preparation')] PUR19171115-V17-15-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171129-V17-17-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171206-V17-18-page2.txt: [('trustGodhasreposedinusasstewriT', 'trust God has reposed in us as stew r i T'), ('disseminatnecessary', 'dis semi nat necessary')] PUR19171213-V17-19-page7.txt: [('Recordermanagement', 'Recorder management')] PUR19171220-V17-20-page8.txt: [('publishsubscribers', 'publish subscribers')] PUR19171227-V17-21-page2.txt: [('orglinizaspiritual', 'org lin i z a s p i r i t u a l')] PUR19180110-V17-23-page2.txt: [('churcheseverywhere', 'churches everywhere')] PUR19180314-V17-32-page6.txt: [('Strongconsecration', 'Strong consecration')] PUR19180321-V17-33-page8.txt: [('institranscontinental', 'inst i transcontinental')] PUR19180404-V17-35-page2.txt: [('materialconsideration', 'material consideration')] PUR19180411-V17-36-page3.txt: [('superintenpublishing', 'super in ten publishing')] PUR19180425-V17-38-page1.txt: [('Seventhconferences', 'Seventh conferences')] PUR19180425-V17-38-page3.txt: [('Cincinsuccessfully', 'C in c in successfully')] PUR19180502-V17-39-page1.txt: [('notwithstandaddress', 'not withstand address')] PUR19180516-V17-41-page6.txt: [('continuedcorrespondence', 'continued correspondence')] PUR19180523-V17-42-page3.txt: [('receiptcertificate', 'receipt certificate')] PUR19180530-V17-43-page2.txt: [('assignpromulgation', 'assign promulgation')] PUR19180530-V17-43-page4.txt: [('denominationifornia', 'denomination if or n i a')] PUR19180627-V17-47-page4.txt: [('conferencesecretary', 'conference secretary')] PUR19180704-V17-48-page1.txt: [('couragingalltogetintotheworkas', 'c our aging all to get into the work as')] PUR19180704-V17-48-page8.txt: [('transsubscriptions', 'trans subscriptions')] PUR19180711-V17-49-page1.txt: [('evangelisticfactorinprintedformput', 'evangelistic factor in printed form put'), ('thatwastheverythingthatmade', 'that was the very thing that made')] PUR19180718-V17-50-page1.txt: [('inwhichnomanshallwork', 'in which no man shall work')] PUR19180808-V18-01-page4.txt: [('Congregationplemented', 'Congregation p le men ted')] PUR19180815-V18-02-page8.txt: [('doserviceforGodwillbepassed', 'do service for God will be passed')] PUR19180822-V18-03-page3.txt: [('successfullycarried', 'successfully carried')] PUR19180822-V18-03-page8.txt: [('Thetimeofourgreatannual', 'The time of our great annual')] PUR19180905-V18-05-page1.txt: [('Thatthenecessarymeansfor', 'That the necessary means for'), ('becarriedwillbeheavy', 'be carried will be heavy')] PUR19180905-V18-05-page3.txt: [('conferencecommittee', 'conference committee')] PUR19180912-V18-06-page3.txt: [('NorthwesternrCalifornia', 'Northwestern r C a l i f o r n i a')] PUR19180919-V18-07-page4.txt: [('NorthwesternCalifornia', 'Northwestern California')] PUR19180926-V18-08-page6.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19180926-V18-08-page8.txt: [('exhaustconjunction', 'exhaust conjunction')] PUR19181128-V18-17-page1.txt: [('encourconfederacies', 'en c our con fed era c i e s')] PUR19190130-V18-26-page5.txt: [('Northwestearnestly', 'Northwest earnestly')] PUR19190206-V18-27-page3.txt: [('unavoidacommission', 'una void a commission')] PUR19190403-V18-35-page3.txt: [('representreligious', 'represent religious')] PUR19190403-V18-35-page7.txt: [('Linuninterruptedly', 'L in uninterruptedly')] PUR19190410-V18-36-page8.txt: [('loveliconversation', 'love l i conversation')] PUR19190515-V18-41-page4.txt: [('experiencesscription', 'experiences script ion')] PUR19190515-V18-41-page7.txt: [('advertiseparticulars', 'advertise particulars')] PUR19190522-V18-42-page6.txt: [('desiresconsecrated', 'desires consecrated')] PUR19190529-V18-43-page8.txt: [('educationalinstitutions', 'educational institutions')] PUR19190717-V18-50-page4.txt: [('Califorrighteousness', 'Cali for righteousness')] PUR19190807-V19-01-page5.txt: [('accredsubscription', 'a c c red subscription')] PUR19190814-V19-02-page8.txt: [('Calislibmumilemsglegittalivamominplommila', 'Cal is lib mum ile ms g l e g i t t a l i v a m o m i n p l o m m i l a')] PUR19190904-V19-04-page1.txt: [('understandunparalleled', 'understand unparalleled')] PUR19190904-V19-04-page8.txt: [('itwillthenbemorefully', 'it will then be more fully')] PUR19190918-V19-06-page8.txt: [('gentlemanprofitless', 'gentleman profit less')] PUR19190925-V19-07-page4.txt: [('studentcolporteurs', 'student colporteurs')] PUR19191009-V19-09-page2.txt: [('especiallyinteresting', 'especially interesting')] PUR19191009-V19-09-page5.txt: [('expericonversation', 'exp er i conversation')] PUR19191023-V19-11-page8.txt: [('consistpreliminary', 'consist preliminary')] PUR19191106-V19-13-page2.txt: [('churchoccasionally', 'church occasionally')] PUR19191113-V19-14-page2.txt: [('legislaprincipally', 'leg is la principally')] PUR19191113-V19-14-page3.txt: [('satisfacfoundation', 'sat is fac foundation')] PUR19191204-V19-17-page7.txt: [('whevremitnoditliciedutscoarrdeerot', 'whe v remit nod it l i c i ed u t s c o a r r d e e r o t')] PUR19200129-V19-25-page4.txt: [('entertainmissionary', 'entertain missionary')] PUR19200129-V19-25-page7.txt: [('onwsiyubteivaelcye', 'on w s i y u b t e i v a e l c y e')] PUR19200226-V19-28-page3.txt: [('responsiconvention', 'res p on s i convention')] PUR19200311-V19-30-page4.txt: [('Evangelimmediately', 'Evangel immediately')] PUR19200408-V19-34-page8.txt: [('SsouthearnstcaCJai', 'S south earn st c a C J ai')] PUR19200415-V19-35-page5.txt: [('kinderintermediate', 'kinder intermediate')] PUR19200513-V19-39-page4.txt: [('reinforceforcements', 'rein force for cement s')] PUR19200513-V19-39-page7.txt: [('cornerColtonAvenueBoulevardand', 'corner Colton Avenue Boulevard and')] PUR19200520-V19-40-page3.txt: [('Califorinteresting', 'Cali for interesting')] PUR19200722-V19-49-page3.txt: [('Internationcomplished', 'Inter nation com p l i shed')] PUR19200722-V19-49-page8.txt: [('instituaccommodation', 'inst it u a c c o m m o d a t i o n')] PUR19200805-V19-51-page1.txt: [('representafabulous', 'represent a fabulous')] PUR19200819-V20-01-page2.txt: [('strongestablishment', 'strong establishment')] PUR19200819-V20-01-page4.txt: [('providaccommodation', 'prov i d a c c o m m o d a t i o n')] PUR19200826-V20-02-page2.txt: [('confrontdestination', 'confront destination')] PUR19200902-V20-03-page5.txt: [('characteropportunity', 'character opportunity')] PUR19200902-V20-03-page6.txt: [('subscripcounsellors', 'sub scrip counsellor s')] PUR19200923-V20-06-page2.txt: [('demonstragathering', 'demon str a gathering')] PUR19200923-V20-06-page4.txt: [('superintendcandles', 'superintend candles')] PUR19200930-V20-07-page2.txt: [('Philipnotwithstanding', 'Philip notwithstanding')] PUR19200930-V20-07-page6.txt: [('consideraadditional', 'consider a additional')] PUR19201007-V20-08-page2.txt: [('secretarytreasurer', 'secretary treasurer')] PUR19201021-V20-10-page8.txt: [('secretarconvention', 'secret ar convention')] PUR19201028-V20-11-page6.txt: [('Ingatheraccomplished', 'Ingather accomplished')] PUR19201104-V20-12-page2.txt: [('evangelisticcanvassing', 'evangelistic canvassing')] PUR19201111-V20-13-page3.txt: [('NaftaliAiirAiiilkx', 'N a f t a l i A i i r A i i i l k x'), ('ININIVANWORIPSprim', 'IN IN IV AN W O R I P S p r i m')] PUR19201118-V20-14-page4.txt: [('faithfullyproclaims', 'faithfully proclaims')] PUR19201125-V20-15-page6.txt: [('superintenddaughters', 'superintend daughters')] PUR19201202-V20-16-page3.txt: [('Califorconventions', 'Cali for conventions')] PUR19201209-V20-17-page2.txt: [('respectannouncement', 'respect announcement'), ('announcprohibiting', 'an no u n c p r o h i b i t i n g')] PUR19201223-V20-19-page4.txt: [('Ingatherthirteenth', 'Ingather thirteenth')] PUR19201230-V20-20-page5.txt: [('Begincircumstances', 'Begin circumstances')]
In [46]:
# %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/PUR/correction8 Average verified rate: 0.9705368861327659 Average of error rates: 0.03200280318678077 Total token count: 6525108
In [47]:
# %load shared_elements/top_errors.py
errors_summary = reports.get_errors_summary( summary )
reports.top_errors( errors_summary, 10 )[:50]
Out[47]:
[('e', 16628), ('w', 15052), ('m', 10911), ('g', 10539), ('f', 7296), ('r', 6615), ('d', 6505), ("'", 4847), ('t', 4472), ('n', 3139), ('th', 1447), ('x', 809), ('k', 693), ('tion', 619), ('u', 588), ('ords', 406), ('co', 385), ('ence', 377), ('re', 359), ('seventhday', 345), ('sabbathschool', 293), ('ment', 284), ('ference', 278), ('inter-mountain', 276), ('verah', 258), ('ex', 246), ('wm', 242), ("canvassers'", 229), ('pepperwood', 223), ('ber', 212), ('ers', 204), ('z', 204), ('lb', 195), ("the'", 189), ('ple', 185), ('oo', 182), ('io', 181), ('twentyfifth', 168), ("''", 165), ('sionary', 161), ('ly', 158), ('pa', 154), ('tions', 150), ("bookmen's", 149), ('mo', 144), ("colporteurs'", 144), ('un', 144), ('ft', 138), ('al', 138), ('mt', 135)]
In [ ]: